Class Hierarchy Previous Next Index
java.lang.Object | +----COM.cloudscape.database.ConnectionInfo
ConnectionInfo class provides static methods for getting information related to a JDBC connection. When called from within the query language, each method will return information about the connection it was called from.
Use the methods of this class only within an SQL-J statement; do not call them directly.
Cloudscape reserves the right to change, rename or remove this class or any of the methods in the class at any time.
public ConnectionInfo()
public static java.lang.Long lastAutoincrementValue(java.lang.String schemaName, java.lang.String tableName, java.lang.String columnName) throws java.sql.SQLException
schemaName
- Name of the schema.
tableName
- Name of the table.
columnName
- Name of the column.
public static long nextAutoincrementValue(java.lang.String schemaName, java.lang.String tableName, java.lang.String columnName) throws java.sql.SQLException
Class Hierarchy Previous Next Index