Backpatch from head: fixes for a threading bug, a problem with setNull involving
authorBarry Lind <[email protected]>
Thu, 14 Nov 2002 05:54:39 +0000 (05:54 +0000)
committerBarry Lind <[email protected]>
Thu, 14 Nov 2002 05:54:39 +0000 (05:54 +0000)
server prepared statements and an improved error message

 Modified Files:
  Tag: REL7_3_STABLE
  jdbc/org/postgresql/errors.properties
  jdbc/org/postgresql/core/Encoding.java
  jdbc/org/postgresql/core/QueryExecutor.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java

src/interfaces/jdbc/org/postgresql/errors.properties
src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java

index d03673351b1cd2d114fc716e85f7b6a9b5fee2ac..ff872664f449caa682685fa2755e34f48d796e1c 100644 (file)
@@ -5,6 +5,7 @@ postgresql.con.auth:The authentication type {0} is not supported. Check that you
 postgresql.con.authfail:An error occured while getting the authentication request.
 postgresql.con.backend:Backend start-up failed: {0}
 postgresql.con.call:Callable Statements are not supported at this time.
+postgresql.con.closed:Connection is closed.  Operation is not permitted.
 postgresql.con.creobj:Failed to create object for {0} {1}
 postgresql.con.failed:The connection attempt failed because {0}
 postgresql.con.fathom:Unable to fathom update count {0}
index 146c4520b8575b8edcfea3f1cb3fa438082b3a7a..a49b3fd1133c13bb184c7959e476ac1ae79db8c7 100644 (file)
@@ -475,6 +475,10 @@ public abstract class AbstractJdbc1Connection implements org.postgresql.PGConnec
         */
        public java.sql.ResultSet ExecSQL(String sql, java.sql.Statement stat) throws SQLException
        {
+               if (isClosed())
+               {
+                       throw new PSQLException("postgresql.con.closed");
+               }
                return new QueryExecutor(new String[] {sql}, EMPTY_OBJECT_ARRAY, stat, pg_stream, (java.sql.Connection)this).execute();
        }
        private static final Object[] EMPTY_OBJECT_ARRAY = new Object[0];
@@ -494,6 +498,10 @@ public abstract class AbstractJdbc1Connection implements org.postgresql.PGConnec
         */
        public java.sql.ResultSet ExecSQL(String[] p_sqlFragments, Object[] p_binds, java.sql.Statement stat) throws SQLException
        {
+               if (isClosed())
+               {
+                       throw new PSQLException("postgresql.con.closed");
+               }
                return new QueryExecutor(p_sqlFragments, p_binds, stat, pg_stream, (java.sql.Connection)this).execute();
        }
 
index 9b95cd8a9f293e87d59284c5f5e5f7f191087a3f..6f08ebda15c867b8962d7c92a1b747d042d17eca 100644 (file)
@@ -724,7 +724,55 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
         */
        public void setNull(int parameterIndex, int sqlType) throws SQLException
        {
-               bind(parameterIndex, "null", PG_TEXT);
+        String l_pgType;
+               switch (sqlType)
+               {
+                       case Types.INTEGER:
+                               l_pgType = PG_INTEGER;
+                               break;
+                       case Types.TINYINT:
+                       case Types.SMALLINT:
+                               l_pgType = PG_INT2;
+                               break;
+                       case Types.BIGINT:
+                               l_pgType = PG_INT8;
+                               break;
+                       case Types.REAL:
+                       case Types.FLOAT:
+                               l_pgType = PG_FLOAT;
+                               break;
+                       case Types.DOUBLE:
+                               l_pgType = PG_DOUBLE;
+                               break;
+                       case Types.DECIMAL:
+                       case Types.NUMERIC:
+                               l_pgType = PG_NUMERIC;
+                               break;
+                       case Types.CHAR:
+                       case Types.VARCHAR:
+                       case Types.LONGVARCHAR:
+                               l_pgType = PG_TEXT;
+                               break;
+                       case Types.DATE:
+                               l_pgType = PG_DATE;
+                               break;
+                       case Types.TIME:
+                               l_pgType = PG_TIME;
+                               break;
+                       case Types.TIMESTAMP:
+                               l_pgType = PG_TIMESTAMPTZ;
+                               break;
+                       case Types.BINARY:
+                       case Types.VARBINARY:
+                               l_pgType = PG_BYTEA;
+                               break;
+                       case Types.OTHER:
+                               l_pgType = PG_TEXT;
+                               break;
+                       default:
+                               l_pgType = PG_TEXT;
+               }
+               bind(parameterIndex, "null", l_pgType);
        }
 
        /*
@@ -830,7 +878,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException
        {
                if (x == null)
-                       setNull(parameterIndex, Types.OTHER);
+                       setNull(parameterIndex, Types.DECIMAL);
                else
                {
                        bind(parameterIndex, x.toString(), PG_NUMERIC);
@@ -856,7 +904,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        {
                // if the passed string is null, then set this column to null
                if (x == null)
-                       setNull(parameterIndex, Types.OTHER);
+                       setNull(parameterIndex, Types.VARCHAR);
                else
                {
                        // use the shared buffer object. Should never clash but this makes
@@ -902,7 +950,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
                        //Version 7.2 supports the bytea datatype for byte arrays
                        if (null == x)
                        {
-                               setNull(parameterIndex, Types.OTHER);
+                               setNull(parameterIndex, Types.VARBINARY);
                        }
                        else
                        {
@@ -933,7 +981,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        {
                if (null == x)
                {
-                       setNull(parameterIndex, Types.OTHER);
+                       setNull(parameterIndex, Types.DATE);
                }
                else
                {
@@ -953,7 +1001,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        {
                if (null == x)
                {
-                       setNull(parameterIndex, Types.OTHER);
+                       setNull(parameterIndex, Types.TIME);
                }
                else
                {
@@ -973,7 +1021,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        {
                if (null == x)
                {
-                       setNull(parameterIndex, Types.OTHER);
+                       setNull(parameterIndex, Types.TIMESTAMP);
                }
                else
                {
@@ -1288,7 +1336,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        {
                if (x == null)
                {
-                       setNull(parameterIndex, Types.OTHER);
+                       setNull(parameterIndex, targetSqlType);
                        return ;
                }
                switch (targetSqlType)
@@ -1360,7 +1408,35 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        {
                if (x == null)
                {
-                       setNull(parameterIndex, Types.OTHER);
+                       int l_sqlType;
+                       if (x instanceof String)
+                               l_sqlType = Types.VARCHAR;
+                       else if (x instanceof BigDecimal)
+                               l_sqlType = Types.DECIMAL;
+                       else if (x instanceof Short)
+                               l_sqlType = Types.SMALLINT;
+                       else if (x instanceof Integer)
+                               l_sqlType = Types.INTEGER;
+                       else if (x instanceof Long)
+                               l_sqlType = Types.BIGINT;
+                       else if (x instanceof Float)
+                               l_sqlType = Types.FLOAT;
+                       else if (x instanceof Double)
+                               l_sqlType = Types.DOUBLE;
+                       else if (x instanceof byte[])
+                               l_sqlType = Types.BINARY;
+                       else if (x instanceof java.sql.Date)
+                               l_sqlType = Types.DATE;
+                       else if (x instanceof Time)
+                               l_sqlType = Types.TIME;
+                       else if (x instanceof Timestamp)
+                               l_sqlType = Types.TIMESTAMP;
+                       else if (x instanceof Boolean)
+                               l_sqlType = Types.OTHER;
+                       else 
+                               l_sqlType = Types.OTHER;
+
+                       setNull(parameterIndex, l_sqlType);
                        return ;
                }
                if (x instanceof String)
@@ -1863,6 +1939,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme
        private static final String PG_DATE = "date";
        private static final String PG_TIME = "time";
        private static final String PG_TIMESTAMPTZ = "timestamptz";
+    private static final String PG_BYTEA = "bytea";
 
 
 }