diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/jdbc1/Connection.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/jdbc1/Connection.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc1/Connection.java b/src/interfaces/jdbc/org/postgresql/jdbc1/Connection.java index e05bc5b625..71a8fb4462 100644 --- a/src/interfaces/jdbc/org/postgresql/jdbc1/Connection.java +++ b/src/interfaces/jdbc/org/postgresql/jdbc1/Connection.java @@ -16,8 +16,8 @@ import org.postgresql.fastpath.*; import org.postgresql.largeobject.*; import org.postgresql.util.*; -/** - * $Id: Connection.java,v 1.12 2001/10/25 05:59:59 momjian Exp $ +/* + * $Id: Connection.java,v 1.13 2001/11/19 22:33:38 momjian Exp $ * * A Connection represents a session with a specific database. Within the * context of a Connection, SQL statements are executed and results are @@ -39,7 +39,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co // This is a cache of the DatabaseMetaData instance for this connection protected DatabaseMetaData metadata; - /** + /* * SQL statements without parameters are normally executed using * Statement objects. If the same SQL statement is executed many * times, it is more efficient to use a PreparedStatement @@ -52,7 +52,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co return new Statement(this); } - /** + /* * A SQL statement with or without IN parameters can be pre-compiled * and stored in a PreparedStatement object. This object can then * be used to efficiently execute this statement multiple times. @@ -75,7 +75,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co return new PreparedStatement(this, sql); } - /** + /* * A SQL stored procedure call statement is handled by creating a * CallableStatement for it. The CallableStatement provides methods * for setting up its IN and OUT parameters and methods for executing @@ -100,7 +100,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co // return new CallableStatement(this, sql); } - /** + /* * Tests to see if a Connection is closed * * @return the status of the connection @@ -111,7 +111,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co return (pg_stream == null); } - /** + /* * A connection's database is able to provide information describing * its tables, its supported SQL grammar, its stored procedures, the * capabilities of this connection, etc. This information is made @@ -127,7 +127,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co return metadata; } - /** + /* * This overides the method in org.postgresql.Connection and returns a * ResultSet. */ @@ -157,7 +157,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co return sqlType; } - /** + /* * This table holds the org.postgresql names for the types supported. * Any types that map to Types.OTHER (eg POINT) don't go into this table. * They default automatically to Types.OTHER @@ -183,7 +183,7 @@ public class Connection extends org.postgresql.Connection implements java.sql.Co "abstime", "timestamp" }; - /** + /* * This table holds the JDBC type for each entry above. * * Note: This must be in the same order as above |