1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +03:00

Improved error message and added some log messages in batch update functionality

Modified Files:
 	jdbc/org/postgresql/errors.properties
 	jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
 	jdbc/org/postgresql/util/PSQLException.java
This commit is contained in:
Barry Lind
2003-03-14 01:21:47 +00:00
parent 7931bfa764
commit 77ce53580b
3 changed files with 15 additions and 4 deletions

View File

@ -7,7 +7,7 @@
* Copyright (c) 2003, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/util/Attic/PSQLException.java,v 1.10 2003/03/08 06:06:55 barry Exp $
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/util/Attic/PSQLException.java,v 1.11 2003/03/14 01:21:47 barry Exp $
*
*-------------------------------------------------------------------------
*/
@ -16,6 +16,7 @@ package org.postgresql.util;
import java.io.ByteArrayOutputStream;
import java.io.PrintWriter;
import java.sql.SQLException;
import org.postgresql.Driver;
public class PSQLException extends SQLException
{
@ -29,6 +30,8 @@ public class PSQLException extends SQLException
{
super();
translate(error, null);
if (Driver.logDebug)
Driver.debug("Exception: " + this);
}
/*
@ -40,6 +43,8 @@ public class PSQLException extends SQLException
{
super();
translate(error, args);
if (Driver.logDebug)
Driver.debug("Exception: " + this);
}
/*
@ -51,6 +56,8 @@ public class PSQLException extends SQLException
Object[] argv = new Object[1];
argv[0] = arg;
translate(error, argv);
if (Driver.logDebug)
Driver.debug("Exception: " + this);
}
/*
@ -82,6 +89,8 @@ public class PSQLException extends SQLException
}
translate(error, argv);
if (Driver.logDebug)
Driver.debug("Exception: " + this);
}
/*
@ -94,6 +103,8 @@ public class PSQLException extends SQLException
argv[0] = arg1;
argv[1] = arg2;
translate(error, argv);
if (Driver.logDebug)
Driver.debug("Exception: " + this);
}
private void translate(String error, Object[] args)