Buscar

Projeto Java com JDBC

Esta é uma pré-visualização de arquivo. Entre para ver o arquivo original

JDBC/derby.log
----------------------------------------------------------------
Wed Dec 09 14:48:27 BRST 2015:
Booting Derby version The Apache Software Foundation - Apache Derby - 10.12.1.1 - (1704137): instance a816c00e-0151-87a4-d61a-000000aec760 
on database directory /home/marcos/Área de Trabalho/jdbc/JDBC/myDerby with class loader sun.misc.Launcher$AppClassLoader@dad5dc 
Loaded from file:/home/marcos/%c3%81rea%20de%20Trabalho/jdbc/JDBC/derby.jar
java.vendor=Oracle Corporation
java.runtime.version=1.8.0_66-b17
user.dir=/home/marcos/Área de Trabalho/jdbc/JDBC
os.name=Linux
os.arch=i386
os.version=3.13.0-67-generic
derby.system.home=null
Database Class Loader started - derby.database.classpath=''
JDBC/derby.jar
META-INF/MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.2
Created-By: 1.8.0-b132 (Oracle Corporation)
Bundle-Vendor: Apache Software Foundation
Bundle-Name: Apache Derby 10.12
Bundle-Version: 10.12.1000001.1704137
Bundle-ManifestVersion: 2
Sealed: true
Bundle-Activator: org.apache.derby.osgi.EmbeddedActivator
Bundle-SymbolicName: derby
DynamicImport-Package: *
Export-Package: org.apache.derby.authentication,org.apache.derby.datab
 ase,org.apache.derby.io,org.apache.derby.jdbc,org.apache.derby.vti
Class-Path: derbyLocale_cs.jar derbyLocale_de_DE.jar derbyLocale_es.ja
 r derbyLocale_fr.jar derbyLocale_hu.jar derbyLocale_it.jar derbyLocal
 e_ja_JP.jar derbyLocale_ko_KR.jar derbyLocale_pl.jar derbyLocale_pt_B
 R.jar derbyLocale_ru.jar derbyLocale_zh_CN.jar derbyLocale_zh_TW.jar
Name: org/apache/derby/impl/tools/sysinfo/
Sealed: false
Name: org/apache/derby/iapi/services/context/
Sealed: false
Name: org/apache/derby/iapi/services/info/
Sealed: false
Name: org/apache/derby/jdbc/
Sealed: false
Name: org/apache/derby/info/
Sealed: false
Name: org/apache/derby/iapi/services/i18n/
Sealed: false
Name: org/apache/derby/shared/common/error/
Sealed: false
Name: org/apache/derby/shared/common/sanity/
Sealed: false
Name: org/apache/derby/iapi/tools/i18n/
Sealed: false
Name: org/apache/derby/loc/
Sealed: false
Name: org/apache/derby/tools/
Sealed: false
org/apache/derby/agg/Aggregator.class
package org.apache.derby.agg;
public abstract interface Aggregator extends java.io.Serializable {
 public abstract void init();
 public abstract void accumulate(Object);
 public abstract void merge(Aggregator);
 public abstract Object terminate();
}
org/apache/derby/authentication/SystemPrincipal.class
package org.apache.derby.authentication;
public final synchronized class SystemPrincipal implements java.security.Principal, java.io.Serializable {
 static final long serialVersionUID = 925380094921530190;
 private final String name;
 public void SystemPrincipal(String);
 private static void validateName(String);
 public boolean equals(Object);
 public String getName();
 public int hashCode();
 public String toString();
 private void readObject(java.io.ObjectInputStream) throws java.io.IOException, ClassNotFoundException;
}
org/apache/derby/authentication/UserAuthenticator.class
package org.apache.derby.authentication;
public abstract interface UserAuthenticator {
 public abstract boolean authenticateUser(String, String, String, java.util.Properties) throws java.sql.SQLException;
}
org/apache/derby/catalog/AliasInfo.class
package org.apache.derby.catalog;
public abstract interface AliasInfo {
 public static final char ALIAS_TYPE_UDT_AS_CHAR = 65;
 public static final char ALIAS_TYPE_AGGREGATE_AS_CHAR = 71;
 public static final char ALIAS_TYPE_PROCEDURE_AS_CHAR = 80;
 public static final char ALIAS_TYPE_FUNCTION_AS_CHAR = 70;
 public static final char ALIAS_TYPE_SYNONYM_AS_CHAR = 83;
 public static final String ALIAS_TYPE_UDT_AS_STRING = A;
 public static final String ALIAS_TYPE_AGGREGATE_AS_STRING = G;
 public static final String ALIAS_TYPE_PROCEDURE_AS_STRING = P;
 public static final String ALIAS_TYPE_FUNCTION_AS_STRING = F;
 public static final String ALIAS_TYPE_SYNONYM_AS_STRING = S;
 public static final char ALIAS_NAME_SPACE_UDT_AS_CHAR = 65;
 public static final char ALIAS_NAME_SPACE_AGGREGATE_AS_CHAR = 71;
 public static final char ALIAS_NAME_SPACE_PROCEDURE_AS_CHAR = 80;
 public static final char ALIAS_NAME_SPACE_FUNCTION_AS_CHAR = 70;
 public static final char ALIAS_NAME_SPACE_SYNONYM_AS_CHAR = 83;
 public static final String ALIAS_NAME_SPACE_UDT_AS_STRING = A;
 public static final String ALIAS_NAME_SPACE_AGGREGATE_AS_STRING = G;
 public static final String ALIAS_NAME_SPACE_PROCEDURE_AS_STRING = P;
 public static final String ALIAS_NAME_SPACE_FUNCTION_AS_STRING = F;
 public static final String ALIAS_NAME_SPACE_SYNONYM_AS_STRING = S;
 public abstract String getMethodName();
 public abstract boolean isTableFunction();
}
org/apache/derby/catalog/DefaultInfo.class
package org.apache.derby.catalog;
public abstract interface DefaultInfo {
 public abstract String getDefaultText();
 public abstract String[] getReferencedColumnNames();
 public abstract boolean isDefaultValueAutoinc();
 public abstract boolean isGeneratedColumn();
 public abstract String getOriginalCurrentSchema();
}
org/apache/derby/catalog/Dependable.class
package org.apache.derby.catalog;
public abstract interface Dependable {
 public static final String ALIAS = Alias;
 public static final String CONGLOMERATE = Conglomerate;
 public static final String CONSTRAINT = Constraint;
 public static final String DEFAULT = Default;
 public static final String HEAP = Heap;
 public static final String INDEX = Index;
 public static final String PREPARED_STATEMENT = PreparedStatement;
 public static final String ACTIVATION = Activation;
 public static final String FILE = File;
 public static final String STORED_PREPARED_STATEMENT = StoredPreparedStatement;
 public static final String TABLE = Table;
 public static final String COLUMNS_IN_TABLE = ColumnsInTable;
 public static final String TRIGGER = Trigger;
 public static final String VIEW = View;
 public static final String SCHEMA = Schema;
 public static final String TABLE_PERMISSION = TablePrivilege;
 public static final String COLUMNS_PERMISSION = ColumnsPrivilege;
 public static final String ROUTINE_PERMISSION = RoutinePrivilege;
 public static final String ROLE_GRANT = RoleGrant;
 public static final String SEQUENCE = Sequence;
 public static final String PERM = Perm;
 public abstract DependableFinder getDependableFinder();
 public abstract String getObjectName();
 public abstract UUID getObjectID();
 public abstract boolean isPersistent();
 public abstract String getClassType();
}
org/apache/derby/catalog/DependableFinder.class
package org.apache.derby.catalog;
public abstract interface DependableFinder {
 public abstract Dependable getDependable(org.apache.derby.iapi.sql.dictionary.DataDictionary, UUID) throws org.apache.derby.iapi.error.StandardException;
 public abstract String getSQLObjectType();
}
org/apache/derby/catalog/GetProcedureColumns.class
package org.apache.derby.catalog;
public synchronized class GetProcedureColumns extends org.apache.derby.vti.VTITemplate {
 private boolean isProcedure;
 private boolean isFunction;
 private int rowCount;
 private int returnedTableColumnCount;
 private TypeDescriptor tableFunctionReturnType;
 private types.RoutineAliasInfo procedure;
 private int paramCursor;
 private short method_count;
 private short param_number;
 private TypeDescriptor sqlType;
 private String columnName;
 private short columnType;
 private final short nullable;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[]
columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 private int translate(int);
 public java.sql.ResultSetMetaData getMetaData();
 public void GetProcedureColumns(AliasInfo, String) throws java.sql.SQLException;
 public boolean next() throws java.sql.SQLException;
 public String getString(int) throws java.sql.SQLException;
 public int getInt(int) throws java.sql.SQLException;
 public short getShort(int) throws java.sql.SQLException;
 public void close();
 static void <clinit>();
}
org/apache/derby/catalog/IndexDescriptor.class
package org.apache.derby.catalog;
public abstract interface IndexDescriptor {
 public abstract boolean isUnique();
 public abstract boolean isUniqueWithDuplicateNulls();
 public abstract boolean isUniqueDeferrable();
 public abstract boolean hasDeferrableChecking();
 public abstract int[] baseColumnPositions();
 public abstract int getKeyColumnPosition(int);
 public abstract int numberOfOrderedColumns();
 public abstract String indexType();
 public abstract boolean[] isAscending();
 public abstract boolean isAscending(Integer);
 public abstract boolean isDescending(Integer);
 public abstract void setBaseColumnPositions(int[]);
 public abstract void setIsAscending(boolean[]);
 public abstract void setNumberOfOrderedColumns(int);
}
org/apache/derby/catalog/Java5SystemProcedures$1.class
package org.apache.derby.catalog;
final synchronized class Java5SystemProcedures$1 implements java.security.PrivilegedAction {
 void Java5SystemProcedures$1(String);
 public org.apache.derby.iapi.services.context.Context run();
}
org/apache/derby/catalog/Java5SystemProcedures.class
package org.apache.derby.catalog;
public synchronized class Java5SystemProcedures {
 private static final int TOOL_NAME = 0;
 private static final int TOOL_CLASS_NAME = 1;
 private static final String CUSTOM_TOOL_CLASS_NAME = customTool;
 private static final String[][] OPTIONAL_TOOLS;
 public void Java5SystemProcedures();
 public static transient void SYSCS_REGISTER_TOOL(String, boolean, String[]) throws java.sql.SQLException;
 private static transient String findToolClassName(String, String[]) throws org.apache.derby.iapi.error.StandardException;
 private static org.apache.derby.iapi.error.StandardException badTool(String);
 private static org.apache.derby.iapi.error.StandardException badCustomTool(String);
 private static transient String[] stripCustomClassName(String[]);
 private static org.apache.derby.iapi.error.StandardException wrap(Throwable);
 private static org.apache.derby.iapi.services.context.Context getContext(String);
 static void <clinit>();
}
org/apache/derby/catalog/ReferencedColumns.class
package org.apache.derby.catalog;
public abstract interface ReferencedColumns {
 public abstract int[] getReferencedColumnPositions();
 public abstract int[] getTriggerActionReferencedColumnPositions();
}
org/apache/derby/catalog/SequencePreallocator.class
package org.apache.derby.catalog;
public abstract interface SequencePreallocator {
 public abstract int nextRangeSize(String, String);
}
org/apache/derby/catalog/Statistics.class
package org.apache.derby.catalog;
public abstract interface Statistics {
 public abstract long getRowEstimate();
 public abstract double selectivity(Object[]);
}
org/apache/derby/catalog/SystemProcedures$1.class
package org.apache.derby.catalog;
final synchronized class SystemProcedures$1 implements java.security.PrivilegedAction {
 void SystemProcedures$1();
 public Object run();
}
org/apache/derby/catalog/SystemProcedures.class
package org.apache.derby.catalog;
public synchronized class SystemProcedures {
 private static final int SQL_BEST_ROWID = 1;
 private static final int SQL_ROWVER = 2;
 private static final String DRIVER_TYPE_OPTION = DATATYPE;
 private static final String ODBC_DRIVER_OPTION = 'ODBC';
 public void SystemProcedures();
 public static void SQLCAMESSAGE(int, short, String, String, int, int, int, int, int, int, String, String, String, String, String[], int[]);
 private static java.sql.Connection getDefaultConn() throws java.sql.SQLException;
 private static java.sql.DatabaseMetaData getDMD() throws java.sql.SQLException;
 public static void SQLPROCEDURES(String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLFUNCTIONS(String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLTABLES(String, String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLFOREIGNKEYS(String, String, String, String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 private static String getOption(String, String);
 public static void SQLPROCEDURECOLS(String, String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLFUNCTIONPARAMS(String, String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLCOLUMNS(String, String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLCOLPRIVILEGES(String, String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLTABLEPRIVILEGES(String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLPRIMARYKEYS(String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLGETTYPEINFO(short, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLSTATISTICS(String, String, String, short, short, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLSPECIALCOLUMNS(short, String, String, String, short, short, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void SQLUDTS(String, String, String, String, String, java.sql.ResultSet[]) throws java.sql.SQLException;
 public static void METADATA(java.sql.ResultSet[]) throws java.sql.SQLException;
 private static boolean isForODBC(String);
 public static void SYSCS_SET_DATABASE_PROPERTY(String, String) throws java.sql.SQLException;
 private static void setDatabaseProperty(String, String, org.apache.derby.iapi.security.Securable) throws java.sql.SQLException;
 public static String SYSCS_GET_DATABASE_PROPERTY(String) throws java.sql.SQLException;
 private static String getProperty(String, org.apache.derby.iapi.security.Securable) throws java.sql.SQLException;
 public static void SYSCS_UPDATE_STATISTICS(String, String, String) throws java.sql.SQLException;
 public static void SYSCS_DROP_STATISTICS(String, String, String) throws java.sql.SQLException;
 private static String basicSchemaTableValidation(String, String) throws java.sql.SQLException;
 public static void SYSCS_COMPRESS_TABLE(String, String, short) throws java.sql.SQLException;
 public static void SYSCS_FREEZE_DATABASE() throws java.sql.SQLException;
 public static void SYSCS_UNFREEZE_DATABASE() throws java.sql.SQLException;
 public static void SYSCS_CHECKPOINT_DATABASE() throws java.sql.SQLException;
 public static void SYSCS_BACKUP_DATABASE(String) throws java.sql.SQLException;
 public static void SYSCS_BACKUP_DATABASE_NOWAIT(String) throws java.sql.SQLException;
 public static void SYSCS_BACKUP_DATABASE_AND_ENABLE_LOG_ARCHIVE_MODE(String, short) throws java.sql.SQLException;
 public static void SYSCS_BACKUP_DATABASE_AND_ENABLE_LOG_ARCHIVE_MODE_NOWAIT(String, short) throws java.sql.SQLException;
 public static void SYSCS_DISABLE_LOG_ARCHIVE_MODE(short)
throws java.sql.SQLException;
 public static void SYSCS_SET_RUNTIMESTATISTICS(short) throws java.sql.SQLException;
 public static void SYSCS_SET_STATISTICS_TIMING(short) throws java.sql.SQLException;
 public static int SYSCS_CHECK_TABLE(String, String) throws java.sql.SQLException;
 public static void SYSCS_INPLACE_COMPRESS_TABLE(String, String, short, short, short) throws java.sql.SQLException;
 public static String SYSCS_GET_RUNTIMESTATISTICS() throws java.sql.SQLException;
 public static void INSTALL_JAR(String, String, int) throws java.sql.SQLException;
 public static void REPLACE_JAR(String, String) throws java.sql.SQLException;
 public static void REMOVE_JAR(String, int) throws java.sql.SQLException;
 private static void checkJarSQLName(String) throws org.apache.derby.iapi.error.StandardException;
 public static void SYSCS_EXPORT_TABLE(String, String, String, String, String, String) throws java.sql.SQLException;
 public static void SYSCS_EXPORT_TABLE_LOBS_TO_EXTFILE(String, String, String, String, String, String, String) throws java.sql.SQLException;
 public static void SYSCS_EXPORT_QUERY(String, String, String, String, String) throws java.sql.SQLException;
 public static void SYSCS_EXPORT_QUERY_LOBS_TO_EXTFILE(String, String, String, String, String, String) throws java.sql.SQLException;
 public static void SYSCS_IMPORT_TABLE(String, String, String, String, String, String, short) throws java.sql.SQLException;
 private static void rollBackAndThrowSQLException(java.sql.Connection, java.sql.SQLException) throws java.sql.SQLException;
 public static void SYSCS_IMPORT_TABLE_LOBS_FROM_EXTFILE(String, String, String, String, String, String, short) throws java.sql.SQLException;
 public static void SYSCS_IMPORT_DATA(String, String, String, String, String, String, String, String, short) throws java.sql.SQLException;
 public static void SYSCS_IMPORT_DATA_LOBS_FROM_EXTFILE(String, String, String, String, String, String, String, String, short) throws java.sql.SQLException;
 public static void SYSCS_BULK_INSERT(String, String, String, String) throws java.sql.SQLException;
 public static void SYSCS_RELOAD_SECURITY_POLICY() throws java.sql.SQLException;
 public static double PI();
 public static double COT(double);
 public static int SIGN(double);
 public static double RAND(int);
 public static void SYSCS_SET_USER_ACCESS(String, String) throws java.sql.SQLException;
 private static void removeFromAccessList(String, String) throws java.sql.SQLException, org.apache.derby.iapi.error.StandardException;
 public static String SYSCS_GET_USER_ACCESS(String) throws java.sql.SQLException;
 public static void SYSCS_INVALIDATE_STORED_STATEMENTS() throws java.sql.SQLException;
 public static void SYSCS_EMPTY_STATEMENT_CACHE() throws java.sql.SQLException;
 public static void SYSCS_SET_XPLAIN_MODE(int) throws java.sql.SQLException, org.apache.derby.iapi.error.StandardException;
 public static int SYSCS_GET_XPLAIN_MODE() throws java.sql.SQLException, org.apache.derby.iapi.error.StandardException;
 public static void SYSCS_SET_XPLAIN_SCHEMA(String) throws java.sql.SQLException, org.apache.derby.iapi.error.StandardException;
 private static boolean hasSchema(java.sql.Connection, String) throws java.sql.SQLException;
 private static boolean hasTable(java.sql.Connection, String, String) throws java.sql.SQLException;
 private static void createXplainSchema(String) throws java.sql.SQLException;
 private static void createXplainTable(org.apache.derby.iapi.sql.conn.LanguageConnectionContext, String, org.apache.derby.impl.sql.catalog.XPLAINTableDescriptor) throws java.sql.SQLException;
 public static String SYSCS_GET_XPLAIN_SCHEMA() throws java.sql.SQLException, org.apache.derby.iapi.error.StandardException;
 public static void SYSCS_CREATE_USER(String, String) throws java.sql.SQLException;
 public static void addUser(String, String, org.apache.derby.iapi.store.access.TransactionController) throws java.sql.SQLException;
 private static org.apache.derby.iapi.sql.dictionary.UserDescriptor makeUserDescriptor(org.apache.derby.iapi.sql.dictionary.DataDictionary, org.apache.derby.iapi.store.access.TransactionController, String, String) throws org.apache.derby.iapi.error.StandardException;
 public static void SYSCS_RESET_PASSWORD(String, String) throws java.sql.SQLException;
 private static void resetAuthorizationIDPassword(String, String) throws java.sql.SQLException;
 public static void SYSCS_MODIFY_PASSWORD(String) throws java.sql.SQLException;
 public static void SYSCS_DROP_USER(String) throws java.sql.SQLException;
 private static void checkLegalUser(org.apache.derby.iapi.sql.dictionary.DataDictionary, String) throws org.apache.derby.iapi.error.StandardException;
 private static String normalizeUserName(String) throws java.sql.SQLException;
 public static String SYSCS_GET_DATABASE_NAME() throws java.sql.SQLException;
 public static Long SYSCS_PEEK_AT_SEQUENCE(String, String) throws java.sql.SQLException;
 public static Long SYSCS_PEEK_AT_IDENTITY(String, String) throws java.sql.SQLException;
}
org/apache/derby/catalog/TriggerNewTransitionRows.class
package org.apache.derby.catalog;
public final synchronized class TriggerNewTransitionRows extends org.apache.derby.vti.UpdatableVTITemplate {
 private java.sql.ResultSet resultSet;
 public void TriggerNewTransitionRows() throws java.sql.SQLException;
 private java.sql.ResultSet initializeResultSet() throws java.sql.SQLException;
 public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException;
 public java.sql.ResultSet executeQuery() throws java.sql.SQLException;
 public int getResultSetConcurrency();
 public void close() throws java.sql.SQLException;
}
org/apache/derby/catalog/TriggerOldTransitionRows.class
package org.apache.derby.catalog;
public synchronized class TriggerOldTransitionRows extends org.apache.derby.vti.UpdatableVTITemplate {
 private java.sql.ResultSet resultSet;
 public void TriggerOldTransitionRows() throws java.sql.SQLException;
 private java.sql.ResultSet initializeResultSet() throws java.sql.SQLException;
 public java.sql.ResultSet executeQuery() throws java.sql.SQLException;
 public int getResultSetConcurrency();
 public void close() throws java.sql.SQLException;
}
org/apache/derby/catalog/TypeDescriptor.class
package org.apache.derby.catalog;
public abstract interface TypeDescriptor {
 public static final int MAXIMUM_WIDTH_UNKNOWN = -1;
 public static final TypeDescriptor INTEGER;
 public static final TypeDescriptor INTEGER_NOT_NULL;
 public static final TypeDescriptor SMALLINT;
 public static final TypeDescriptor SMALLINT_NOT_NULL;
 public static final TypeDescriptor DOUBLE;
 public abstract int getJDBCTypeId();
 public abstract int getMaximumWidth();
 public abstract int getMaximumWidthInBytes();
 public abstract int getPrecision();
 public abstract int getScale();
 public abstract boolean isNullable();
 public abstract String getTypeName();
 public abstract String getSQLstring();
 public abstract int getCollationType();
 public abstract boolean isRowMultiSet();
 public abstract boolean isUserDefinedType();
 public abstract TypeDescriptor[] getRowTypes();
 public abstract String[] getRowColumnNames();
 static void <clinit>();
}
org/apache/derby/catalog/UUID.class
package org.apache.derby.catalog;
public abstract interface UUID extends java.io.Externalizable {
 public static final String NULL = NULL;
 public static final int UUID_BYTE_LENGTH = 16;
 public abstract String toANSIidentifier();
 public abstract UUID cloneMe();
}
org/apache/derby/catalog/types/AggregateAliasInfo.class
package org.apache.derby.catalog.types;
public synchronized class AggregateAliasInfo implements org.apache.derby.catalog.AliasInfo, org.apache.derby.iapi.services.io.Formatable {
 private static final int FIRST_VERSION = 0;
 private org.apache.derby.catalog.TypeDescriptor _forType;
 private org.apache.derby.catalog.TypeDescriptor _returnType;
 public void AggregateAliasInfo();
 public void AggregateAliasInfo(org.apache.derby.catalog.TypeDescriptor, org.apache.derby.catalog.TypeDescriptor);
 public boolean isTableFunction();
 public org.apache.derby.catalog.TypeDescriptor getForType();
 public org.apache.derby.catalog.TypeDescriptor getReturnType();
 public void setCollationTypeForAllStringTypes(int);
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public String toString();
 public String getMethodName();
}
org/apache/derby/catalog/types/BaseTypeIdImpl.class
package org.apache.derby.catalog.types;
public synchronized class BaseTypeIdImpl implements org.apache.derby.iapi.services.io.Formatable {
 private int formatId;
 protected String schemaName;
 String unqualifiedName;
 transient int JDBCTypeId;
 public void BaseTypeIdImpl();
 public void BaseTypeIdImpl(int);
 void BaseTypeIdImpl(String);
 void BaseTypeIdImpl(String, String);
 public String getSQLTypeName();
 public String getSchemaName();
 public String getUnqualifiedName();
 public boolean isAnsiUDT();
 public int getJDBCTypeId();
 public String toParsableString(org.apache.derby.catalog.TypeDescriptor);
 public boolean userType();
 public String toString();
 public boolean equals(Object);
 public int hashCode();
 public int getTypeFormatId();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 private void setTypeIdSpecificInstanceVariables();
 private String doubleQuote(String);
 private String stripQuotes(String);
}
org/apache/derby/catalog/types/DecimalTypeIdImpl.class
package org.apache.derby.catalog.types;
public synchronized class DecimalTypeIdImpl extends BaseTypeIdImpl {
 public void DecimalTypeIdImpl();
 public void DecimalTypeIdImpl(boolean);
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 private void setNumericType();
}
org/apache/derby/catalog/types/DefaultInfoImpl.class
package org.apache.derby.catalog.types;
public synchronized class DefaultInfoImpl implements org.apache.derby.catalog.DefaultInfo, org.apache.derby.iapi.services.io.Formatable {
 private org.apache.derby.iapi.types.DataValueDescriptor defaultValue;
 private String defaultText;
 private int type;
 private String[] referencedColumnNames;
 private String originalCurrentSchema;
 private static final int BITS_MASK_IS_DEFAULTVALUE_AUTOINC = 1;
 private static final int BITS_MASK_IS_GENERATED_COLUMN = 2;
 public void DefaultInfoImpl();
 public void DefaultInfoImpl(boolean, String, org.apache.derby.iapi.types.DataValueDescriptor);
 public void DefaultInfoImpl(String, String[], String);
 public String getDefaultText();
 public String[] getReferencedColumnNames();
 public String getOriginalCurrentSchema();
 public String toString();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public org.apache.derby.iapi.types.DataValueDescriptor getDefaultValue();
 public void setDefaultValue(org.apache.derby.iapi.types.DataValueDescriptor);
 public boolean isDefaultValueAutoinc();
 public boolean isGeneratedColumn();
 private static int calcType(boolean);
}
org/apache/derby/catalog/types/IndexDescriptorImpl.class
package org.apache.derby.catalog.types;
public synchronized class IndexDescriptorImpl implements org.apache.derby.catalog.IndexDescriptor, org.apache.derby.iapi.services.io.Formatable {
 private boolean isUnique;
 private int[] baseColumnPositions;
 private boolean[] isAscending;
 private int numberOfOrderedColumns;
 private String indexType;
 private boolean isUniqueWithDuplicateNulls;
 private boolean isUniqueDeferrable;
 private boolean hasDeferrableChecking;
 public void IndexDescriptorImpl(String, boolean, boolean, boolean, boolean, int[], boolean[], int);
 public void IndexDescriptorImpl();
 public boolean isUniqueWithDuplicateNulls();
 public boolean hasDeferrableChecking();
 public boolean isUniqueDeferrable();
 public boolean isUnique();
 public int[] baseColumnPositions();
 public int getKeyColumnPosition(int);
 public int numberOfOrderedColumns();
 public String indexType();
 public boolean isAscending(Integer);
 public boolean isDescending(Integer);
 public boolean[] isAscending();
 public void setBaseColumnPositions(int[]);
 public void setIsAscending(boolean[]);
 public void setNumberOfOrderedColumns(int);
 public String toString();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public boolean equals(Object);
 public int hashCode();
}
org/apache/derby/catalog/types/MethodAliasInfo.class
package org.apache.derby.catalog.types;
public synchronized class MethodAliasInfo implements org.apache.derby.catalog.AliasInfo, org.apache.derby.iapi.services.io.Formatable {
 private String methodName;
 public void MethodAliasInfo();
 public void MethodAliasInfo(String);
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public String getMethodName();
 public boolean isTableFunction();
 public String toString();
}
org/apache/derby/catalog/types/OldRoutineType.class
package org.apache.derby.catalog.types;
final synchronized class OldRoutineType implements org.apache.derby.iapi.services.io.Formatable {
 private org.apache.derby.catalog.TypeDescriptor catalogType;
 void OldRoutineType();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 org.apache.derby.catalog.TypeDescriptor getCatalogType();
}
org/apache/derby/catalog/types/ReferencedColumnsDescriptorImpl.class
package org.apache.derby.catalog.types;
public synchronized class ReferencedColumnsDescriptorImpl implements org.apache.derby.catalog.ReferencedColumns, org.apache.derby.iapi.services.io.Formatable {
 private int[] referencedColumns;
 private int[] referencedColumnsInTriggerAction;
 public void ReferencedColumnsDescriptorImpl(int[]);
 public void ReferencedColumnsDescriptorImpl(int[], int[]);
 public void ReferencedColumnsDescriptorImpl();
 public int[] getReferencedColumnPositions();
 public int[] getTriggerActionReferencedColumnPositions();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 private void writeReferencedColumns(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public
String toString();
}
org/apache/derby/catalog/types/RoutineAliasInfo.class
package org.apache.derby.catalog.types;
public synchronized class RoutineAliasInfo extends MethodAliasInfo {
 private static final String[] SQL_CONTROL;
 public static final short MODIFIES_SQL_DATA = 0;
 public static final short READS_SQL_DATA = 1;
 public static final short CONTAINS_SQL = 2;
 public static final short NO_SQL = 3;
 public static final short PS_JAVA = 0;
 public static final short PS_DERBY_JDBC_RESULT_SET = 1;
 public static final short PS_DERBY = 2;
 private static final short SQL_ALLOWED_MASK = 15;
 private static final short DETERMINISTIC_MASK = 16;
 private static final short SECURITY_DEFINER_MASK = 32;
 private static final short VARARGS_MASK = 64;
 private int parameterCount;
 private org.apache.derby.catalog.TypeDescriptor[] parameterTypes;
 private String[] parameterNames;
 private int[] parameterModes;
 private int dynamicResultSets;
 private org.apache.derby.catalog.TypeDescriptor returnType;
 private short parameterStyle;
 private short sqlOptions;
 private String specificName;
 private boolean calledOnNullInput;
 private transient char aliasType;
 public void RoutineAliasInfo();
 public void RoutineAliasInfo(String, int, String[], org.apache.derby.catalog.TypeDescriptor[], int[], int, short, short, boolean, boolean);
 public void RoutineAliasInfo(String, int, String[], org.apache.derby.catalog.TypeDescriptor[], int[], int, short, short, boolean, boolean, boolean, boolean, org.apache.derby.catalog.TypeDescriptor);
 public int getParameterCount();
 public org.apache.derby.catalog.TypeDescriptor[] getParameterTypes();
 public void setParameterTypes(org.apache.derby.catalog.TypeDescriptor[]);
 public int[] getParameterModes();
 public String[] getParameterNames();
 public int getMaxDynamicResultSets();
 public short getParameterStyle();
 public short getSQLAllowed();
 public boolean isDeterministic();
 public boolean hasVarargs();
 public boolean hasDefinersRights();
 public boolean calledOnNullInput();
 public org.apache.derby.catalog.TypeDescriptor getReturnType();
 public boolean isTableFunction();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public static org.apache.derby.catalog.TypeDescriptor getStoredType(Object);
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public String toString();
 public static String parameterMode(int);
 public void setCollationTypeForAllStringTypes(int);
 static void <clinit>();
}
org/apache/derby/catalog/types/RowMultiSetImpl.class
package org.apache.derby.catalog.types;
public synchronized class RowMultiSetImpl extends BaseTypeIdImpl {
 private String[] _columnNames;
 private org.apache.derby.catalog.TypeDescriptor[] _types;
 public void RowMultiSetImpl();
 public void RowMultiSetImpl(String[], org.apache.derby.catalog.TypeDescriptor[]);
 public String[] getColumnNames();
 public org.apache.derby.catalog.TypeDescriptor[] getTypes();
 public void setTypes(org.apache.derby.catalog.TypeDescriptor[]);
 public String getSQLTypeName();
 public int getJDBCTypeId();
 public int getTypeFormatId();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
}
org/apache/derby/catalog/types/StatisticsImpl.class
package org.apache.derby.catalog.types;
public synchronized class StatisticsImpl implements org.apache.derby.catalog.Statistics, org.apache.derby.iapi.services.io.Formatable {
 private long numRows;
 private long numUnique;
 public void StatisticsImpl(long, long);
 public void StatisticsImpl();
 public long getRowEstimate();
 public double selectivity(Object[]);
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public String toString();
}
org/apache/derby/catalog/types/SynonymAliasInfo.class
package org.apache.derby.catalog.types;
public synchronized class SynonymAliasInfo implements org.apache.derby.catalog.AliasInfo, org.apache.derby.iapi.services.io.Formatable {
 private String schemaName;
 private String tableName;
 public void SynonymAliasInfo();
 public void SynonymAliasInfo(String, String);
 public String getSynonymTable();
 public String getSynonymSchema();
 public boolean isTableFunction();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public String toString();
 public String getMethodName();
}
org/apache/derby/catalog/types/TypeDescriptorImpl.class
package org.apache.derby.catalog.types;
public synchronized class TypeDescriptorImpl implements org.apache.derby.catalog.TypeDescriptor, org.apache.derby.iapi.services.io.Formatable {
 private BaseTypeIdImpl typeId;
 private int precision;
 private int scale;
 private boolean isNullable;
 private int maximumWidth;
 private int collationType;
 public void TypeDescriptorImpl();
 public void TypeDescriptorImpl(BaseTypeIdImpl, int, int, boolean, int);
 public void TypeDescriptorImpl(BaseTypeIdImpl, int, int, boolean, int, int);
 public void TypeDescriptorImpl(BaseTypeIdImpl, boolean, int);
 public void TypeDescriptorImpl(TypeDescriptorImpl, int, int, boolean, int);
 public void TypeDescriptorImpl(TypeDescriptorImpl, int, int, boolean, int, int);
 public void TypeDescriptorImpl(TypeDescriptorImpl, boolean, int);
 public static org.apache.derby.catalog.TypeDescriptor[] copyTypeDescriptors(org.apache.derby.catalog.TypeDescriptor[]);
 public int getMaximumWidth();
 public int getMaximumWidthInBytes();
 public boolean isStringType();
 public int getJDBCTypeId();
 public String getTypeName();
 public int getPrecision();
 public int getScale();
 public boolean isNullable();
 public boolean isRowMultiSet();
 public boolean isUserDefinedType();
 public int getCollationType();
 public void setCollationType(int);
 public String getSQLstring();
 public String toString();
 public BaseTypeIdImpl getTypeId();
 public boolean equals(Object);
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
 public String[] getRowColumnNames();
 public org.apache.derby.catalog.TypeDescriptor[] getRowTypes();
}
org/apache/derby/catalog/types/TypesImplInstanceGetter.class
package org.apache.derby.catalog.types;
public synchronized class TypesImplInstanceGetter extends org.apache.derby.iapi.services.io.FormatableInstanceGetter {
 public void TypesImplInstanceGetter();
 public Object getNewInstance();
}
org/apache/derby/catalog/types/UDTAliasInfo.class
package org.apache.derby.catalog.types;
public synchronized class UDTAliasInfo implements org.apache.derby.catalog.AliasInfo, org.apache.derby.iapi.services.io.Formatable {
 private static final int FIRST_VERSION = 0;
 public void UDTAliasInfo();
 public boolean isTableFunction();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
public String toString();
 public String getMethodName();
}
org/apache/derby/catalog/types/UserDefinedTypeIdImpl.class
package org.apache.derby.catalog.types;
public synchronized class UserDefinedTypeIdImpl extends BaseTypeIdImpl {
 protected String className;
 public void UserDefinedTypeIdImpl();
 public void UserDefinedTypeIdImpl(String) throws org.apache.derby.iapi.error.StandardException;
 public void UserDefinedTypeIdImpl(String, String, String);
 public String getClassName();
 public boolean userType();
 public boolean isBound();
 public void readExternal(java.io.ObjectInput) throws java.io.IOException, ClassNotFoundException;
 public void writeExternal(java.io.ObjectOutput) throws java.io.IOException;
 public int getTypeFormatId();
}
org/apache/derby/database/Database.class
package org.apache.derby.database;
public abstract interface Database {
 public static final String LUCENE_DIR = LUCENE;
 public abstract boolean isReadOnly();
 public abstract void backup(String, boolean) throws java.sql.SQLException;
 public abstract void backupAndEnableLogArchiveMode(String, boolean, boolean) throws java.sql.SQLException;
 public abstract void disableLogArchiveMode(boolean) throws java.sql.SQLException;
 public abstract void freeze() throws java.sql.SQLException;
 public abstract void unfreeze() throws java.sql.SQLException;
 public abstract void checkpoint() throws java.sql.SQLException;
 public abstract java.util.Locale getLocale();
 public abstract org.apache.derby.catalog.UUID getId();
}
org/apache/derby/diag/ConglomInfo.class
package org.apache.derby.diag;
synchronized class ConglomInfo {
 private String tableID;
 private long conglomId;
 private String conglomName;
 private boolean isIndex;
 public void ConglomInfo(String, long, String, boolean);
 public String getTableID();
 public long getConglomId();
 public String getConglomName();
 public boolean getIsIndex();
}
org/apache/derby/diag/ContainedRoles.class
package org.apache.derby.diag;
public synchronized class ContainedRoles extends org.apache.derby.vti.VTITemplate {
 org.apache.derby.iapi.sql.dictionary.RoleClosureIterator rci;
 String nextRole;
 boolean initialized;
 String role;
 boolean inverse;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void ContainedRoles(String, int) throws java.sql.SQLException;
 public void ContainedRoles(String) throws java.sql.SQLException;
 public boolean next() throws java.sql.SQLException;
 public void close();
 public java.sql.ResultSetMetaData getMetaData();
 public String getString(int) throws java.sql.SQLException;
 static void <clinit>();
}
org/apache/derby/diag/DiagUtil$1.class
package org.apache.derby.diag;
final synchronized class DiagUtil$1 implements java.security.PrivilegedAction {
 void DiagUtil$1(String);
 public org.apache.derby.iapi.services.context.Context run();
}
org/apache/derby/diag/DiagUtil.class
package org.apache.derby.diag;
abstract synchronized class DiagUtil {
 void DiagUtil();
 static void checkAccess() throws org.apache.derby.iapi.error.StandardException;
 private static org.apache.derby.iapi.services.context.Context getContextOrNull(String);
}
org/apache/derby/diag/ErrorLogReader$1.class
package org.apache.derby.diag;
synchronized class ErrorLogReader$1 implements java.security.PrivilegedAction {
 void ErrorLogReader$1(ErrorLogReader);
 public String run();
}
org/apache/derby/diag/ErrorLogReader.class
package org.apache.derby.diag;
public synchronized class ErrorLogReader extends org.apache.derby.vti.VTITemplate {
 private boolean gotFile;
 private java.io.InputStreamReader inputFileStreamReader;
 private java.io.InputStream inputStream;
 private java.io.BufferedReader bufferedReader;
 private String inputFileName;
 private String line;
 private int endTimestampIndex;
 private int threadIndex;
 private int xidIndex;
 private int lccidIndex;
 private int databaseIndex;
 private int drdaidIndex;
 private static final String END_TIMESTAMP = Thread;
 private static final String PARAMETERS_STRING = Parameters:;
 private static final String BEGIN_THREAD_STRING = [;
 private static final String END_THREAD_STRING = ];
 private static final String BEGIN_XID_STRING = = ;
 private static final String END_XID_STRING = );
 private static final String BEGIN_DATABASE_STRING = (DATABASE =;
 private static final String END_DATABASE_STRING = );
 private static final String BEGIN_DRDAID_STRING = (DRDAID =;
 private static final String END_DRDAID_STRING = );
 private static final String BEGIN_EXECUTING_STRING = Executing prepared;
 private static final String END_EXECUTING_STRING = :End prepared;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void ErrorLogReader() throws org.apache.derby.iapi.error.StandardException;
 public void ErrorLogReader(String) throws org.apache.derby.iapi.error.StandardException;
 public java.sql.ResultSetMetaData getMetaData();
 public boolean next() throws java.sql.SQLException;
 public void close();
 public String getString(int) throws java.sql.SQLException;
 public boolean wasNull();
 static void <clinit>();
}
org/apache/derby/diag/ErrorMessages.class
package org.apache.derby.diag;
public final synchronized class ErrorMessages extends org.apache.derby.vti.VTITemplate implements org.apache.derby.vti.VTICosting, java.security.PrivilegedAction {
 private java.util.Properties p;
 private java.util.Enumeration keys;
 private String k;
 private String SQLState;
 private String message;
 private int severity;
 private int msgFile;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void ErrorMessages() throws java.io.IOException;
 public boolean next();
 public void close();
 public java.sql.ResultSetMetaData getMetaData();
 public String getString(int) throws java.sql.SQLException;
 public int getInt(int) throws java.sql.SQLException;
 private void loadProperties() throws java.io.IOException;
 private boolean notAnException();
 public double getEstimatedRowCount(org.apache.derby.vti.VTIEnvironment);
 public double getEstimatedCostPerInstantiation(org.apache.derby.vti.VTIEnvironment);
 public boolean supportsMultipleInstantiations(org.apache.derby.vti.VTIEnvironment);
 public final java.io.InputStream run();
 static void <clinit>();
}
org/apache/derby/diag/LockTable.class
package org.apache.derby.diag;
public synchronized class LockTable extends org.apache.derby.vti.VTITemplate implements org.apache.derby.vti.VTICosting {
 public static final int LATCH = 1;
 public static final int TABLE_AND_ROWLOCK = 2;
 public static final int ALL = -1;
 private org.apache.derby.iapi.store.access.TransactionController tc;
 private java.util.Hashtable currentRow;
 private java.util.Enumeration lockTable;
 private boolean wasNull;
 private boolean initialized;
 private final int flag;
 private org.apache.derby.impl.services.locks.TableNameInfo tabInfo;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void LockTable();
 public void LockTable(int);
 public java.sql.ResultSetMetaData getMetaData();
 public
boolean next() throws java.sql.SQLException;
 public void close();
 public String getString(int);
 public boolean wasNull();
 public double getEstimatedRowCount(org.apache.derby.vti.VTIEnvironment);
 public double getEstimatedCostPerInstantiation(org.apache.derby.vti.VTIEnvironment);
 public boolean supportsMultipleInstantiations(org.apache.derby.vti.VTIEnvironment);
 private java.util.Hashtable dumpLock(org.apache.derby.iapi.services.locks.Latch) throws org.apache.derby.iapi.error.StandardException;
 static void <clinit>();
}
org/apache/derby/diag/SpaceTable.class
package org.apache.derby.diag;
public synchronized class SpaceTable extends org.apache.derby.vti.VTITemplate implements org.apache.derby.vti.VTICosting {
 private ConglomInfo[] conglomTable;
 boolean initialized;
 int currentRow;
 private boolean wasNull;
 private String schemaName;
 private String tableName;
 private org.apache.derby.iapi.store.access.SpaceInfo spaceInfo;
 private org.apache.derby.iapi.store.access.TransactionController tc;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void SpaceTable();
 public void SpaceTable(String, String);
 public void SpaceTable(String);
 private void getConglomInfo(org.apache.derby.iapi.sql.conn.LanguageConnectionContext) throws org.apache.derby.iapi.error.StandardException;
 private void getSpaceInfo(int) throws org.apache.derby.iapi.error.StandardException;
 public java.sql.ResultSetMetaData getMetaData();
 public boolean next() throws java.sql.SQLException;
 public void close();
 public String getString(int);
 public long getLong(int);
 public short getShort(int);
 public int getInt(int);
 public boolean wasNull();
 public double getEstimatedRowCount(org.apache.derby.vti.VTIEnvironment);
 public double getEstimatedCostPerInstantiation(org.apache.derby.vti.VTIEnvironment);
 public boolean supportsMultipleInstantiations(org.apache.derby.vti.VTIEnvironment);
 static void <clinit>();
}
org/apache/derby/diag/StatementCache$1.class
package org.apache.derby.diag;
final synchronized class StatementCache$1 implements java.security.PrivilegedAction {
 void StatementCache$1(String);
 public org.apache.derby.iapi.services.context.Context run();
}
org/apache/derby/diag/StatementCache.class
package org.apache.derby.diag;
public final synchronized class StatementCache extends org.apache.derby.vti.VTITemplate {
 private int position;
 private java.util.Vector data;
 private org.apache.derby.impl.sql.GenericPreparedStatement currentPs;
 private boolean wasNull;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void StatementCache() throws org.apache.derby.iapi.error.StandardException;
 public boolean next();
 public void close();
 public String getString(int);
 public boolean getBoolean(int);
 public java.sql.Timestamp getTimestamp(int);
 public boolean wasNull();
 public java.sql.ResultSetMetaData getMetaData();
 private static org.apache.derby.iapi.services.context.Context getContextOrNull(String);
 static void <clinit>();
}
org/apache/derby/diag/StatementDuration$1.class
package org.apache.derby.diag;
synchronized class StatementDuration$1 implements java.security.PrivilegedAction {
 void StatementDuration$1(StatementDuration);
 public String run();
}
org/apache/derby/diag/StatementDuration.class
package org.apache.derby.diag;
public synchronized class StatementDuration extends org.apache.derby.vti.VTITemplate {
 private boolean gotFile;
 private java.io.InputStreamReader inputFileStreamReader;
 private java.io.InputStream inputStream;
 private java.io.BufferedReader bufferedReader;
 private String inputFileName;
 private java.util.Hashtable hashTable;
 private String line;
 private int endTimestampIndex;
 private int threadIndex;
 private int xidIndex;
 private int lccidIndex;
 private String[] currentRow;
 private static final String END_TIMESTAMP = Thread;
 private static final String BEGIN_THREAD_STRING = [;
 private static final String END_THREAD_STRING = ];
 private static final String BEGIN_XID_STRING = = ;
 private static final String END_XID_STRING = );
 private static final String BEGIN_EXECUTING_STRING = Executing prepared;
 private static final String END_EXECUTING_STRING = :End prepared;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void StatementDuration() throws org.apache.derby.iapi.error.StandardException;
 public void StatementDuration(String) throws org.apache.derby.iapi.error.StandardException;
 public java.sql.ResultSetMetaData getMetaData();
 public boolean next() throws java.sql.SQLException;
 private java.sql.Timestamp stringToTimestamp(String) throws java.sql.SQLException;
 public void close();
 public String getString(int) throws java.sql.SQLException;
 private String setupColumn(int) throws java.sql.SQLException;
 public boolean wasNull();
 static void <clinit>();
}
org/apache/derby/diag/TransactionTable.class
package org.apache.derby.diag;
public synchronized class TransactionTable extends org.apache.derby.vti.VTITemplate implements org.apache.derby.vti.VTICosting {
 private org.apache.derby.iapi.store.access.TransactionInfo[] transactionTable;
 boolean initialized;
 int currentRow;
 private boolean wasNull;
 private static final org.apache.derby.iapi.sql.ResultColumnDescriptor[] columnInfo;
 private static final java.sql.ResultSetMetaData metadata;
 public void TransactionTable() throws org.apache.derby.iapi.error.StandardException;
 public java.sql.ResultSetMetaData getMetaData();
 public boolean next() throws java.sql.SQLException;
 public void close();
 public String getString(int);
 public boolean wasNull();
 public double getEstimatedRowCount(org.apache.derby.vti.VTIEnvironment);
 public double getEstimatedCostPerInstantiation(org.apache.derby.vti.VTIEnvironment);
 public boolean supportsMultipleInstantiations(org.apache.derby.vti.VTIEnvironment);
 static void <clinit>();
}
org/apache/derby/iapi/db/ConsistencyChecker.class
package org.apache.derby.iapi.db;
public synchronized class ConsistencyChecker {
 private void ConsistencyChecker();
 public static boolean checkTable(String, String) throws java.sql.SQLException;
}
org/apache/derby/iapi/db/Database.class
package org.apache.derby.iapi.db;
public abstract interface Database extends org.apache.derby.database.Database, org.apache.derby.iapi.services.i18n.LocaleFinder {
 public abstract org.apache.derby.iapi.sql.conn.LanguageConnectionContext setupConnection(org.apache.derby.iapi.services.context.ContextManager, String, String, String) throws org.apache.derby.iapi.error.StandardException;
 public abstract void pushDbContext(org.apache.derby.iapi.services.context.ContextManager);
 public abstract boolean isActive();
 public abstract int getEngineType();
 public abstract org.apache.derby.iapi.jdbc.AuthenticationService getAuthenticationService() throws org.apache.derby.iapi.error.StandardException;
 public abstract Object getResourceAdapter();
 public abstract void setLocale(java.util.Locale);
 public abstract org.apache.derby.iapi.sql.dictionary.DataDictionary getDataDictionary();
 public abstract void failover(String) throws org.apache.derby.iapi.error.StandardException;
 public abstract boolean isInSlaveMode();
public abstract void stopReplicationSlave() throws java.sql.SQLException;
 public abstract void startReplicationMaster(String, String, int, String) throws java.sql.SQLException;
 public abstract void stopReplicationMaster() throws java.sql.SQLException;
}
org/apache/derby/iapi/db/DatabaseContext.class
package org.apache.derby.iapi.db;
public abstract interface DatabaseContext extends org.apache.derby.iapi.services.context.Context {
 public static final String CONTEXT_ID = Database;
 public abstract Database getDatabase();
}
org/apache/derby/iapi/db/Factory.class
package org.apache.derby.iapi.db;
public synchronized class Factory {
 public void Factory();
 public static org.apache.derby.database.Database getDatabaseOfConnection() throws java.sql.SQLException;
 public static TriggerExecutionContext getTriggerExecutionContext() throws java.sql.SQLException;
}
org/apache/derby/iapi/db/OptimizerTrace.class
package org.apache.derby.iapi.db;
public synchronized class OptimizerTrace {
 public void OptimizerTrace();
 public static void setOptimizerTrace(boolean);
 public static void setOptimizerTracer(org.apache.derby.iapi.sql.compile.OptTrace);
 public static org.apache.derby.iapi.sql.compile.OptTrace getOptimizerTracer();
 public static String getOptimizerTraceOutput();
}
org/apache/derby/iapi/db/PropertyInfo.class
package org.apache.derby.iapi.db;
public final synchronized class PropertyInfo {
 public static void setDatabaseProperty(String, String) throws java.sql.SQLException;
 private void PropertyInfo();
}
org/apache/derby/iapi/db/TriggerExecutionContext.class
package org.apache.derby.iapi.db;
public abstract interface TriggerExecutionContext {
 public static final int UPDATE_EVENT = 1;
 public static final int DELETE_EVENT = 2;
 public static final int INSERT_EVENT = 3;
 public abstract String getTargetTableName();
 public abstract org.apache.derby.catalog.UUID getTargetTableId();
 public abstract int getEventType();
 public abstract String getEventStatementText();
 public abstract java.sql.ResultSet getOldRowSet() throws java.sql.SQLException;
 public abstract java.sql.ResultSet getNewRowSet() throws java.sql.SQLException;
 public abstract java.sql.ResultSet getOldRow() throws java.sql.SQLException;
 public abstract java.sql.ResultSet getNewRow() throws java.sql.SQLException;
 public abstract Long getAutoincrementValue(String);
}
org/apache/derby/iapi/error/ErrorStringBuilder.class
package org.apache.derby.iapi.error;
public synchronized class ErrorStringBuilder {
 private java.io.StringWriter stringWriter;
 private java.io.PrintWriter printWriter;
 private org.apache.derby.iapi.services.stream.PrintWriterGetHeader headerGetter;
 public void ErrorStringBuilder(org.apache.derby.iapi.services.stream.PrintWriterGetHeader);
 public void append(String);
 public void appendln(String);
 public void stackTrace(Throwable);
 public void reset();
 public StringBuffer get();
}
org/apache/derby/iapi/error/ExceptionSeverity.class
package org.apache.derby.iapi.error;
public abstract interface ExceptionSeverity extends org.apache.derby.shared.common.error.ExceptionSeverity {
}
org/apache/derby/iapi/error/ExceptionUtil$1.class
package org.apache.derby.iapi.error;
final synchronized class ExceptionUtil$1 implements java.security.PrivilegedExceptionAction {
 void ExceptionUtil$1(reflect.Method);
 public Object run() throws IllegalArgumentException, IllegalAccessException, reflect.InvocationTargetException;
}
org/apache/derby/iapi/error/ExceptionUtil.class
package org.apache.derby.iapi.error;
public synchronized class ExceptionUtil {
 public void ExceptionUtil();
 public static String getSQLStateFromIdentifier(String);
 public static int getSeverityFromIdentifier(String);
 public static String dumpThreads();
 public static boolean isDeferredConstraintViolation(String);
}
org/apache/derby/iapi/error/PassThroughException.class
package org.apache.derby.iapi.error;
public final synchronized class PassThroughException extends RuntimeException {
 public void PassThroughException(Throwable);
}
org/apache/derby/iapi/error/PublicAPI.class
package org.apache.derby.iapi.error;
public synchronized class PublicAPI {
 public void PublicAPI();
 public static java.sql.SQLException wrapStandardException(StandardException);
}
org/apache/derby/iapi/error/SQLWarningFactory.class
package org.apache.derby.iapi.error;
public synchronized class SQLWarningFactory {
 public void SQLWarningFactory();
 public static transient java.sql.SQLWarning newSQLWarning(String, Object[]);
}
org/apache/derby/iapi/error/StandardException$BadMessageArgumentException.class
package org.apache.derby.iapi.error;
public synchronized class StandardException$BadMessageArgumentException extends Throwable {
 public void StandardException$BadMessageArgumentException();
}
org/apache/derby/iapi/error/StandardException.class
package org.apache.derby.iapi.error;
public synchronized class StandardException extends Exception {
 public static final int REPORT_DEFAULT = 0;
 public static final int REPORT_NEVER = 1;
 public static final int REPORT_ALWAYS = 2;
 private transient Object[] arguments;
 private int severity;
 private String textMessage;
 private String sqlState;
 private transient int report;
 private transient boolean isForPublicAPI;
 private transient java.sql.SQLException next;
 protected void StandardException(String);
 protected void StandardException(String, Throwable, Object[]);
 private void StandardException(String, String);
 public final Object[] getArguments();
 public final int report();
 public final void setReport(int);
 public final void setSeverity(int);
 public final int getSeverity();
 public final int getErrorCode();
 public final String getSQLState();
 public final java.sql.SQLException getNextException();
 final void markAsPublicAPI();
 public static String getSQLStateFromIdentifier(String);
 public static int getSeverityFromIdentifier(String);
 public static StandardException normalClose();
 public static transient StandardException newException(String, Object[]);
 public static transient StandardException newException(String, Throwable, Object[]);
 public static StandardException newException(String, Object, Throwable) throws StandardException$BadMessageArgumentException;
 public static StandardException newException(String, Object, Object, Throwable) throws StandardException$BadMessageArgumentException;
 public static StandardException newPreLocalizedException(String, Throwable, String);
 public static StandardException getArgumentFerry(java.sql.SQLException);
 private static boolean isVacuousWrapper(Throwable);
 public static StandardException unexpectedUserException(Throwable);
 public static StandardException plainWrapException(Throwable);
 public static StandardException closeException();
 public String getMessage();
 public final String getMessageId();
 public String getErrorProperty(String);
 public String toString();
 private static String getErrorProperty(String, String);
 public static StandardException interrupt(InterruptedException);
 public static transient java.sql.SQLWarning newWarning(String, Object[]);
 public final boolean isLockTimeout();
 public final boolean isSelfDeadlock();
 public final boolean isLockTimeoutOrDeadlock();
}
org/apache/derby/iapi/error/ThreadDump.class
package org.apache.derby.iapi.error;
public synchronized class ThreadDump {
 public void
ThreadDump();
 public static String getStackDumpString();
}
org/apache/derby/iapi/jdbc/AuthenticationService.class
package org.apache.derby.iapi.jdbc;
public abstract interface AuthenticationService {
 public static final String MODULE = org.apache.derby.iapi.jdbc.AuthenticationService;
 public abstract boolean authenticate(String, java.util.Properties) throws java.sql.SQLException;
 public abstract String getSystemCredentialsDatabaseName();
}
org/apache/derby/iapi/jdbc/BrokeredCallableStatement.class
package org.apache.derby.iapi.jdbc;
public synchronized class BrokeredCallableStatement extends BrokeredPreparedStatement implements java.sql.CallableStatement {
 public void BrokeredCallableStatement(BrokeredStatementControl, String) throws java.sql.SQLException;
 public final void registerOutParameter(int, int) throws java.sql.SQLException;
 public final void registerOutParameter(int, int, int) throws java.sql.SQLException;
 public final boolean wasNull() throws java.sql.SQLException;
 public final void close() throws java.sql.SQLException;
 public final String getString(int) throws java.sql.SQLException;
 public final boolean getBoolean(int) throws java.sql.SQLException;
 public final byte getByte(int) throws java.sql.SQLException;
 public final short getShort(int) throws java.sql.SQLException;
 public final int getInt(int) throws java.sql.SQLException;
 public final long getLong(int) throws java.sql.SQLException;
 public final float getFloat(int) throws java.sql.SQLException;
 public final double getDouble(int) throws java.sql.SQLException;
 public final java.math.BigDecimal getBigDecimal(int, int) throws java.sql.SQLException;
 public final byte[] getBytes(int) throws java.sql.SQLException;
 public final java.sql.Date getDate(int) throws java.sql.SQLException;
 public final java.sql.Date getDate(int, java.util.Calendar) throws java.sql.SQLException;
 public final java.sql.Time getTime(int) throws java.sql.SQLException;
 public final java.sql.Timestamp getTimestamp(int) throws java.sql.SQLException;
 public final Object getObject(int) throws java.sql.SQLException;
 public final java.math.BigDecimal getBigDecimal(int) throws java.sql.SQLException;
 public final Object getObject(int, java.util.Map) throws java.sql.SQLException;
 public final java.sql.Ref getRef(int) throws java.sql.SQLException;
 public final java.sql.Blob getBlob(int) throws java.sql.SQLException;
 public final java.sql.Clob getClob(int) throws java.sql.SQLException;
 public final java.sql.Array getArray(int) throws java.sql.SQLException;
 public final java.sql.Time getTime(int, java.util.Calendar) throws java.sql.SQLException;
 public final java.sql.Timestamp getTimestamp(int, java.util.Calendar) throws java.sql.SQLException;
 public final void registerOutParameter(int, int, String) throws java.sql.SQLException;
 public final void setURL(String, java.net.URL) throws java.sql.SQLException;
 public final void setNull(String, int) throws java.sql.SQLException;
 public final void setBoolean(String, boolean) throws java.sql.SQLException;
 public final void setByte(String, byte) throws java.sql.SQLException;
 public final void setShort(String, short) throws java.sql.SQLException;
 public final void setInt(String, int) throws java.sql.SQLException;
 public final void setLong(String, long) throws java.sql.SQLException;
 public final void setFloat(String, float) throws java.sql.SQLException;
 public final void setDouble(String, double) throws java.sql.SQLException;
 public final void setBigDecimal(String, java.math.BigDecimal) throws java.sql.SQLException;
 public final void setString(String, String) throws java.sql.SQLException;
 public final void setBytes(String, byte[]) throws java.sql.SQLException;
 public final void setDate(String, java.sql.Date) throws java.sql.SQLException;
 public final void setTime(String, java.sql.Time) throws java.sql.SQLException;
 public final void setTimestamp(String, java.sql.Timestamp) throws java.sql.SQLException;
 public final void setAsciiStream(String, java.io.InputStream, int) throws java.sql.SQLException;
 public final void setBinaryStream(String, java.io.InputStream, int) throws java.sql.SQLException;
 public final void setObject(String, Object, int, int) throws java.sql.SQLException;
 public final void setObject(String, Object, int) throws java.sql.SQLException;
 public final void setObject(String, Object) throws java.sql.SQLException;
 public final void setCharacterStream(String, java.io.Reader, int) throws java.sql.SQLException;
 public final void setDate(String, java.sql.Date, java.util.Calendar) throws java.sql.SQLException;
 public final void setTime(String, java.sql.Time, java.util.Calendar) throws java.sql.SQLException;
 public final void setTimestamp(String, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException;
 public final void setNull(String, int, String) throws java.sql.SQLException;
 public final String getString(String) throws java.sql.SQLException;
 public final boolean getBoolean(String) throws java.sql.SQLException;
 public final byte getByte(String) throws java.sql.SQLException;
 public final short getShort(String) throws java.sql.SQLException;
 public final int getInt(String) throws java.sql.SQLException;
 public final long getLong(String) throws java.sql.SQLException;
 public final float getFloat(String) throws java.sql.SQLException;
 public final double getDouble(String) throws java.sql.SQLException;
 public final byte[] getBytes(String) throws java.sql.SQLException;
 public final java.sql.Date getDate(String) throws java.sql.SQLException;
 public final java.sql.Time getTime(String) throws java.sql.SQLException;
 public final java.sql.Timestamp getTimestamp(String) throws java.sql.SQLException;
 public final Object getObject(String) throws java.sql.SQLException;
 public final java.math.BigDecimal getBigDecimal(String) throws java.sql.SQLException;
 public final Object getObject(String, java.util.Map) throws java.sql.SQLException;
 public final java.sql.Ref getRef(String) throws java.sql.SQLException;
 public final java.sql.Blob getBlob(String) throws java.sql.SQLException;
 public final java.sql.Clob getClob(String) throws java.sql.SQLException;
 public final java.sql.Array getArray(String) throws java.sql.SQLException;
 public final java.sql.Date getDate(String, java.util.Calendar) throws java.sql.SQLException;
 public final java.sql.Time getTime(String, java.util.Calendar) throws java.sql.SQLException;
 public final java.sql.Timestamp getTimestamp(String, java.util.Calendar) throws java.sql.SQLException;
 public final java.net.URL getURL(String) throws java.sql.SQLException;
 public final java.net.URL getURL(int) throws java.sql.SQLException;
 public final void registerOutParameter(String, int) throws java.sql.SQLException;
 public final void registerOutParameter(String, int, int) throws java.sql.SQLException;
 public final void registerOutParameter(String, int, String) throws java.sql.SQLException;
 public final java.io.Reader getCharacterStream(int) throws java.sql.SQLException;
 public final java.io.Reader getCharacterStream(String) throws java.sql.SQLException;
 public final java.io.Reader getNCharacterStream(int) throws java.sql.SQLException;
 public final java.io.Reader getNCharacterStream(String) throws java.sql.SQLException;
 public final String getNString(int) throws java.sql.SQLException;
 public final String getNString(String) throws java.sql.SQLException;
 public final java.sql.RowId getRowId(int) throws java.sql.SQLException;
 public final java.sql.RowId getRowId(String) throws java.sql.SQLException;
 public final void setRowId(String,
java.sql.RowId) throws java.sql.SQLException;
 public final void setBlob(String, java.sql.Blob) throws java.sql.SQLException;
 public final void setClob(String, java.sql.Clob) throws java.sql.SQLException;
 public final void setNString(String, String) throws java.sql.SQLException;
 public final void setNCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
 public final void setNCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
 public final void setNClob(String, java.sql.NClob) throws java.sql.SQLException;
 public final void setClob(String, java.io.Reader) throws java.sql.SQLException;
 public final void setClob(String, java.io.Reader, long) throws java.sql.SQLException;
 public final void setBlob(String, java.io.InputStream) throws java.sql.SQLException;
 public final void setBlob(String, java.io.InputStream, long) throws java.sql.SQLException;
 public final void setNClob(String, java.io.Reader) throws java.sql.SQLException;
 public final void setNClob(String, java.io.Reader, long) throws java.sql.SQLException;
 public java.sql.NClob getNClob(int) throws java.sql.SQLException;
 public java.sql.NClob getNClob(String) throws java.sql.SQLException;
 public final void setSQLXML(String, java.sql.SQLXML) throws java.sql.SQLException;
 public java.sql.SQLXML getSQLXML(int) throws java.sql.SQLException;
 public java.sql.SQLXML getSQLXML(String) throws java.sql.SQLException;
 public final void setAsciiStream(String, java.io.InputStream) throws java.sql.SQLException;
 public final void setAsciiStream(String, java.io.InputStream, long) throws java.sql.SQLException;
 public final void setBinaryStream(String, java.io.InputStream) throws java.sql.SQLException;
 public final void setBinaryStream(String, java.io.InputStream, long) throws java.sql.SQLException;
 public final void setCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
 public final void setCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
 public final Object getObject(int, Class) throws java.sql.SQLException;
 public final Object getObject(String, Class) throws java.sql.SQLException;
 final java.sql.CallableStatement getCallableStatement() throws java.sql.SQLException;
 final java.sql.PreparedStatement getPreparedStatement() throws java.sql.SQLException;
 public java.sql.CallableStatement createDuplicateStatement(java.sql.Connection, java.sql.CallableStatement) throws java.sql.SQLException;
}
org/apache/derby/iapi/jdbc/BrokeredCallableStatement42.class
package org.apache.derby.iapi.jdbc;
public synchronized class BrokeredCallableStatement42 extends BrokeredCallableStatement {
 public void BrokeredCallableStatement42(BrokeredStatementControl, String) throws java.sql.SQLException;
 public void registerOutParameter(int, java.sql.SQLType) throws java.sql.SQLException;
 public void registerOutParameter(int, java.sql.SQLType, int) throws java.sql.SQLException;
 public void registerOutParameter(int, java.sql.SQLType, String) throws java.sql.SQLException;
 public void registerOutParameter(String, java.sql.SQLType) throws java.sql.SQLException;
 public void registerOutParameter(String, java.sql.SQLType, int) throws java.sql.SQLException;
 public void registerOutParameter(String, java.sql.SQLType, String) throws java.sql.SQLException;
 public void setObject(int, Object, java.sql.SQLType) throws java.sql.SQLException;
 public void setObject(int, Object, java.sql.SQLType, int) throws java.sql.SQLException;
 public void setObject(String, Object, java.sql.SQLType) throws java.sql.SQLException;
 public void setObject(String, Object, java.sql.SQLType, int) throws java.sql.SQLException;
}
org/apache/derby/iapi/jdbc/BrokeredConnection.class
package org.apache.derby.iapi.jdbc;
public synchronized class BrokeredConnection implements EngineConnection {
 int stateHoldability;
 final BrokeredConnectionControl control;
 protected boolean isClosed;
 private String connString;
 private int stateIsolationLevel;
 private boolean stateReadOnly;
 private boolean stateAutoCommit;
 public void BrokeredConnection(BrokeredConnectionControl) throws java.sql.SQLException;
 public final void setAutoCommit(boolean) throws java.sql.SQLException;
 public final boolean getAutoCommit() throws java.sql.SQLException;
 public final java.sql.Statement createStatement() throws java.sql.SQLException;
 public final java.sql.PreparedStatement prepareStatement(String) throws java.sql.SQLException;
 public final java.sql.CallableStatement prepareCall(String) throws java.sql.SQLException;
 public final String nativeSQL(String) throws java.sql.SQLException;
 public final void commit() throws java.sql.SQLException;
 public final void rollback() throws java.sql.SQLException;
 public final void close() throws java.sql.SQLException;
 public final boolean isClosed() throws java.sql.SQLException;
 public final java.sql.SQLWarning getWarnings() throws java.sql.SQLException;
 public final void clearWarnings() throws java.sql.SQLException;
 public final java.sql.DatabaseMetaData getMetaData() throws java.sql.SQLException;
 public final void setReadOnly(boolean) throws java.sql.SQLException;
 public final boolean isReadOnly() throws java.sql.SQLException;
 public final void setCatalog(String) throws java.sql.SQLException;
 public final String getCatalog() throws java.sql.SQLException;
 public final void setTransactionIsolation(int) throws java.sql.SQLException;
 public final int getTransactionIsolation() throws java.sql.SQLException;
 public final java.sql.Statement createStatement(int, int) throws java.sql.SQLException;
 public final java.sql.PreparedStatement prepareStatement(String, int, int) throws java.sql.SQLException;
 public final java.sql.CallableStatement prepareCall(String, int, int) throws java.sql.SQLException;
 public java.util.Map getTypeMap() throws java.sql.SQLException;
 public final void setTypeMap(java.util.Map) throws java.sql.SQLException;
 public final java.sql.Statement createStatement(int, int, int) throws java.sql.SQLException;
 public final java.sql.CallableStatement prepareCall(String, int, int, int) throws java.sql.SQLException;
 public final java.sql.Savepoint setSavepoint() throws java.sql.SQLException;
 public final java.sql.Savepoint setSavepoint(String) throws java.sql.SQLException;
 public final void rollback(java.sql.Savepoint) throws java.sql.SQLException;
 public final void releaseSavepoint(java.sql.Savepoint) throws java.sql.SQLException;
 public final void setHoldability(int) throws java.sql.SQLException;
 public final java.sql.PreparedStatement prepareStatement(String, int) throws java.sql.SQLException;
 public final java.sql.PreparedStatement prepareStatement(String, int[]) throws java.sql.SQLException;
 public final java.sql.PreparedStatement prepareStatement(String, String[]) throws java.sql.SQLException;
 final java.sql.SQLException noCurrentConnection();
 final EngineConnection getRealConnection() throws java.sql.SQLException;
 final void notifyException(java.sql.SQLException);
 public void syncState() throws java.sql.SQLException;
 public void getIsolationUptoDate() throws java.sql.SQLException;
 public void setState(boolean) throws java.sql.SQLException;
 public final BrokeredStatement newBrokeredStatement(BrokeredStatementControl) throws java.sql.SQLException;
 public BrokeredPreparedStatement newBrokeredStatement(BrokeredStatementControl, String, Object) throws java.sql.SQLException;
 public BrokeredCallableStatement newBrokeredStatement(BrokeredStatementControl, String) throws java.sql.SQLException;
 public final void setDrdaID(String);
 public boolean isInGlobalTransaction();

Teste o Premium para desbloquear

Aproveite todos os benefícios por 3 dias sem pagar! 😉
Já tem cadastro?

Outros materiais