summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/PGStatement.java
diff options
context:
space:
mode:
authorBarry Lind <barry@xythos.com>2002-09-08 00:15:29 +0000
committerBarry Lind <barry@xythos.com>2002-09-08 00:15:29 +0000
commit62da2fa0e1cb3cf1df8d633f785e391c35477f7e (patch)
tree314b8b3c336257ff86585c8932b7796a8430b878 /src/interfaces/jdbc/org/postgresql/PGStatement.java
parent24507acc0bd015100772fdc0d7ae39f30c287bef (diff)
Fixed DatabaseMetaData to correctly handle NAME size of 64
Fixed Statement to correctly DEALLOCATE any prepared statements Modified Files: jdbc/org/postgresql/PGStatement.java jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGStatement.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/PGStatement.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGStatement.java b/src/interfaces/jdbc/org/postgresql/PGStatement.java
index 13aff7cde4c..44de8222074 100644
--- a/src/interfaces/jdbc/org/postgresql/PGStatement.java
+++ b/src/interfaces/jdbc/org/postgresql/PGStatement.java
@@ -3,7 +3,7 @@ package org.postgresql;
import java.sql.*;
-/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGStatement.java,v 1.5 2002/09/06 21:23:05 momjian Exp $
+/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGStatement.java,v 1.6 2002/09/08 00:15:28 barry Exp $
* This interface defines PostgreSQL extentions to the java.sql.Statement interface.
* Any java.sql.Statement object returned by the driver will also implement this
* interface
@@ -18,7 +18,7 @@ public interface PGStatement
*/
public long getLastOID() throws SQLException;
- public void setUseServerPrepare(boolean flag);
+ public void setUseServerPrepare(boolean flag) throws SQLException;
public boolean isUseServerPrepare();