Basic Java and Database

1 answer below ยป
Basic Java and Database
Answered Same DayAug 11, 2021

Answer To: Basic Java and Database

Mohd answered on Aug 26 2021
144 Votes
XYZ/__MACOSX/XYZ/._.DS_Store
XYZ/__MACOSX/XYZ/._build.xml
XYZ/__MACOSX/XYZ/._Error
XYZ/__MACOSX/XYZ/._Item_File.txt
XYZ/__MACOSX/XYZ/._lib
XYZ/__MACOSX/XYZ/._manifest.mf
XYZ/__MACOSX/XYZ/._nbproject
XYZ/__MACOSX/XYZ/._src
XYZ/__MACOSX/XYZ/Error/._.DS_Store
XYZ/__MACOSX/XYZ/lib/._derbyclient.jar
XYZ/__MACOSX/XYZ/lib/._nblibraries.properties
XYZ/__MACOSX/XYZ/nbproject/._build-impl.xml
XYZ/__MACOSX/XYZ/nbproject/._genfiles.properties
XYZ/__MACOSX/XYZ/nbproject/._private
XYZ/__MACOSX/XYZ/nbproject/._project.properties
XYZ/__MACOSX/XYZ/nbproject/._project.xml
XYZ/__MACOSX/XYZ/nbproject/private/._private.properties
XYZ/__MACOSX/XYZ/nbproject/private/._private.xml
XYZ/__MACOSX/XYZ/src/._xyz
XYZ/__MACOSX/XYZ/src/xyz/._Item.java
XYZ/__MACOSX/XYZ/src/xyz/._Item_Database.java
XYZ/__MACOSX/XYZ/src/xyz/._Item_ErrorFile.java
XYZ/__MACOSX/XYZ/src/xyz/._Item_TextFile.java
XYZ/__MACOSX/XYZ/src/xyz/._JF_XYZ_Main.form
XYZ/__MACOSX/XYZ/src/xyz/._JF_XYZ_Main.java
XYZ/__MACOSX/XYZ/src/xyz/._XYZ_Tools.java
XYZ/XYZ/.DS_Store
XYZ/XYZ/build.xml

Builds, tests, and runs the project XYZ.


XYZ/XYZ/build/built-jar.properties
#Wed, 03 Sep 2014 11:50:49 +1000
/Users/Leonard/Documents/Strathfield_College/DIT/2014/Term_3/ICAPRG528A_Perform_IT_Data_Conversion/Assessment/Submitted_Assessments/Assessment_2/Adinata/XYZ=
XYZ/XYZ/build/classes/.netbeans_automatic_build
XYZ/XYZ/build/classes/.netbeans_update_resources
XYZ/XYZ/build/classes/Others/SQL_Commands
// BEGIN: XYZ_OLD------------------------------------------------------//
CREATE TABLE "Items"
(
"ItemNo" VARCHAR(10)
,"Name" VARCHAR(60)
,"Price" Double
,"QuantityInStock" Numeric
)
// Insert multiple rows in one INSERT statement
INSERT INTO "Items"
(
"ItemNo", "Name", "Price", "QuantityInStock"
)
VALUES
('000000001', 'Fantastic Furniture/Sofa', 500, 20)
,('000000002', 'Snooze/Bed', 1000, 15)
,('000000003', 'Living Styles/Dining Set', 1500, 10)
,('000000004', 'By Design/TV Unit', 700, 9)
,('000000005', 'IKEA/Study Desk', 500, 8)
,('', 'Bedford/3 Drawer Wardrobe Insert', 182, 0)
,('000000006', 'Bedside Table', 233, 1)
,('0000!000c', 'Natalie/Buffet Unit', 159, 2)
// END: XYZ_OLD------------------------------------------------------//
// XYZ_Furniture
// Creates an empty table called Items
CREATE TABLE "Items"
(
"ItemNo" VARCHAR(11) not null primary key
,"ItemName" VARCHAR(30)
,"Brand" VARCHAR(30)
,"Price" Double
,"QuantityInStock" Numeric
)
XYZ/XYZ/build/classes/xyz/Item.class
package xyz;
public abstract synchronized class Item {
public String ItemNo;
public String Price;
public String QuantityInStock;
void Item(String, String, String);
}
XYZ/XYZ/build/classes/xyz/Item_Database.class
package xyz;
public synchronized class Item_Database extends Item {
String Itemname;
String Brand;
void Item_Database(String, String, String, String, String);
static void MigrateToDatabase(Item_Database[]);
}
XYZ/XYZ/build/classes/xyz/Item_ErrorFile.class
package xyz;
public synchronized class Item_ErrorFile extends Item_TextFile {
String Error_Msg;
static boolean isEmpty;
void Item_ErrorFile(String, String, String, String, String);
static void LogToErrorFile(Item_ErrorFile[], String);
static void ();
}
XYZ/XYZ/build/classes/xyz/Item_TextFile.class
package xyz;
public synchronized class Item_TextFile extends Item {
public String Name;
public void Item_TextFile(String, String, String, String);
String Validate_TextFileRecord();
}
XYZ/XYZ/build/classes/xyz/JF_XYZ_Main$1.class
package xyz;
synchronized class JF_XYZ_Main$1 implements java.awt.event.ActionListener {
void JF_XYZ_Main$1(JF_XYZ_Main);
public void actionPerformed(java.awt.event.ActionEvent);
}
XYZ/XYZ/build/classes/xyz/JF_XYZ_Main$2.class
package xyz;
synchronized class JF_XYZ_Main$2 implements java.awt.event.ActionListener {
void JF_XYZ_Main$2(JF_XYZ_Main);
public void actionPerformed(java.awt.event.ActionEvent);
}
XYZ/XYZ/build/classes/xyz/JF_XYZ_Main$3.class
package xyz;
synchronized class JF_XYZ_Main$3 implements java.awt.event.ActionListener {
void JF_XYZ_Main$3(JF_XYZ_Main);
public void actionPerformed(java.awt.event.ActionEvent);
}
XYZ/XYZ/build/classes/xyz/JF_XYZ_Main$4.class
package xyz;
synchronized class JF_XYZ_Main$4 implements java.awt.event.ActionListener {
void JF_XYZ_Main$4(JF_XYZ_Main);
public void actionPerformed(java.awt.event.ActionEvent);
}
XYZ/XYZ/build/classes/xyz/JF_XYZ_Main$5.class
package xyz;
final synchronized class JF_XYZ_Main$5 implements Runnable {
void JF_XYZ_Main$5();
public void run();
}
XYZ/XYZ/build/classes/xyz/JF_XYZ_Main.class
package xyz;
public synchronized class JF_XYZ_Main extends javax.swing.JFrame {
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton_Convert;
private javax.swing.JFileChooser jFileChooser_ErrorFolderLocation;
private javax.swing.JFileChooser jFileChooser_TextFileLocation;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextField jTextField2;
public void JF_XYZ_Main();
private void initComponents();
private void jButton_ConvertActionPerformed(java.awt.event.ActionEvent);
private void jButton4ActionPerformed(java.awt.event.ActionEvent);
private void jButton1ActionPerformed(java.awt.event.ActionEvent);
private void jButton2ActionPerformed(java.awt.event.ActionEvent);
public static void main(String[]);
private static void f_Pop_st_Text_File(Item_TextFile[], java.io.File);
private void f_Validate_and_Convert(Item_TextFile[], Item_Database[], Item_ErrorFile[]);
}
XYZ/XYZ/build/classes/xyz/JF_XYZ_Main.form

















































































































































XYZ/XYZ/build/classes/xyz/XYZ_Tools.class
package xyz;
public synchronized class XYZ_Tools {
public void XYZ_Tools();
static int getNumberOfRows(java.io.File);
static String convert_Date_Format_To_Au(String);
static boolean isNumeric(String);
}
XYZ/XYZ/build/classes/xyz_old/JF_XYZ_Old_Main$1.class
package xyz_old;
synchronized class JF_XYZ_Old_Main$1 implements java.awt.event.ActionListener {
void JF_XYZ_Old_Main$1(JF_XYZ_Old_Main);
public void actionPerformed(java.awt.event.ActionEvent);
}
XYZ/XYZ/build/classes/xyz_old/JF_XYZ_Old_Main$2.class
package xyz_old;
synchronized class JF_XYZ_Old_Main$2 implements java.awt.event.ActionListener {
void JF_XYZ_Old_Main$2(JF_XYZ_Old_Main);
public void actionPerformed(java.awt.event.ActionEvent);
}
XYZ/XYZ/build/classes/xyz_old/JF_XYZ_Old_Main$3.class
package xyz_old;
synchronized class JF_XYZ_Old_Main$3 implements java.awt.event.ActionListener {
void JF_XYZ_Old_Main$3(JF_XYZ_Old_Main);
public void actionPerformed(java.awt.event.ActionEvent);
}
XYZ/XYZ/build/classes/xyz_old/JF_XYZ_Old_Main$4.class
package xyz_old;
final synchronized class JF_XYZ_Old_Main$4 implements Runnable {
void JF_XYZ_Old_Main$4();
public void run();
}
XYZ/XYZ/build/classes/xyz_old/JF_XYZ_Old_Main.class
package xyz_old;
public synchronized class JF_XYZ_Old_Main extends javax.swing.JFrame {
static javax.swing.JFrame jframe_MessageBox;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JFileChooser jFileChooser_ErrorFolderLocation;
private javax.swing.JLabel jLabel1;
private javax.swing.JTextField jTF_Location;
public void JF_XYZ_Old_Main();
private void initComponents();
private void jButton3ActionPerformed(java.awt.event.ActionEvent);
private void jButton1ActionPerformed(java.awt.event.ActionEvent);
private void jButton2ActionPerformed(java.awt.event.ActionEvent);
public static void main(String[]);
private static void f_Pop_al_Items(java.util.ArrayList);
private static void f_al_Items_to_File(java.util.ArrayList, String);
static void ();
}
XYZ/XYZ/build/classes/xyz_old/JF_XYZ_Old_Main.form







































































































XYZ/XYZ/dist/lib/derbyclient.jar
META-INF/MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.1
Created-By: 14.3-b01-101 (Apple Inc.)
Bundle-Vendor: Apache Software Foundation
Bundle-Name: Apache Derby 10.8
Bundle-Version: 10.8.1000002.1095077
Bundle-ManifestVersion: 2
Sealed: true
Bundle-SymbolicName: derbyclient
DynamicImport-Package: *
Export-Package: org.apache.derby.jdbc
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/iapi/tools/i18n/
Sealed: false
Name: org/apache/derby/loc/
Sealed: false
Name: org/apache/derby/tools/
Sealed: false
org/apache/derby/client/ClientDataSourceFactory.class
package org.apache.derby.client;
public synchronized class ClientDataSourceFactory implements javax.naming.spi.ObjectFactory {
private static final Class[] STRING_ARG;
private static final Class[] INT_ARG;
private static final Class[] BOOLEAN_ARG;
private static final Class[] SHORT_ARG;
public void ClientDataSourceFactory();
public Object getObjectInstance(Object, javax.naming.Name, javax.naming.Context, java.util.Hashtable) throws Exception;
private static void setBeanProperties(Object, javax.naming.Reference) throws Exception;
static void ();
}
org/apache/derby/client/ClientPooledConnection.class
package org.apache.derby.client;
public synchronized class ClientPooledConnection implements javax.sql.PooledConnection {
private boolean newPC_;
private java.util.ArrayList listeners_;
private int eventIterators;
am.Connection physicalConnection_;
net.NetConnection netPhysicalConnection_;
net.NetXAConnection netXAPhysicalConnection_;
private final am.stmtcache.JDBCStatementCache statementCache;
am.LogicalConnection logicalConnection_;
protected am.LogWriter logWriter_;
protected int rmId_;
public void ClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, am.LogWriter, String, String) throws java.sql.SQLException;
public void ClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, am.LogWriter, String, String, int) throws java.sql.SQLException;
public boolean isStatementPoolingEnabled();
protected void finalize() throws Throwable;
public synchronized void close() throws java.sql.SQLException;
public synchronized java.sql.Connection getConnection() throws java.sql.SQLException;
private void createLogicalConnection() throws am.SqlException;
public synchronized void addConnectionEventListener(javax.sql.ConnectionEventListener);
public synchronized void removeConnectionEventListener(javax.sql.ConnectionEventListener);
public synchronized void recycleConnection();
public void informListeners(am.SqlException);
private void fireConnectionEventListeners(am.SqlException);
public synchronized void nullLogicalConnection();
public void onStatementClose(java.sql.PreparedStatement);
public void onStatementErrorOccurred(java.sql.PreparedStatement, java.sql.SQLException);
protected net.NetXAConnection getNetXAConnection(org.apache.derby.jdbc.ClientBaseDataSource, net.NetLogWriter, String, String, int) throws am.SqlException;
}
org/apache/derby/client/ClientPooledConnection40.class
package org.apache.derby.client;
public synchronized class ClientPooledConnection40 extends ClientPooledConnection {
private final java.util.concurrent.CopyOnWriteArrayList statementEventListeners;
public void ClientPooledConnection40(org.apache.derby.jdbc.ClientBaseDataSource, am.LogWriter, String, String) throws java.sql.SQLException;
public void ClientPooledConnection40(org.apache.derby.jdbc.ClientBaseDataSource, am.LogWriter, String, String, int) throws java.sql.SQLException;
public void addStatementEventListener(javax.sql.StatementEventListener);
public void removeStatementEventListener(javax.sql.StatementEventListener);
public void onStatementClose(java.sql.PreparedStatement);
public void onStatementErrorOccurred(java.sql.PreparedStatement, java.sql.SQLException);
}
org/apache/derby/client/ClientXAConnection.class
package org.apache.derby.client;
public synchronized class ClientXAConnection extends ClientPooledConnection implements javax.sql.XAConnection {
private static int rmIdSeed_;
private org.apache.derby.jdbc.ClientXADataSource derbyds_;
private javax.transaction.xa.XAResource xares_;
private net.NetXAResource netXares_;
private boolean fFirstGetConnection_;
private java.sql.Connection logicalCon_;
private net.NetXAConnection controlCon_;
public void ClientXAConnection(org.apache.derby.jdbc.ClientXADataSource, net.NetLogWriter, String, String) throws java.sql.SQLException;
public java.sql.Connection getConnection() throws java.sql.SQLException;
private static synchronized int getUnigueRmId();
public int getRmId();
public javax.transaction.xa.XAResource getXAResource() throws java.sql.SQLException;
public org.apache.derby.jdbc.ClientXADataSource getDataSource() throws am.SqlException;
public net.NetXAConnection createControlConnection(net.NetLogWriter, String, String, org.apache.derby.jdbc.ClientDataSource, int, boolean) throws java.sql.SQLException;
public synchronized void close() throws java.sql.SQLException;
static void ();
}
org/apache/derby/client/ClientXAConnection40.class
package org.apache.derby.client;
public synchronized class ClientXAConnection40 extends ClientXAConnection {
private final java.util.concurrent.CopyOnWriteArrayList statementEventListeners;
public void ClientXAConnection40(org.apache.derby.jdbc.ClientXADataSource, net.NetLogWriter, String, String) throws java.sql.SQLException;
public void removeStatementEventListener(javax.sql.StatementEventListener);
public void addStatementEventListener(javax.sql.StatementEventListener);
public void onStatementClose(java.sql.PreparedStatement);
public void onStatementErrorOccurred(java.sql.PreparedStatement, java.sql.SQLException);
}
org/apache/derby/client/ClientXid.class
package org.apache.derby.client;
public synchronized class ClientXid implements javax.transaction.xa.Xid {
private int formatID_;
private int gtrid_length_;
private int bqual_length_;
private byte[] data_;
private static final int XidDATASIZE = 128;
public static final int MAXGTRIDSIZE = 64;
public static final int MAXBQUALSIZE = 64;
private static final String hextab_ = 0123456789ABCDEF;
public void ClientXid();
public void ClientXid(int, byte[], byte[]);
public String toString();
public byte[] getBranchQualifier();
public void setBranchQualifier(byte[]);
public int getFormatId();
public void setFormatID(int);
public byte[] getGlobalTransactionId();
public byte[] getData();
public int getGtridLength();
public int getBqualLength();
public int hashCode();
public boolean equals(Object);
}
org/apache/derby/client/am/Agent.class
package org.apache.derby.client.am;
public abstract synchronized class Agent {
public SqlException accumulatedReadExceptions_;
private boolean enableBatchedExceptionTracking_;
private int batchedExceptionLabelIndex_;
private boolean[] batchedExceptionGenerated_;
Connection connection_;
public SectionManager sectionManager_;
public LogWriter logWriter_;
final CrossConverters crossConverters_;
SqlException deferredException_;
void checkForDeferredExceptions() throws SqlException;
public void accumulateDeferredException(SqlException);
protected void Agent(Connection, LogWriter);
protected void resetAgent(LogWriter);
public void resetAgent(Connection, LogWriter, int, String, int) throws SqlException;
protected abstract void resetAgent_(LogWriter, int, String, int) throws SqlException;
public final boolean loggingEnabled();
public final void setLogWriter(LogWriter);
public final java.io.PrintWriter getLogWriter();
public abstract LogWriter newLogWriter_(java.io.PrintWriter, int);
public final void accumulateReadException(SqlException);
public final void accumulateDisconnectException(DisconnectException);
public final void accumulateChainBreakingReadExceptionAndThrow(DisconnectException) throws DisconnectException;
protected abstract void markChainBreakingException_();
public abstract void checkForChainBreakingException_() throws SqlException;
private final void enableBatchedExceptionTracking(int);
final void disableBatchedExceptionTracking();
public final void setBatchedExceptionLabelIndex(int);
private final SqlException labelAsBatchedException(SqlException, int);
protected final void checkForExceptions() throws SqlException;
final boolean batchUpdateExceptionGenerated();
public final void flow(Statement) throws SqlException;
public final void flowBatch(Statement, int) throws SqlException;
public final void flowOutsideUOW() throws SqlException;
public abstract void flush_() throws DisconnectException;
public abstract void close_() throws SqlException;
public void close() throws SqlException;
public final void disconnectEvent();
public void beginWriteChainOutsideUOW() throws SqlException;
public void beginWriteChain(Statement) throws SqlException;
public final void beginBatchedWriteChain(Statement) throws SqlException;
protected void endWriteChain();
protected final void endBatchedWriteChain();
protected void beginReadChain(Statement) throws SqlException;
protected final void beginBatchedReadChain(Statement, int) throws SqlException;
protected void beginReadChainOutsideUOW() throws SqlException;
public void endReadChain() throws SqlException;
public final void endBatchedReadChain(int[], SqlException) throws BatchUpdateException;
}
org/apache/derby/client/am/AsciiStream.class
package org.apache.derby.client.am;
public synchronized class AsciiStream extends java.io.InputStream {
private java.io.Reader reader_;
private String materializedString_;
private int charsRead_;
public void AsciiStream(String);
public void AsciiStream(String, java.io.Reader);
public int read() throws java.io.IOException;
public int available();
}
org/apache/derby/client/am/BatchUpdateException.class
package org.apache.derby.client.am;
public synchronized class BatchUpdateException extends java.sql.BatchUpdateException {
private static final org.apache.derby.shared.common.i18n.MessageUtil msgutil_;
public void BatchUpdateException(LogWriter, ClientMessageId, Object[], int[], SqlException);
public void BatchUpdateException(LogWriter, ClientMessageId, Object[], int[]);
public void BatchUpdateException(LogWriter, ClientMessageId, int[]);
public void BatchUpdateException(LogWriter, ClientMessageId, Object, int[]);
static void ();
}
org/apache/derby/client/am/Blob.class
package org.apache.derby.client.am;
public synchronized class Blob extends Lob implements java.sql.Blob {
byte[] binaryString_;
java.io.InputStream binaryStream_;
int dataOffset_;
public void Blob(byte[], Agent, int);
public void Blob(Agent, java.io.InputStream, int);
public void Blob(Agent, java.io.InputStream);
public void Blob(Agent, int);
public long length() throws java.sql.SQLException;
long getLocatorLength() throws SqlException;
public byte[] getBytes(long, int) throws java.sql.SQLException;
private byte[] getBytesX(long, int) throws SqlException;
public java.io.InputStream getBinaryStream() throws java.sql.SQLException;
java.io.InputStream getBinaryStreamX() throws SqlException;
public long position(byte[], long) throws java.sql.SQLException;
private long positionX(byte[], long) throws SqlException;
public long position(java.sql.Blob, long) throws java.sql.SQLException;
private long positionX(java.sql.Blob, long) throws SqlException;
public int setBytes(long, byte[]) throws java.sql.SQLException;
public int setBytes(long, byte[], int, int) throws java.sql.SQLException;
public int setBytesX(long, byte[], int, int) throws SqlException;
public java.io.OutputStream setBinaryStream(long) throws java.sql.SQLException;
public void truncate(long) throws java.sql.SQLException;
public void free() throws java.sql.SQLException;
public java.io.InputStream getBinaryStream(long, long) throws java.sql.SQLException;
public boolean isBinaryString();
public boolean isBinaryStream();
public byte[] getBinaryString();
protected long binaryStringPosition(byte[], long);
protected boolean isSubString(byte[], int);
protected void materializeStream() throws SqlException;
}
org/apache/derby/client/am/BlobLocatorInputStream.class
package org.apache.derby.client.am;
public synchronized class BlobLocatorInputStream extends java.io.InputStream {
private final Connection connection;
private final Blob blob;
private long currentPos;
private final long maxPos;
public void BlobLocatorInputStream(Connection, Blob) throws SqlException;
public void BlobLocatorInputStream(Connection, Blob, long, long) throws SqlException;
public int read() throws java.io.IOException;
public int read(byte[], int, int) throws java.io.IOException;
private byte[] readBytes(int) throws java.io.IOException;
}
org/apache/derby/client/am/BlobLocatorOutputStream.class
package org.apache.derby.client.am;
public synchronized class BlobLocatorOutputStream extends java.io.OutputStream {
private final Connection connection;
private final Blob blob;
private long currentPos;
public void BlobLocatorOutputStream(Connection, Blob, long) throws SqlException;
public void write(int) throws java.io.IOException;
public void write(byte[]) throws java.io.IOException;
public void write(byte[], int, int) throws java.io.IOException;
private void writeBytes(byte[]) throws java.io.IOException;
}
org/apache/derby/client/am/BlobOutputStream.class
package org.apache.derby.client.am;
public synchronized class BlobOutputStream extends java.io.OutputStream {
private Blob blob_;
private long offset_;
public void BlobOutputStream(Blob, long);
public void write(int) throws java.io.IOException;
public void write(byte[], int, int) throws java.io.IOException;
private void writeX(byte[], int, int);
}
org/apache/derby/client/am/ByteArrayCombinerStream.class
package org.apache.derby.client.am;
public synchronized class ByteArrayCombinerStream extends java.io.InputStream {
private final java.util.ArrayList arrays;
private final long specifiedLength;
private long gOffset;
private int arrayIndex;
private byte[] curArray;
private int off;
public void ByteArrayCombinerStream(java.util.ArrayList, long);
public int read() throws java.io.IOException;
public int read(byte[], int, int) throws java.io.IOException;
public int available();
private byte[] nextArray();
}
org/apache/derby/client/am/CachingLogicalConnection.class
package org.apache.derby.client.am;
public synchronized class CachingLogicalConnection extends LogicalConnection {
private StatementCacheInteractor cacheInteractor;
public void CachingLogicalConnection(Connection, org.apache.derby.client.ClientPooledConnection, stmtcache.JDBCStatementCache) throws SqlException;
public synchronized void close() throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int[]) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, String[]) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int, int) throws java.sql.SQLException;
}
org/apache/derby/client/am/CachingLogicalConnection40.class
package org.apache.derby.client.am;
public synchronized class CachingLogicalConnection40 extends LogicalConnection40 {
private StatementCacheInteractor cacheInteractor;
public void CachingLogicalConnection40(Connection, org.apache.derby.client.ClientPooledConnection, stmtcache.JDBCStatementCache) throws SqlException;
public synchronized void close() throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int[]) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, String[]) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int, int) throws java.sql.SQLException;
}
org/apache/derby/client/am/CallableLocatorProcedures.class
package org.apache.derby.client.am;
synchronized class CallableLocatorProcedures {
boolean isLocatorSupportAvailable;
private CallableStatement blobCreateLocatorCall;
private CallableStatement blobReleaseLocatorCall;
private CallableStatement blobGetPositionFromLocatorCall;
private CallableStatement blobGetPositionFromBytesCall;
private CallableStatement blobGetLengthCall;
private CallableStatement blobGetBytesCall;
private CallableStatement blobSetBytesCall;
private CallableStatement blobTruncateCall;
private CallableStatement clobCreateLocatorCall;
private CallableStatement clobReleaseLocatorCall;
private CallableStatement clobGetPositionFromStringCall;
private CallableStatement clobGetPositionFromLocatorCall;
private CallableStatement clobGetLengthCall;
private CallableStatement clobGetSubStringCall;
private CallableStatement clobSetStringCall;
private CallableStatement clobTruncateCall;
private final Connection connection;
private static final int VARCHAR_MAXWIDTH = 32672;
private static final int INVALID_LOCATOR = -1;
void CallableLocatorProcedures(Connection);
int blobCreateLocator() throws SqlException;
void blobReleaseLocator(int) throws SqlException;
long blobGetPositionFromLocator(int, int, long) throws SqlException;
long blobGetPositionFromBytes(int, byte[], long) throws SqlException;
private long blobGetPositionFromBytes(int, long, byte[], int, int) throws SqlException;
long blobGetLength(int) throws SqlException;
byte[] blobGetBytes(int, long, int) throws SqlException;
void blobSetBytes(int, long, int, byte[]) throws SqlException;
void blobTruncate(int, long) throws SqlException;
int clobCreateLocator() throws SqlException;
void clobReleaseLocator(int) throws SqlException;
long clobGetPositionFromString(int, String, long) throws SqlException;
private long clobGetPositionFromString(int, long, String, int, int) throws SqlException;
long clobGetPositionFromLocator(int, int, long) throws SqlException;
long clobGetLength(int) throws SqlException;
String clobGetSubString(int, long, int) throws SqlException;
void clobSetString(int, long, int, String) throws SqlException;
void clobTruncate(int, long) throws SqlException;
private SqlException handleInvalidLocator(SqlException);
}
org/apache/derby/client/am/CallableStatement.class
package org.apache.derby.client.am;
public synchronized class CallableStatement extends PreparedStatement implements java.sql.PreparedStatement, java.sql.CallableStatement, PreparedStatementCallbackInterface {
public MaterialPreparedStatement materialCallableStatement_;
private int wasNull_;
private static final int WAS_NULL = 1;
private static final int WAS_NOT_NULL = 2;
private static final int WAS_NULL_UNSET = 0;
private void initCallableStatement();
public void reset(boolean) throws SqlException;
public void CallableStatement(Agent, Connection, String, int, int, int, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public void resetCallableStatement(Agent, Connection, String, int, int, int) throws SqlException;
public void resetCallableStatement(Agent, Connection, String, Section) throws SqlException;
public void resetCallableStatement(Agent, Connection, String, Section, ColumnMetaData, ColumnMetaData) throws SqlException;
protected void finalize() throws Throwable;
public void clearParameters() throws java.sql.SQLException;
public void registerOutParameter(int, int) throws java.sql.SQLException;
void registerOutParameterX(int, int) throws SqlException;
private int guessScaleForDecimalOrNumeric(int);
public void registerOutParameter(int, int, int) throws java.sql.SQLException;
private void registerOutParameterX(int, int, int) throws SqlException;
public void registerOutParameter(int, int, String) throws java.sql.SQLException;
public boolean wasNull() throws java.sql.SQLException;
private boolean wasNullX() throws SqlException;
public boolean getBoolean(int) throws java.sql.SQLException;
public byte getByte(int) throws java.sql.SQLException;
public short getShort(int) throws java.sql.SQLException;
public int getInt(int) throws java.sql.SQLException;
int getIntX(int) throws SqlException;
public long getLong(int) throws java.sql.SQLException;
long getLongX(int) throws SqlException;
public float getFloat(int) throws java.sql.SQLException;
public double getDouble(int) throws java.sql.SQLException;
public java.math.BigDecimal getBigDecimal(int, int) throws java.sql.SQLException, ArithmeticException;
public java.math.BigDecimal getBigDecimal(int) throws java.sql.SQLException;
public java.sql.Date getDate(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Date getDate(int) throws java.sql.SQLException;
public java.sql.Time getTime(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Time getTime(int) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(int) throws java.sql.SQLException;
public String getString(int) throws java.sql.SQLException;
String getStringX(int) throws SqlException;
public byte[] getBytes(int) throws java.sql.SQLException;
byte[] getBytesX(int) throws SqlException;
public java.sql.Blob getBlob(int) throws java.sql.SQLException;
public java.sql.Clob getClob(int) throws java.sql.SQLException;
public java.sql.Array getArray(int) throws java.sql.SQLException;
public java.sql.Ref getRef(int) throws java.sql.SQLException;
public Object getObject(int) throws java.sql.SQLException;
public Object getObject(int, java.util.Map) throws java.sql.SQLException;
public void registerOutParameter(String, int) throws java.sql.SQLException;
public void registerOutParameter(String, int, int) throws java.sql.SQLException;
public void registerOutParameter(String, int, String) throws java.sql.SQLException;
public java.net.URL getURL(int) throws java.sql.SQLException;
public void setURL(String, java.net.URL) throws java.sql.SQLException;
public void setNull(String, int) throws java.sql.SQLException;
public void setBoolean(String, boolean) throws java.sql.SQLException;
public void setByte(String, byte) throws java.sql.SQLException;
public void setShort(String, short) throws java.sql.SQLException;
public void setInt(String, int) throws java.sql.SQLException;
public void setLong(String, long) throws java.sql.SQLException;
public void setFloat(String, float) throws java.sql.SQLException;
public void setDouble(String, double) throws java.sql.SQLException;
public void setBigDecimal(String, java.math.BigDecimal) throws java.sql.SQLException;
public void setString(String, String) throws java.sql.SQLException;
public void setBytes(String, byte[]) throws java.sql.SQLException;
public void setDate(String, java.sql.Date) throws java.sql.SQLException;
public void setTime(String, java.sql.Time) throws java.sql.SQLException;
public void setTimestamp(String, java.sql.Timestamp) throws java.sql.SQLException;
public void setAsciiStream(String, java.io.InputStream, int) throws java.sql.SQLException;
public void setBinaryStream(String, java.io.InputStream, int) throws java.sql.SQLException;
public void setObject(String, Object, int, int) throws java.sql.SQLException;
public void setObject(String, Object, int) throws java.sql.SQLException;
public void setObject(String, Object) throws java.sql.SQLException;
public void setCharacterStream(String, java.io.Reader, int) throws java.sql.SQLException;
public void setDate(String, java.sql.Date, java.util.Calendar) throws java.sql.SQLException;
public void setTime(String, java.sql.Time, java.util.Calendar) throws java.sql.SQLException;
public void setTimestamp(String, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException;
public void setNull(String, int, String) throws java.sql.SQLException;
public String getString(String) throws java.sql.SQLException;
public boolean getBoolean(String) throws java.sql.SQLException;
public byte getByte(String) throws java.sql.SQLException;
public short getShort(String) throws java.sql.SQLException;
public int getInt(String) throws java.sql.SQLException;
public long getLong(String) throws java.sql.SQLException;
public float getFloat(String) throws java.sql.SQLException;
public double getDouble(String) throws java.sql.SQLException;
public byte[] getBytes(String) throws java.sql.SQLException;
public java.sql.Date getDate(String) throws java.sql.SQLException;
public java.sql.Time getTime(String) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(String) throws java.sql.SQLException;
public Object getObject(String) throws java.sql.SQLException;
public java.math.BigDecimal getBigDecimal(String) throws java.sql.SQLException;
public Object getObject(String, java.util.Map) throws java.sql.SQLException;
public java.sql.Ref getRef(String) throws java.sql.SQLException;
public java.sql.Blob getBlob(String) throws java.sql.SQLException;
public java.sql.Clob getClob(String) throws java.sql.SQLException;
public java.sql.Array getArray(String) throws java.sql.SQLException;
public java.sql.Date getDate(String, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Time getTime(String, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(String, java.util.Calendar) throws java.sql.SQLException;
public java.net.URL getURL(String) throws java.sql.SQLException;
public java.io.Reader getCharacterStream(int) throws java.sql.SQLException;
public void completeExecuteCall(Sqlca, Cursor);
protected String getJdbcStatementInterfaceName();
private void checkGetterPreconditions(int) throws SqlException;
private void checkForValidOutParameter(int) throws SqlException;
private void setWasNull(int);
protected java.sql.SQLException jdbcMethodNotImplemented() throws java.sql.SQLException;
}
org/apache/derby/client/am/CallableStatement40.class
package org.apache.derby.client.am;
public synchronized class CallableStatement40 extends CallableStatement {
public void CallableStatement40(Agent, Connection, String, int, int, int, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public java.io.Reader getCharacterStream(String) throws java.sql.SQLException;
public java.io.Reader getNCharacterStream(int) throws java.sql.SQLException;
public java.io.Reader getNCharacterStream(String) throws java.sql.SQLException;
public String getNString(int) throws java.sql.SQLException;
public String getNString(String) throws java.sql.SQLException;
public java.sql.RowId getRowId(int) throws java.sql.SQLException;
public java.sql.RowId getRowId(String) throws java.sql.SQLException;
public void setRowId(String, java.sql.RowId) throws java.sql.SQLException;
public void setBlob(String, java.sql.Blob) throws java.sql.SQLException;
public void setClob(String, java.sql.Clob) throws java.sql.SQLException;
public void setNString(String, String) throws java.sql.SQLException;
public void setNCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
public void setNClob(String, java.sql.NClob) throws java.sql.SQLException;
public void setClob(String, java.io.Reader, long) throws java.sql.SQLException;
public void setBlob(String, java.io.InputStream, long) throws java.sql.SQLException;
public 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 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 void setRowId(int, java.sql.RowId) throws java.sql.SQLException;
public void setNString(int, String) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void setNClob(int, java.sql.NClob) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void setSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException;
public void setAsciiStream(String, java.io.InputStream) throws java.sql.SQLException;
public void setBinaryStream(String, java.io.InputStream) throws java.sql.SQLException;
public void setBlob(String, java.io.InputStream) throws java.sql.SQLException;
public void setCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
public void setClob(String, java.io.Reader) throws java.sql.SQLException;
public void setNCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
public void setNClob(String, java.io.Reader) throws java.sql.SQLException;
public Object unwrap(Class) 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, long) throws java.sql.SQLException;
public final void setCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
public Object getObject(int, Class) throws java.sql.SQLException;
private java.sql.SQLException mismatchException(String, int) throws java.sql.SQLException;
public Object getObject(String, Class) throws java.sql.SQLException;
}
org/apache/derby/client/am/ClientJDBCObjectFactory.class
package org.apache.derby.client.am;
public abstract interface ClientJDBCObjectFactory {
public abstract org.apache.derby.client.ClientPooledConnection newClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, LogWriter, String, String) throws java.sql.SQLException;
public abstract org.apache.derby.client.ClientPooledConnection newClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, LogWriter, String, String, int) throws java.sql.SQLException;
public abstract org.apache.derby.client.ClientXAConnection newClientXAConnection(org.apache.derby.jdbc.ClientBaseDataSource, LogWriter, String, String) throws java.sql.SQLException;
public abstract CallableStatement newCallableStatement(Agent, Connection, String, int, int, int, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public abstract LogicalConnection newLogicalConnection(Connection, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public abstract LogicalConnection newCachingLogicalConnection(Connection, org.apache.derby.client.ClientPooledConnection, stmtcache.JDBCStatementCache) throws SqlException;
public abstract PreparedStatement newPreparedStatement(Agent, Connection, String, Section, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public abstract PreparedStatement newPreparedStatement(Agent, Connection, String, int, int, int, int, String[], int[], org.apache.derby.client.ClientPooledConnection) throws SqlException;
public abstract LogicalPreparedStatement newLogicalPreparedStatement(java.sql.PreparedStatement, stmtcache.StatementKey, StatementCacheInteractor);
public abstract LogicalCallableStatement newLogicalCallableStatement(java.sql.CallableStatement, stmtcache.StatementKey, StatementCacheInteractor);
public abstract Connection newNetConnection(LogWriter, String, java.util.Properties) throws SqlException;
public abstract Connection newNetConnection(LogWriter, org.apache.derby.jdbc.ClientBaseDataSource, String, String) throws SqlException;
public abstract Connection newNetConnection(LogWriter, int, String, int, String, java.util.Properties) throws SqlException;
public abstract Connection newNetConnection(LogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean) throws SqlException;
public abstract Connection newNetConnection(LogWriter, String, int, org.apache.derby.jdbc.ClientBaseDataSource, boolean) throws SqlException;
public abstract Connection newNetConnection(LogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public abstract ResultSet newNetResultSet(Agent, MaterialStatement, Cursor, int, int, int, int, int, long, int, int, int) throws SqlException;
public abstract DatabaseMetaData newNetDatabaseMetaData(Agent, Connection);
public abstract Statement newStatement(Agent, Connection) throws SqlException;
public abstract Statement newStatement(Agent, Connection, int, int, int, int, String[], int[]) throws SqlException;
public abstract ColumnMetaData newColumnMetaData(LogWriter);
public abstract ColumnMetaData newColumnMetaData(LogWriter, int);
public abstract ParameterMetaData newParameterMetaData(ColumnMetaData);
}
org/apache/derby/client/am/ClientMessageId.class
package org.apache.derby.client.am;
public synchronized class ClientMessageId {
public String msgid;
public void ClientMessageId(String);
}
org/apache/derby/client/am/Clob.class
package org.apache.derby.client.am;
public synchronized class Clob extends Lob implements java.sql.Clob {
protected String string_;
protected java.io.InputStream asciiStream_;
protected java.io.InputStream unicodeStream_;
protected java.io.Reader characterStream_;
protected byte[] utf8String_;
protected String encoding_;
public void Clob(Agent, String);
public void Clob(Agent, byte[], String, int) throws SqlException;
public void Clob(Agent, java.io.InputStream, String, int) throws SqlException;
public void Clob(Agent, java.io.InputStream, String) throws SqlException;
public void Clob(Agent, java.io.Reader, int);
public void Clob(Agent, int);
public void Clob(Agent, java.io.Reader);
private void Clob(Agent, boolean);
public long length() throws java.sql.SQLException;
public String getSubString(long, int) throws java.sql.SQLException;
private String getSubStringX(long, int) throws SqlException;
public java.io.Reader getCharacterStream() throws java.sql.SQLException;
java.io.Reader getCharacterStreamX() throws SqlException;
public java.io.InputStream getAsciiStream() throws java.sql.SQLException;
java.io.InputStream getAsciiStreamX() throws SqlException;
public long position(String, long) throws java.sql.SQLException;
private long positionX(String, long) throws SqlException;
public long position(java.sql.Clob, long) throws java.sql.SQLException;
private long positionX(java.sql.Clob, long) throws SqlException;
public int setString(long, String) throws java.sql.SQLException;
public int setString(long, String, int, int) throws java.sql.SQLException;
public int setStringX(long, String, int, int) throws SqlException;
public java.io.OutputStream setAsciiStream(long) throws java.sql.SQLException;
public java.io.Writer setCharacterStream(long) throws java.sql.SQLException;
public void truncate(long) throws java.sql.SQLException;
public void free() throws java.sql.SQLException;
public java.io.Reader getCharacterStream(long, long) throws java.sql.SQLException;
public boolean isString();
public boolean isAsciiStream();
public boolean isCharacterStream();
public boolean isUnicodeStream();
public java.io.InputStream getUnicodeStream();
public String getString();
public byte[] getUtf8String();
public int getUTF8Length() throws SqlException;
protected Clob createClobWrapper(java.sql.Clob) throws SqlException;
public void convertFromAsciiToCharacterStream() throws SqlException;
protected void materializeStream() throws SqlException;
long getLocatorLength() throws SqlException;
}
org/apache/derby/client/am/ClobLocatorInputStream.class
package org.apache.derby.client.am;
public synchronized class ClobLocatorInputStream extends java.io.InputStream {
private final Connection connection;
private final Clob clob;
private long currentPos;
public void ClobLocatorInputStream(Connection, Clob) throws SqlException;
public void ClobLocatorInputStream(Connection, Clob, long) throws SqlException;
public int read() throws java.io.IOException;
public int read(byte[], int, int) throws java.io.IOException;
private byte[] readBytes(int) throws java.io.IOException;
private byte[] getBytesFromString(String);
}
org/apache/derby/client/am/ClobLocatorOutputStream.class
package org.apache.derby.client.am;
public synchronized class ClobLocatorOutputStream extends java.io.OutputStream {
private final Connection connection;
private final Clob clob;
private long currentPos;
public void ClobLocatorOutputStream(Connection, Clob, long) throws SqlException;
public void write(int) throws java.io.IOException;
public void write(byte[]) throws java.io.IOException;
public void write(byte[], int, int) throws java.io.IOException;
public void flush();
private void writeBytes(byte[]) throws java.io.IOException;
}
org/apache/derby/client/am/ClobLocatorReader.class
package org.apache.derby.client.am;
public synchronized class ClobLocatorReader extends java.io.Reader {
private final Connection connection;
private final Clob clob;
private long currentPos;
private final long maxPos;
private boolean isClosed;
public void ClobLocatorReader(Connection, Clob) throws SqlException;
public void ClobLocatorReader(Connection, Clob, long, long) throws SqlException;
public int read() throws java.io.IOException;
public int read(char[], int, int) throws java.io.IOException;
public void close() throws java.io.IOException;
private void checkClosed() throws java.io.IOException;
private char[] readCharacters(int) throws java.io.IOException;
}
org/apache/derby/client/am/ClobLocatorWriter.class
package org.apache.derby.client.am;
public synchronized class ClobLocatorWriter extends java.io.Writer {
private final Connection connection;
private final Clob clob;
private long currentPos;
private boolean isClosed;
public void ClobLocatorWriter(Connection, Clob, long) throws SqlException;
public void close() throws java.io.IOException;
private void checkClosed() throws java.io.IOException;
public void write(int) throws java.io.IOException;
public void write(char[]) throws java.io.IOException;
public void flush();
public void write(char[], int, int) throws java.io.IOException;
private void writeCharacters(char[], int, int) throws java.io.IOException;
}
org/apache/derby/client/am/ClobOutputStream.class
package org.apache.derby.client.am;
public synchronized class ClobOutputStream extends java.io.OutputStream {
private Clob clob_;
private long offset_;
public void ClobOutputStream(Clob, long) throws SqlException;
public void write(int) throws java.io.IOException;
public void write(byte[], int, int) throws java.io.IOException;
private void writeBytes(byte[]) throws java.io.IOException;
}
org/apache/derby/client/am/ClobWriter.class
package org.apache.derby.client.am;
public synchronized class ClobWriter extends java.io.Writer {
private Clob clob_;
private long offset_;
public void ClobWriter();
public void ClobWriter(Clob, long) throws SqlException;
public void write(int);
public void write(char[], int, int);
public void write(String);
public void write(String, int, int);
public void flush();
public void close() throws java.io.IOException;
private void updateClob(StringBuffer);
}
org/apache/derby/client/am/CloseFilterInputStream.class
package org.apache.derby.client.am;
synchronized class CloseFilterInputStream extends java.io.FilterInputStream {
private static final String ALREADY_CLOSED_ERR_MESSAGE;
private boolean closed;
public void CloseFilterInputStream(java.io.InputStream);
public int read() throws java.io.IOException;
public int read(byte[]) throws java.io.IOException;
public int read(byte[], int, int) throws java.io.IOException;
public long skip(long) throws java.io.IOException;
public int available() throws java.io.IOException;
public void close() throws java.io.IOException;
static void ();
}
org/apache/derby/client/am/ColumnMetaData.class
package org.apache.derby.client.am;
public synchronized class ColumnMetaData implements java.sql.ResultSetMetaData {
public int columns_;
public boolean[] nullable_;
public transient int[] singleMixedByteOrDouble_;
public short sqldHold_;
public short sqldReturn_;
public short sqldScroll_;
public short sqldSensitive_;
public short sqldFcode_;
public short sqldKeytype_;
public String sqldRdbnam_;
public String sqldSchema_;
public int[] sqlPrecision_;
public int[] sqlScale_;
public long[] sqlLength_;
public int[] sqlType_;
public int[] sqlCcsid_;
public String[] sqlName_;
public String[] sqlLabel_;
public short[] sqlUnnamed_;
public String[] sqlComment_;
public String[] sqlUDTname_;
public String[] sqlUDTclassName_;
public short[] sqlxKeymem_;
public short[] sqlxGenerated_;
public short[] sqlxParmmode_;
public String[] sqlxCorname_;
public String[] sqlxName_;
public String[] sqlxBasename_;
public int[] sqlxUpdatable_;
public String[] sqlxSchema_;
public String[] sqlxRdbnam_;
public transient int[][] protocolTypesCache_;
public transient java.util.Hashtable protocolTypeToOverrideLidMapping_;
public transient java.util.ArrayList mddOverrideArray_;
public transient int[] types_;
public transient int[] clientParamtertype_;
public transient LogWriter logWriter_;
public transient int resultSetConcurrency_;
private transient java.util.Hashtable columnNameToIndexCache_;
private transient boolean statementClosed_;
void markClosed();
void checkForClosedStatement() throws SqlException;
public void ColumnMetaData(LogWriter);
public void ColumnMetaData(LogWriter, int);
public void initializeCache(int);
public int getColumnCount() throws java.sql.SQLException;
public boolean isAutoIncrement(int) throws java.sql.SQLException;
public boolean isCaseSensitive(int) throws java.sql.SQLException;
public boolean isSearchable(int) throws java.sql.SQLException;
public boolean isCurrency(int) throws java.sql.SQLException;
public int isNullable(int) throws java.sql.SQLException;
public boolean isSigned(int) throws java.sql.SQLException;
public int getColumnDisplaySize(int) throws java.sql.SQLException;
public String getColumnLabel(int) throws java.sql.SQLException;
public String getColumnName(int) throws java.sql.SQLException;
public String getSchemaName(int) throws java.sql.SQLException;
public int getPrecision(int) throws java.sql.SQLException;
public int getScale(int) throws java.sql.SQLException;
public String getTableName(int) throws java.sql.SQLException;
public String getCatalogName(int) throws java.sql.SQLException;
public int getColumnType(int) throws java.sql.SQLException;
public String getColumnTypeName(int) throws java.sql.SQLException;
public boolean isReadOnly(int) throws java.sql.SQLException;
public boolean isWritable(int) throws java.sql.SQLException;
public boolean isDefinitelyWritable(int) throws java.sql.SQLException;
public String getColumnClassName(int) throws java.sql.SQLException;
void checkForValidColumnIndex(int) throws SqlException;
private boolean isParameterModeGuessedAsAnInput(int);
public boolean isParameterModeGuessedAsOutput(int);
private void setParmModeForInputParameter(int);
private void setParmModeForOutputParameter(int);
private boolean isCompatibleDriverTypes(int, int);
private int getInternalTypeForGuessedOrRegisteredJdbcType(int) throws SqlException;
public void setLogWriter(LogWriter);
private void nullDataForGC();
public boolean hasLobColumns();
int findColumnX(String) throws SqlException;
void assignColumnName(int);
public boolean columnIsNotInUnicode(int);
}
org/apache/derby/client/am/ColumnMetaData40.class
package org.apache.derby.client.am;
public synchronized class ColumnMetaData40 extends ColumnMetaData {
public void ColumnMetaData40(LogWriter);
public void ColumnMetaData40(LogWriter, int);
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
}
org/apache/derby/client/am/ColumnTypeConversionException.class
package org.apache.derby.client.am;
synchronized class ColumnTypeConversionException extends SqlException {
void ColumnTypeConversionException(LogWriter, String, String);
}
org/apache/derby/client/am/Configuration$1.class
package org.apache.derby.client.am;
final synchronized class Configuration$1 implements java.security.PrivilegedExceptionAction {
void Configuration$1();
public Object run() throws java.io.IOException;
}
org/apache/derby/client/am/Configuration.class
package org.apache.derby.client.am;
public synchronized class Configuration {
public static int traceFileSuffixIndex__;
public static int traceLevel__;
public static String traceFile__;
public static String traceDirectory__;
public static boolean traceFileAppend__;
public static final String jreLevel;
public static final int jreLevelMajor;
public static final int jreLevelMinor;
public static boolean traceSuspended__;
public static boolean[] enableConnectivityToTargetServer__;
public static boolean jvmSupportsMicrosClock__;
private static org.apache.derby.iapi.services.info.ProductVersionHolder dncProductVersionHolder__;
public static final String dncDriverName = Apache Derby Network Client JDBC Driver;
public static final byte[] dncPackageConsistencyToken;
public static final String dncPackageVersion;
public static final boolean jdbcCompliant = 1;
public static final String[] dncCompatibleJREVersions;
public static final String jdbcDerbyNETProtocol = jdbc:derby://;
public static final boolean enableNetConnectionPooling = 1;
static final boolean rangeCheckCrossConverters = 1;
static final int bugCheckLevel = 255;
public static final int defaultIsolation = 2;
public static final int defaultFetchSize = 64;
public static final String cursorAttribute_SensitiveStatic = SENSITIVE STATIC SCROLL ;
public static final String cursorAttribute_SensitiveStaticRowset = SENSITIVE STATIC SCROLL ;
public static final String cursorAttribute_SensitiveDynamic = SENSITIVE DYNAMIC SCROLL ;
public static final String cursorAttribute_SensitiveDynamicRowset = SENSITIVE DYNAMIC SCROLL WITH ROWSET POSITIONING ;
public static final String cursorAttribute_Insensitive = INSENSITIVE SCROLL ;
public static final String cursorAttribute_InsensitiveRowset = INSENSITIVE SCROLL ;
public static final String cursorAttribute_ForUpdate = FOR UPDATE ;
public static final String cursorAttribute_ForReadOnly = FOR READ ONLY ;
public static final String cursorAttribute_WithHold = WITH HOLD ;
private static final String packageNameForDNC = org.apache.derby.client;
public static SqlException exceptionsOnLoadResources;
private void Configuration();
public static org.apache.derby.iapi.services.info.ProductVersionHolder getProductVersionHolder();
private static void loadProductVersionHolder() throws SqlException;
private static org.apache.derby.iapi.services.info.ProductVersionHolder buildProductVersionHolder() throws java.security.PrivilegedActionExceptio
n, java.io.IOException;
public static boolean supportsJDBC40();
static void ();
}
org/apache/derby/client/am/Connection.class
package org.apache.derby.client.am;
public abstract synchronized class Connection implements java.sql.Connection, ConnectionCallbackInterface {
public Agent agent_;
public DatabaseMetaData databaseMetaData_;
final java.util.WeakHashMap openStatements_;
final java.util.WeakHashMap CommitAndRollbackListeners_;
private SqlWarning warnings_;
private static final int INVALID_LOCATOR = -1;
protected final String user_;
public boolean retrieveMessageText_;
protected boolean jdbcReadOnly_;
private int holdability;
public String databaseName_;
public String productID_;
protected EncryptionManager encryptionManager_;
private Statement setTransactionIsolationStmt;
private Statement getTransactionIsolationStmt;
protected boolean open_;
private boolean aborting_;
private boolean availableForReuse_;
private static final int TRANSACTION_UNKNOWN = -1;
private int isolation_;
private int defaultIsolation;
private String currentSchemaName_;
public boolean autoCommit_;
protected boolean inUnitOfWork_;
private boolean accumulated440ForMessageProcFailure_;
private boolean accumulated444ForMessageProcFailure_;
private int transactionID_;
protected boolean isXAConnection_;
public static final int XA_T0_NOT_ASSOCIATED = 0;
public static final int XA_T1_ASSOCIATED = 1;
private int xaState_;
public int xaHostVersion_;
public int loginTimeout_;
public org.apache.derby.jdbc.ClientBaseDataSource dataSource_;
public String serverNameIP_;
public int portNumber_;
public int clientSSLMode_;
java.util.Hashtable clientCursorNameCache_;
public int commBufferSize_;
public boolean resetConnectionAtFirstSql_;
private static String DERBY_TRANSACTION_REPEATABLE_READ;
private static String DERBY_TRANSACTION_SERIALIZABLE;
private static String DERBY_TRANSACTION_READ_COMMITTED;
private static String DERBY_TRANSACTION_READ_UNCOMMITTED;
public int dncGeneratedSavepointId_;
public static final String dncGeneratedSavepointNamePrefix__ = DNC_GENENERATED_NAME_;
private CallableLocatorProcedures lobProcs;
protected void Connection(LogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource) throws SqlException;
protected void Connection(LogWriter, String, String, boolean, org.apache.derby.jdbc.ClientBaseDataSource) throws SqlException;
protected void initConnection(LogWriter, org.apache.derby.jdbc.ClientBaseDataSource) throws SqlException;
protected void Connection(LogWriter, boolean, org.apache.derby.jdbc.ClientBaseDataSource) throws SqlException;
protected void resetConnection(LogWriter) throws SqlException;
protected void Connection(LogWriter, int, String, int, String, java.util.Properties) throws SqlException;
protected void finalize() throws Throwable;
public synchronized java.sql.Statement createStatement() throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String) throws java.sql.SQLException;
public synchronized PreparedStatement preparePositionedUpdateStatement(String, Section) throws SqlException;
public synchronized java.sql.CallableStatement prepareCall(String) throws java.sql.SQLException;
synchronized PreparedStatement prepareDynamicCatalogQuery(String) throws SqlException;
public String nativeSQL(String) throws java.sql.SQLException;
public synchronized String nativeSQLX(String) throws SqlException;
protected abstract boolean allowLocalCommitRollback_() throws SqlException;
public synchronized void setAutoCommit(boolean) throws java.sql.SQLException;
public boolean getAutoCommit() throws java.sql.SQLException;
public synchronized void commit() throws java.sql.SQLException;
private void checkForInvalidXAStateOnCommitOrRollback() throws SqlException;
public void flowCommit() throws SqlException;
public boolean flowAutoCommit() throws SqlException;
public boolean willAutoCommitGenerateFlow() throws SqlException;
void writeAutoCommit() throws SqlException;
public void writeCommit() throws SqlException;
void readAutoCommit() throws SqlException;
public void readCommit() throws SqlException;
public synchronized void rollback() throws java.sql.SQLException;
protected void flowRollback() throws SqlException;
public void writeRollback() throws SqlException;
public void readRollback() throws SqlException;
public synchronized void close() throws java.sql.SQLException;
void checkForTransactionInProgress() throws SqlException;
public boolean transactionInProgress();
public synchronized void closeX() throws java.sql.SQLException;
public synchronized void closeResources() throws java.sql.SQLException;
private void closeResourcesX() throws java.sql.SQLException;
protected abstract boolean isGlobalPending_();
public synchronized void closeForReuse(boolean) throws SqlException;
private void flowClose() throws SqlException;
protected abstract void markClosed_();
public void markClosed(boolean);
private void markClosedForReuse(boolean);
private void markStatementsClosed();
private void writeCloseStatements() throws SqlException;
private void readCloseStatements() throws SqlException;
public boolean isPhysicalConnClosed();
public boolean isClosed();
public boolean isClosedX();
public synchronized void setTransactionIsolation(int) throws java.sql.SQLException;
private void setTransactionIsolationX(int) throws SqlException;
protected abstract boolean supportsSessionDataCaching();
protected abstract boolean serverSupportsLocators();
protected abstract boolean serverSupportsTimestampNanoseconds();
public int getTransactionIsolation() throws java.sql.SQLException;
public int getTransactionIsolationX() throws java.sql.SQLException;
public int getTransactionID();
public String getCurrentSchemaName() throws java.sql.SQLException;
private int translateIsolation(String);
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException;
public synchronized void clearWarnings() throws java.sql.SQLException;
public void clearWarningsX() throws SqlException;
public java.sql.DatabaseMetaData getMetaData() throws java.sql.SQLException;
public synchronized void setReadOnly(boolean) throws java.sql.SQLException;
public boolean isReadOnly() throws java.sql.SQLException;
public synchronized void setCatalog(String) throws java.sql.SQLException;
public String getCatalog() throws java.sql.SQLException;
public synchronized java.sql.Statement createStatement(int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int) throws java.sql.SQLException;
public synchronized CallableStatement prepareMessageProc(String) throws SqlException;
private int downgradeResultSetType(int);
public java.util.Map getTypeMap() throws java.sql.SQLException;
public synchronized void setTypeMap(java.util.Map) throws java.sql.SQLException;
public synchronized void setHoldability(int) throws java.sql.SQLException;
public int getHoldability() throws java.sql.SQLException;
public synchronized java.sql.Savepoint setSavepoint() throws java.sql.SQLException;
public synchronized java.sql.Savepoint setSavepoint(String) throws java.sql.SQLException;
private Savepoint setSavepointX(Savepoint) throws java.sql.SQLException;
public synchronized void rollback(java.sql.Savepoint) throws java.sql.SQLException;
public synchronized void releaseSavepoint(java.sql.Savepoint) throws java.sql.SQLException;
public synchronized java.sql.Statement createStatement(int, int, int) throws java.sql.SQLException;
private Statement createStatementX(int, int, int) throws SqlException;
protected void resetStatement(Statement) throws SqlException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int, int) throws java.sql.SQLException;
PreparedStatement prepareStatementX(String, int, int, int, int, String[], int[]) throws SqlException;
protected void resetPrepareStatement(PreparedStatement) throws SqlException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int, int) throws java.sql.SQLException;
CallableStatement prepareCallX(String, int, int, int) throws SqlException;
protected void resetPrepareCall(CallableStatement) throws SqlException;
public java.sql.PreparedStatement prepareStatement(String, int) throws java.sql.SQLException;
public java.sql.PreparedStatement prepareStatement(String, int[]) throws java.sql.SQLException;
public java.sql.PreparedStatement prepareStatement(String, String[]) throws java.sql.SQLException;
protected abstract boolean allowCloseInUOW_();
protected abstract boolean doCloseStatementsOnClose_();
public abstract SectionManager newSectionManager(String, Agent, String);
protected abstract Agent newAgent_(LogWriter, int, String, int, int) throws SqlException;
protected abstract DatabaseMetaData newDatabaseMetaData_();
protected abstract Statement newStatement_(int, int, int) throws SqlException;
protected abstract void resetStatement_(Statement, int, int, int) throws SqlException;
protected abstract PreparedStatement newPositionedUpdatePreparedStatement_(String, Section) throws SqlException;
protected abstract PreparedStatement newPreparedStatement_(String, int, int, int, int, String[], int[]) throws SqlException;
protected abstract void resetPreparedStatement_(PreparedStatement, String, int, int, int, int, String[], int[]) throws SqlException;
protected abstract CallableStatement newCallableStatement_(String, int, int, int) throws SqlException;
protected abstract void resetCallableStatement_(CallableStatement, String, int, int, int) throws SqlException;
public void completeConnect() throws SqlException;
public abstract void writeCommitSubstitute_() throws SqlException;
public abstract void readCommitSubstitute_() throws SqlException;
public abstract void writeLocalXAStart_() throws SqlException;
public abstract void readLocalXAStart_() throws SqlException;
public abstract void writeLocalXACommit_() throws SqlException;
protected abstract void writeXACommit_() throws SqlException;
public abstract void readLocalXACommit_() throws SqlException;
protected abstract void readXACommit_() throws SqlException;
public abstract void writeLocalCommit_() throws SqlException;
public abstract void readLocalCommit_() throws SqlException;
protected abstract void writeXATransactionStart(Statement) throws SqlException;
public void completeLocalCommit();
public abstract void writeLocalRollback_() throws SqlException;
public abstract void readLocalRollback_() throws SqlException;
public void completeLocalRollback();
public void completeSpecificRollback(UnitOfWorkListener);
public abstract void writeLocalXARollback_() throws SqlException;
protected abstract void writeXARollback_() throws SqlException;
public abstract void readLocalXARollback_() throws SqlException;
protected abstract void readXARollback_() throws SqlException;
public void writeTransactionStart(Statement) throws SqlException;
public void readTransactionStart() throws SqlException;
void completeTransactionStart();
public void completeAbnormalUnitOfWork();
public void completeAbnormalUnitOfWork(UnitOfWorkListener);
public void completeChainBreakingDisconnect();
public void completeSqlca(Sqlca);
public void completePiggyBackIsolation(int);
public void completeInitialPiggyBackIsolation(int);
public void completePiggyBackSchema(String);
public void completeInitialPiggyBackSchema(String);
public abstract void addSpecialRegisters(String);
public synchronized void reset(LogWriter) throws SqlException;
public synchronized void lightReset() throws SqlException;
protected abstract void reset_(LogWriter) throws SqlException;
protected void completeReset(boolean, boolean, org.apache.derby.client.net.NetXAResource) throws SqlException;
CallableLocatorProcedures locatorProcedureCall();
protected void checkForClosedConnection() throws SqlException;
public boolean isXAConnection();
public int getXAState();
public void setXAState(int);
public void accumulateWarning(SqlWarning);
public void accumulate440WarningForMessageProcFailure(SqlWarning);
public void accumulate444WarningForMessageProcFailure(SqlWarning);
public int getServerVersion();
final int holdability();
public java.sql.Clob createClob() throws java.sql.SQLException;
public java.sql.Blob createBlob() throws java.sql.SQLException;
public boolean isAborting();
protected void beginAborting();
public String getSchema() throws java.sql.SQLException;
public void setSchema(String) throws java.sql.SQLException;
static void ();
}
org/apache/derby/client/am/ConnectionCallbackInterface.class
package org.apache.derby.client.am;
public abstract interface ConnectionCallbackInterface {
public abstract void completeLocalCommit();
public abstract void completeLocalRollback();
public abstract void completeAbnormalUnitOfWork();
public abstract void completeChainBreakingDisconnect();
public abstract void completeSqlca(Sqlca);
public abstract void completeAbnormalUnitOfWork(UnitOfWorkListener);
public abstract void completePiggyBackIsolation(int);
public abstract void completePiggyBackSchema(String);
}
org/apache/derby/client/am/CrossConverters.class
package org.apache.derby.client.am;
final synchronized class CrossConverters {
public static final int UNKNOWN_LENGTH = -2147483648;
private static final java.math.BigDecimal bdMaxByteValue__;
private static final java.math.BigDecimal bdMinByteValue__;
private static final java.math.BigDecimal bdMaxShortValue__;
private static final java.math.BigDecimal bdMinShortValue__;
private static final java.math.BigDecimal bdMaxIntValue__;
private static final java.math.BigDecimal bdMinIntValue__;
private static final java.math.BigDecimal bdMaxLongValue__;
private static final java.math.BigDecimal bdMinLongValue__;
private static final java.math.BigDecimal bdMaxFloatValue__;
private static final java.math.BigDecimal bdMinFloatValue__;
private static final java.math.BigDecimal bdMaxDoubleValue__;
private static final java.math.BigDecimal bdMinDoubleValue__;
private static final java.math.BigDecimal bdZero__;
private static final java.math.BigDecimal bdOne__;
Agent agent_;
void CrossConverters(Agent);
final Object setObject(int, boolean) throws SqlException;
final Object setObject(int, byte) throws SqlException;
final Object setObject(int, short) throws SqlException;
final Object setObject(int, int) throws SqlException;
final boolean setBooleanFromObject(Object, int) throws SqlException;
final byte setByteFromObject(Object, int) throws SqlException;
final Object setObject(int, long) throws SqlException;
final Object setObject(int, float) throws SqlException;
final Object setObject(int, double) throws SqlException;
final Object setObject(int, java.math.BigDecimal) throws SqlException;
final Object setObject(int, java.sql.Date) throws SqlException;
final Object setObject(int, java.sql.Time) throws SqlException;
final Object setObject(int, java.sql.Timestamp) throws SqlException;
final Object setObject(int, String) throws SqlException;
public static int getInputJdbcType(int);
final Object setObject(int, byte[]) throws SqlException;
final Object setObject(int, java.io.Reader, int) throws SqlException;
private final String setStringFromReader(java.io.Reader, int) throws SqlException;
final Object setObjectFromCharacterStream(int, java.io.InputStream, String, int) throws SqlException;
private final String setStringFromStream(java.io.InputStream, String, int) throws SqlException;
final Object setObject(int, java.sql.Blob) throws SqlException;
final Object setObjectFromBinaryStream(int, java.io.InputStream, int) throws SqlException;
private final byte[] setBytesFromStream(java.io.InputStream, int) throws SqlException;
final Object setObject(int, java.sql.Clob) throws SqlException;
final Object setObject(int, Object) throws SqlException;
final boolean getBooleanFromByte(byte) throws SqlException;
final boolean getBooleanFromShort(short) throws SqlException;
final boolean getBooleanFromInt(int) throws SqlException;
final boolean getBooleanFromLong(long) throws SqlException;
final boolean getBooleanFromFloat(float) throws SqlException;
final boolean getBooleanFromDouble(double) throws SqlException;
final boolean getBooleanFromBigDecimal(java.math.BigDecimal) throws SqlException;
final boolean getBooleanFromString(String);
final byte getByteFromShort(short) throws SqlException;
final byte getByteFromInt(int) throws SqlException;
final byte getByteFromLong(long) throws SqlException;
final byte getByteFromFloat(float) throws SqlException;
final byte getByteFromDouble(double) throws SqlException;
final byte getByteFromBigDecimal(java.math.BigDecimal) throws SqlException;
final byte getByteFromBoolean(boolean) throws SqlException;
final byte getByteFromString(String) throws SqlException;
final short getShortFromInt(int) throws SqlException;
final short getShortFromLong(long) throws SqlException;
final short getShortFromFloat(float) throws SqlException;
final short getShortFromDouble(double) throws SqlException;
final short getShortFromBigDecimal(java.math.BigDecimal) throws SqlException;
final short getShortFromBoolean(boolean) throws SqlException;
final short getShortFromString(String) throws SqlException;
final int getIntFromLong(long) throws SqlException;
final int getIntFromFloat(float) throws SqlException;
final int getIntFromDouble(double) throws SqlException;
final int getIntFromBigDecimal(java.math.BigDecimal) throws SqlException;
final int getIntFromBoolean(boolean) throws SqlException;
final int getIntFromString(String) throws SqlException;
final long getLongFromFloat(float) throws SqlException;
final long getLongFromDouble(double) throws SqlException;
final long getLongFromBigDecimal(java.math.BigDecimal) throws SqlException;
final long getLongFromBoolean(boolean) throws SqlException;
final long getLongFromString(String) throws SqlException;
final float getFloatFromDouble(double) throws SqlException;
final float getFloatFromBigDecimal(java.math.BigDecimal) throws SqlException;
final float getFloatFromBoolean(boolean) throws SqlException;
final float getFloatFromString(String) throws SqlException;
final double getDoubleFromBigDecimal(java.math.BigDecimal) throws SqlException;
final double getDoubleFromBoolean(boolean) throws SqlException;
final double getDoubleFromString(String) throws SqlException;
final java.math.BigDecimal getBigDecimalFromBoolean(boolean) throws SqlException;
final java.math.BigDecimal getBigDecimalFromString(String) throws SqlException;
final String getStringFromBoolean(boolean) throws SqlException;
final String getStringFromBytes(byte[]) throws SqlException;
final java.sql.Date getDateFromString(String, java.util.Calendar) throws SqlException;
final java.sql.Date getDateFromTime(java.sql.Time) throws SqlException;
final java.sql.Date getDateFromTimestamp(java.sql.Timestamp) throws SqlException;
final java.sql.Time getTimeFromString(String, java.util.Calendar) throws SqlException;
final java.sql.Time getTimeFromTimestamp(java.sql.Timestamp) throws SqlException;
final java.sql.Timestamp getTimestampFromString(String, java.util.Calendar) throws SqlException;
final java.sql.Timestamp getTimestampFromTime(java.sql.Time) throws SqlException;
final java.sql.Timestamp getTimestampFromDate(java.sql.Date) throws SqlException;
final java.sql.Date date_valueOf(String, java.util.Calendar);
private static void initDatePortion(java.util.Calendar, String);
private static int digit(char);
final java.sql.Time time_valueOf(String, java.util.Calendar);
private void initTimePortion(java.util.Calendar, String);
final java.sql.Timestamp timestamp_valueOf(String, java.util.Calendar);
private final byte parseByte(String) throws NumberFormatException;
private final short parseShort(String) throws NumberFormatException;
private final int parseInt(String) throws NumberFormatException;
private final long parseLong(String) throws NumberFormatException;
private final void skipPadding(String, int, int) throws NumberFormatException;
static void ();
}
org/apache/derby/client/am/Cursor.class
package org.apache.derby.client.am;
public abstract synchronized class Cursor {
protected Agent agent_;
public static final int STRING = 0;
public static final int VARIABLE_STRING = 2;
public static final int VARIABLE_SHORT_STRING = 1;
public static final int NULL_TERMINATED_STRING = 3;
public static final int BYTES = 4;
public static final int VARIABLE_BYTES = 5;
public static final int VARIABLE_SHORT_BYTES = 6;
public static final int NULL_TERMINATED_BYTES = 7;
public static final int SBCS_CLOB = 8;
public static final int MBCS_CLOB = 9;
public static final int DBCS_CLOB = 10;
public byte[] dataBuffer_;
public java.io.ByteArrayOutputStream dataBufferStream_;
public int position_;
public int lastValidBytePosition_;
public boolean hasLobs_;
protected int currentRowPosition_;
private int nextRowPosition_;
protected int[] columnDataPosition_;
protected int[] columnDataComputedLength_;
private boolean allRowsReceivedFromServer_;
int rowsRead_;
int maxFieldSize_;
protected java.util.ArrayList columnDataPositionCache_;
protected java.util.ArrayList columnDataLengthCache_;
protected java.util.ArrayList columnDataIsNullCache_;
public java.util.ArrayList isUpdateDeleteHoleCache_;
public boolean isUpdateDeleteHole_;
private boolean isRowUpdated_;
public static final Boolean ROW_IS_NULL;
public static final Boolean ROW_IS_NOT_NULL;
java.util.Calendar recyclableCalendar_;
public int[] jdbcTypes_;
public int columns_;
public boolean[] nullable_;
public String[] charsetName_;
public boolean[] isNull_;
public int[] fdocaLength_;
public int[] ccsid_;
char[] charBuffer_;
public void Cursor(Agent);
public void Cursor(Agent, byte[]);
public void setNumberOfColumns(int);
protected boolean stepNext(boolean) throws SqlException;
public boolean next() throws SqlException;
public void setAllRowsReceivedFromServer(boolean);
public final boolean allRowsReceivedFromServer();
public final boolean currentRowPositionIsEqualToNextRowPosition();
public final void resetDataBuffer();
public final boolean dataBufferHasUnprocessedData();
protected abstract boolean calculateColumnOffsetsForRow_(int, boolean) throws SqlException, DisconnectException;
protected abstract void clearLobData_();
protected abstract void getMoreData_() throws SqlException;
public final void setBuffer(byte[]);
public final void setIsUpdataDeleteHole(int, boolean);
public final void setIsRowUpdated(boolean);
public final boolean getIsRowUpdated();
public final boolean getIsUpdateDeleteHole();
final int getPosition();
final void setPosition(int);
public final void markCurrentRowPosition();
public final void markNextRowPosition();
public final void makeNextRowPositionCurrent();
final void repositionCursorToCurrentRow();
final void repositionCursorToNextRow();
public final byte[] getDataBuffer();
public final int getDataBufferLength();
public final int getLastValidBytePosition();
public final void incrementRowsReadEvent();
private final boolean get_BOOLEAN(int);
private final short get_SMALLINT(int);
protected final int get_INTEGER(int);
private final long get_BIGINT(int);
private final float get_FLOAT(int);
private final double get_DOUBLE(int);
private final java.math.BigDecimal get_DECIMAL(int) throws SqlException;
private final double getDoubleFromDECIMAL(int) throws SqlException;
private final long getLongFromDECIMAL(int) throws SqlException;
private final String getVARCHAR(int) throws SqlException;
private final String getCHAR(int) throws SqlException;
private final java.sql.Date getDATE(int, java.util.Calendar) throws SqlException;
private final java.sql.Time getTIME(int, java.util.Calendar) throws SqlException;
private final java.sql.Timestamp getTIMESTAMP(int, java.util.Calendar) throws SqlException;
private final java.sql.Timestamp getTimestampFromDATE(int, java.util.Calendar) throws SqlException;
private final java.sql.Timestamp getTimestampFromTIME(int, java.util.Calendar) throws SqlException;
private final java.sql.Date getDateFromTIMESTAMP(int, java.util.Calendar) throws SqlException;
private final java.sql.Time getTimeFromTIMESTAMP(int, java.util.Calendar) throws SqlException;
private final String getStringFromDATE(int) throws SqlException;
private final String getStringFromTIME(int) throws SqlException;
private final String getStringFromTIMESTAMP(int) throws SqlException;
private final byte[] get_CHAR_FOR_BIT_DATA(int) throws SqlException;
private final byte[] get_VARCHAR_FOR_BIT_DATA(int) throws SqlException;
private final Object get_UDT(int) throws SqlException;
private java.util.Calendar getRecyclableCalendar();
CallableLocatorProcedures getLocatorProcedures();
protected abstract int locator(int);
public abstract Blob getBlobColumn_(int, Agent, boolean) throws SqlException;
public abstract Clob getClobColumn_(int, Agent, boolean) throws SqlException;
public abstract byte[] getClobBytes_(int, int[]) throws SqlException;
final boolean getBoolean(int) throws SqlException;
final byte getByte(int) throws SqlException;
final short getShort(int) throws SqlException;
final int getInt(int) throws SqlException;
final long getLong(int) throws SqlException;
final float getFloat(int) throws SqlException;
final double getDouble(int) throws SqlException;
final java.math.BigDecimal getBigDecimal(int) throws SqlException;
final java.sql.Date getDate(int, java.util.Calendar) throws SqlException;
final java.sql.Time getTime(int, java.util.Calendar) throws SqlException;
final java.sql.Timestamp getTimestamp(int, java.util.Calendar) throws SqlException;
final String getString(int) throws SqlException;
final byte[] getBytes(int) throws SqlException;
public final java.io.InputStream getBinaryStream(int) throws SqlException;
public final java.io.InputStream getAsciiStream(int) throws SqlException;
public final java.io.InputStream getUnicodeStream(int) throws SqlException;
public final java.io.Reader getCharacterStream(int) throws SqlException;
public final java.sql.Blob getBlob(int) throws SqlException;
public final java.sql.Clob getClob(int) throws SqlException;
public final java.sql.Array getArray(int) throws SqlException;
public final java.sql.Ref getRef(int) throws SqlException;
public final Object getObject(int) throws SqlException;
public final void allocateCharBuffer();
private final String getStringWithoutConvert(int, int);
private ColumnTypeConversionException coercionError(String, int);
public void nullDataForGC();
private final int getColumnPrecision(int);
private final int getColumnScale(int);
final byte[] getBytesFromVARCHAR(int) throws SqlException;
static void ();
}
org/apache/derby/client/am/DatabaseMetaData.class
package org.apache.derby.client.am;
public abstract synchronized class DatabaseMetaData implements java.sql.DatabaseMetaData {
private static final short SQL_BEST_ROWID = 1;
private static final short SQL_ROWVER = 2;
private static final short SQL_INDEX_UNIQUE = 0;
private static final short SQL_INDEX_ALL = 1;
protected Agent agent_;
protected Connection connection_;
private static final int numberOfMetaDataInfoMethods__ = 108;
private Object[] metaDataInfoCache_;
private boolean metaDataInfoIsCached_;
public ProductLevel productLevel_;
private final int serverJdbcMajorVersion;
private final int serverJdbcMinorVersion;
public boolean useServerXAState_;
private boolean supportsQryclsimp_;
private boolean supportsLayerBStreaming_;
private boolean supportsSessionDataCaching_;
private boolean supportsUDTs_;
private boolean supportsEXTDTAAbort_;
private boolean supportsTimestampNanoseconds_;
private boolean supportsBooleanValues_;
private boolean supportsBooleanParameterTransport_;
private static final int allProceduresAreCallable__ = 0;
private static final int allTablesAreSelectable__ = 1;
private static final int nullsAreSortedHigh__ = 2;
private static final int nullsAreSortedLow__ = 3;
private static final int nullsAreSortedAtStart__ = 4;
private static final int nullsAreSortedAtEnd__ = 5;
private static final int usesLocalFiles__ = 6;
private static final int usesLocalFilePerTable__ = 7;
private static final int storesUpperCaseIdentifiers__ = 8;
private static final int storesLowerCaseIdentifiers__ = 9;
private static final int storesMixedCaseIdentifiers__ = 10;
private static final int storesUpperCaseQuotedIdentifiers__ = 11;
private static final int storesLowerCaseQuotedIdentifiers__ = 12;
private static final int storesMixedCaseQuotedIdentifiers__ = 13;
private static final int getSQLKeywords__ = 14;
private static final int getNumericFunctions__ = 15;
private static final int getStringFunctions__ = 16;
private static final int getSystemFunctions__ = 17;
private static final int getTimeDateFunctions__ = 18;
private static final int getSearchStringEscape__ = 19;
private static final int getExtraNameCharacters__ = 20;
private static final int supportsAlterTableWithAddColumn__ = 21;
private static final int supportsAlterTableWithDropColumn__ = 22;
private static final int supportsConvert__ = 23;
private static final int supportsConvertType__ = 24;
private static final int supportsDifferentTableCorrelationNames__ = 25;
private static final int supportsExpressionsInOrderBy__ = 26;
private static final int supportsOrderByUnrelated__ = 27;
private static final int supportsGroupBy__ = 28;
private static final int supportsGroupByUnrelated__ = 29;
private static final int supportsGroupByBeyondSelect__ = 30;
private static final int supportsMultipleResultSets__ = 31;
private static final int supportsMultipleTransactions__ = 32;
private static final int supportsCoreSQLGrammar__ = 33;
private static final int supportsExtendedSQLGrammar__ = 34;
private static final int supportsANSI92IntermediateSQL__ = 35;
private static final int supportsANSI92FullSQL__ = 36;
private static final int supportsIntegrityEnhancementFacility__ = 37;
private static final int supportsOuterJoins__ = 38;
private static final int supportsFullOuterJoins__ = 39;
private static final int supportsLimitedOuterJoins__ = 40;
private static final int getSchemaTerm__ = 41;
private static final int getProcedureTerm__ = 42;
private static final int getCatalogTerm__ = 43;
private static final int isCatalogAtStart__ = 44;
private static final int getCatalogSeparator__ = 45;
private static final int supportsSchemasInDataManipulation__ = 46;
private static final int supportsSchemasInProcedureCalls__ = 47;
private static final int supportsSchemasInTableDefinitions__ = 48;
private static final int supportsSchemasInIndexDefinitions__ = 49;
private static final int supportsSchemasInPrivilegeDefinitions__ = 50;
private static final int supportsCatalogsInDataManipulation__ = 51;
private static final int supportsCatalogsInProcedureCalls__ = 52;
private static final int supportsCatalogsInTableDefinitions__ = 53;
private static final int supportsCatalogsInIndexDefinitions__ = 54;
private static final int supportsCatalogsInPrivilegeDefinitions__ = 55;
private static final int supportsPositionedDelete__ = 56;
private static final int supportsPositionedUpdate__ = 57;
private static final int supportsSelectForUpdate__ = 58;
private static final int supportsStoredProcedures__ = 59;
private static final int supportsSubqueriesInComparisons__ = 60;
private static final int supportsUnion__ = 61;
private static final int supportsUnionAll__ = 62;
private static final int supportsOpenCursorsAcrossCommit__ = 63;
private static final int supportsOpenCursorsAcrossRollback__ = 64;
private static final int supportsOpenStatementsAcrossCommit__ = 65;
private static final int supportsOpenStatementsAcrossRollback__ = 66;
private static final int getMaxBinaryLiteralLength__ = 67;
private static final int getMaxCharLiteralLength__ = 68;
private static final int getMaxColumnNameLength__ = 69;
private static final int getMaxColumnsInGroupBy__ = 70;
private static final int getMaxColumnsInIndex__ = 71;
private static final int getMaxColumnsInOrderBy__ = 72;
private static final int getMaxColumnsInSelect__ = 73;
private static final int getMaxColumnsInTable__ = 74;
private static final int getMaxConnections__ = 75;
private static final int getMaxCursorNameLength__ = 76;
private static final int getMaxIndexLength__ = 77;
private static final int getMaxSchemaNameLength__ = 78;
private static final int getMaxProcedureNameLength__ = 79;
private static final int getMaxCatalogNameLength__ = 80;
private static final int getMaxRowSize__ = 81;
private static final int doesMaxRowSizeIncludeBlobs__ = 82;
private static final int getMaxStatementLength__ = 83;
private static final int getMaxStatements__ = 84;
private static final int getMaxTableNameLength__ = 85;
private static final int getMaxTablesInSelect__ = 86;
private static final int getMaxUserNameLength__ = 87;
private static final int getDefaultTransactionIsolation__ = 88;
private static final int supportsTransactions__ = 89;
private static final int supportsTransactionIsolationLevel__ = 90;
private static final int supportsDataDefinitionAndDataManipulationTransactions__ = 91;
private static final int supportsDataManipulationTransactionsOnly__ = 92;
private static final int dataDefinitionCausesTransactionCommit__ = 93;
private static final int dataDefinitionIgnoredInTransactions__ = 94;
private static final int supportsResultSetType__ = 95;
private static final int supportsResultSetConcurrency__ = 96;
private static final int ownUpdatesAreVisible__ = 97;
private static final int ownDeletesAreVisible__ = 98;
private static final int ownInsertsAreVisible__ = 99;
private static final int othersUpdatesAreVisible__ = 100;
private static final int othersDeletesAreVisible__ = 101;
private static final int othersInsertsAreVisible__ = 102;
private static final int updatesAreDetected__ = 103;
private static final int deletesAreDetected__ = 104;
private static final int insertsAreDetected__ = 105;
private static final int supportsBatchUpdates__ = 106;
protected void DatabaseMetaData(Agent, Connection, ProductLevel);
public boolean allProceduresAreCallable() throws java.sql.SQLException;
public boolean allTablesAreSelectable() throws java.sql.SQLException;
public boolean nullsAreSortedHigh() throws java.sql.SQLException;
public boolean nullsAreSortedLow() throws java.sql.SQLException;
public boolean nullsAreSortedAtStart() throws java.sql.SQLException;
public boolean nullsAreSortedAtEnd() throws java.sql.SQLException;
public boolean usesLocalFiles() throws java.sql.SQLException;
public boolean usesLocalFilePerTable() throws java.sql.SQLException;
public boolean storesUpperCaseIdentifiers() throws java.sql.SQLException;
public boolean storesLowerCaseIdentifiers() throws java.sql.SQLException;
public boolean storesMixedCaseIdentifiers() throws java.sql.SQLException;
public boolean storesUpperCaseQuotedIdentifiers() throws java.sql.SQLException;
public boolean storesLowerCaseQuotedIdentifiers() throws java.sql.SQLException;
public boolean storesMixedCaseQuotedIdentifiers() throws java.sql.SQLException;
public String getSQLKeywords() throws java.sql.SQLException;
public String getNumericFunctions() throws java.sql.SQLException;
public String getStringFunctions() throws java.sql.SQLException;
public String getSystemFunctions() throws java.sql.SQLException;
public String getTimeDateFunctions() throws java.sql.SQLException;
public String getSearchStringEscape() throws java.sql.SQLException;
public String getExtraNameCharacters() throws java.sql.SQLException;
public boolean supportsAlterTableWithAddColumn() throws java.sql.SQLException;
public boolean supportsAlterTableWithDropColumn() throws java.sql.SQLException;
public boolean supportsConvert() throws java.sql.SQLException;
public boolean supportsConvert(int, int) throws java.sql.SQLException;
public boolean supportsDifferentTableCorrelationNames() throws java.sql.SQLException;
public boolean supportsExpressionsInOrderBy() throws java.sql.SQLException;
public boolean supportsOrderByUnrelated() throws java.sql.SQLException;
public boolean supportsGroupBy() throws java.sql.SQLException;
public boolean supportsGroupByUnrelated() throws java.sql.SQLException;
public boolean supportsGroupByBeyondSelect() throws java.sql.SQLException;
public boolean supportsMultipleResultSets() throws java.sql.SQLException;
public boolean supportsMultipleTransactions() throws java.sql.SQLException;
public boolean supportsCoreSQLGrammar() throws java.sql.SQLException;
public boolean supportsExtendedSQLGrammar() throws java.sql.SQLException;
public boolean supportsANSI92IntermediateSQL() throws java.sql.SQLException;
public boolean supportsANSI92FullSQL() throws java.sql.SQLException;
public boolean supportsIntegrityEnhancementFacility() throws java.sql.SQLException;
public boolean supportsOuterJoins() throws java.sql.SQLException;
public boolean supportsFullOuterJoins() throws java.sql.SQLException;
public boolean supportsLimitedOuterJoins() throws java.sql.SQLException;
public String getSchemaTerm() throws java.sql.SQLException;
public String getProcedureTerm() throws java.sql.SQLException;
public String getCatalogTerm() throws java.sql.SQLException;
public boolean isCatalogAtStart() throws java.sql.SQLException;
public String getCatalogSeparator() throws java.sql.SQLException;
public boolean supportsSchemasInDataManipulation() throws java.sql.SQLException;
public boolean supportsSchemasInProcedureCalls() throws java.sql.SQLException;
public boolean supportsSchemasInTableDefinitions() throws java.sql.SQLException;
public boolean supportsSchemasInIndexDefinitions() throws java.sql.SQLException;
public boolean supportsSchemasInPrivilegeDefinitions() throws java.sql.SQLException;
public boolean supportsCatalogsInDataManipulation() throws java.sql.SQLException;
public boolean supportsCatalogsInProcedureCalls() throws java.sql.SQLException;
public boolean supportsCatalogsInTableDefinitions() throws java.sql.SQLException;
public boolean supportsCatalogsInIndexDefinitions() throws java.sql.SQLException;
public boolean supportsCatalogsInPrivilegeDefinitions() throws java.sql.SQLException;
public boolean supportsPositionedDelete() throws java.sql.SQLException;
public boolean supportsPositionedUpdate() throws java.sql.SQLException;
public boolean supportsSelectForUpdate() throws java.sql.SQLException;
public boolean supportsStoredProcedures() throws java.sql.SQLException;
public boolean supportsSubqueriesInComparisons() throws java.sql.SQLException;
public boolean supportsUnion() throws java.sql.SQLException;
public boolean supportsUnionAll() throws java.sql.SQLException;
public boolean supportsOpenCursorsAcrossCommit() throws java.sql.SQLException;
public boolean supportsOpenCursorsAcrossRollback() throws java.sql.SQLException;
public boolean supportsOpenStatementsAcrossCommit() throws java.sql.SQLException;
public boolean supportsOpenStatementsAcrossRollback() throws java.sql.SQLException;
public int getMaxBinaryLiteralLength() throws java.sql.SQLException;
public int getMaxCharLiteralLength() throws java.sql.SQLException;
public int getMaxColumnNameLength() throws java.sql.SQLException;
public int getMaxColumnsInGroupBy() throws java.sql.SQLException;
public int getMaxColumnsInIndex() throws java.sql.SQLException;
public int getMaxColumnsInOrderBy() throws java.sql.SQLException;
public int getMaxColumnsInSelect() throws java.sql.SQLException;
public int getMaxColumnsInTable() throws java.sql.SQLException;
public int getMaxConnections() throws java.sql.SQLException;
public int getMaxCursorNameLength() throws java.sql.SQLException;
public int getMaxIndexLength() throws java.sql.SQLException;
public int getMaxSchemaNameLength() throws java.sql.SQLException;
public int getMaxProcedureNameLength() throws java.sql.SQLException;
public int getMaxCatalogNameLength() throws java.sql.SQLException;
public int getMaxRowSize() throws java.sql.SQLException;
public boolean doesMaxRowSizeIncludeBlobs() throws java.sql.SQLException;
public int getMaxStatementLength() throws java.sql.SQLException;
public int getMaxStatements() throws java.sql.SQLException;
public int getMaxTableNameLength() throws java.sql.SQLException;
public int getMaxTablesInSelect() throws java.sql.SQLException;
public int getMaxUserNameLength() throws java.sql.SQLException;
public int getDefaultTransactionIsolation() throws java.sql.SQLException;
public boolean supportsTransactions() throws java.sql.SQLException;
public boolean supportsTransactionIsolationLevel(int) throws java.sql.SQLException;
public boolean supportsDataDefinitionAndDataManipulationTransactions() throws java.sql.SQLException;
public boolean supportsDataManipulationTransactionsOnly() throws java.sql.SQLException;
public boolean dataDefinitionCausesTransactionCommit() throws java.sql.SQLException;
public boolean dataDefinitionIgnoredInTransactions() throws java.sql.SQLException;
public boolean supportsResultSetType(int) throws java.sql.SQLException;
public boolean supportsResultSetConcurrency(int, int) throws java.sql.SQLException;
public boolean ownUpdatesAreVisible(int) throws java.sql.SQLException;
public boolean ownDeletesAreVisible(int) throws java.sql.SQLException;
public boolean ownInsertsAreVisible(int) throws java.sql.SQLException;
public boolean othersUpdatesAreVisible(int) throws java.sql.SQLException;
public boolean othersDeletesAreVisible(int) throws java.sql.SQLException;
public boolean othersInsertsAreVisible(int) throws java.sql.SQLException;
public boolean updatesAreDetected(int) throws java.sql.SQLException;
public boolean deletesAreDetected(int) throws java.sql.SQLException;
public boolean insertsAreDetected(int) throws java.sql.SQLException;
public boolean supportsBatchUpdates() throws java.sql.SQLException;
public boolean supportsSavepoints() throws java.sql.SQLException;
public abstract String getURL_() throws SqlException;
public String getURL() throws java.sql.SQLException;
public String getUserName() throws java.sql.SQLException;
public boolean isReadOnly() throws java.sql.SQLException;
public String getDatabaseProductName() throws java.sql.SQLException;
public String getDatabaseProductVersion() throws java.sql.SQLException;
public String getDriverName() throws java.sql.SQLException;
public String getDriverVersion() throws java.sql.SQLException;
public int getDriverMajorVersion();
public int getDriverMinorVersion();
public boolean supportsMixedCaseIdentifiers() throws java.sql.SQLException;
public boolean supportsMixedCaseQuotedIdentifiers() throws java.sql.SQLException;
public String getIdentifierQuoteString() throws java.sql.SQLException;
public boolean supportsColumnAliasing() throws java.sql.SQLException;
public boolean nullPlusNonNullIsNull() throws java.sql.SQLException;
public boolean supportsTableCorrelationNames() throws java.sql.SQLException;
public boolean supportsLikeEscapeClause() throws java.sql.SQLException;
public boolean supportsNonNullableColumns() throws java.sql.SQLException;
public boolean supportsMinimumSQLGrammar() throws java.sql.SQLException;
public boolean supportsANSI92EntryLevelSQL() throws java.sql.SQLException;
public boolean supportsSubqueriesInExists() throws java.sql.SQLException;
public boolean supportsSubqueriesInIns() throws java.sql.SQLException;
public boolean supportsSubqueriesInQuantifieds() throws java.sql.SQLException;
public boolean supportsCorrelatedSubqueries() throws java.sql.SQLException;
public java.sql.ResultSet getProcedures(String, String, String) throws java.sql.SQLException;
private ResultSet getProceduresX(String, String, String) throws SqlException;
public java.sql.ResultSet getProcedureColumns(String, String, String, String) throws java.sql.SQLException;
private ResultSet getProcedureColumnsX(String, String, String, String) throws SqlException;
public java.sql.ResultSet getFunctions(String, String, String) throws java.sql.SQLException;
private ResultSet getFunctionsX(String, String, String) throws SqlException;
public java.sql.ResultSet getFunctionColumns(String, String, String, String) throws java.sql.SQLException;
private ResultSet getFunctionColumnsX(String, String, String, String) throws SqlException;
public java.sql.ResultSet getTables(String, String, String, String[]) throws java.sql.SQLException;
private ResultSet getTablesX(String, String, String, String[]) throws SqlException;
public java.sql.ResultSet getSchemas() throws java.sql.SQLException;
private ResultSet getSchemasX() throws SqlException;
public java.sql.ResultSet getCatalogs() throws java.sql.SQLException;
private ResultSet getCatalogsX() throws SqlException;
public java.sql.ResultSet getTableTypes() throws java.sql.SQLException;
private ResultSet getTableTypesX() throws SqlException;
public java.sql.ResultSet getColumns(String, String, String, String) throws java.sql.SQLException;
private ResultSet getColumnsX(String, String, String, String) throws SqlException;
public java.sql.ResultSet getColumnPrivileges(String, String, String, String) throws java.sql.SQLException;
private ResultSet getColumnPrivilegesX(String, String, String, String) throws SqlException;
public java.sql.ResultSet getTablePrivileges(String, String, String) throws java.sql.SQLException;
private ResultSet getTablePrivilegesX(String, String, String) throws SqlException;
public java.sql.ResultSet getBestRowIdentifier(String, String, String, int, boolean) throws java.sql.SQLException;
private ResultSet getBestRowIdentifierX(String, String, String, int, boolean) throws SqlException;
public java.sql.ResultSet getVersionColumns(String, String, String) throws java.sql.SQLException;
private ResultSet getVersionColumnsX(String, String, String) throws SqlException;
public java.sql.ResultSet getPrimaryKeys(String, String, String) throws java.sql.SQLException;
private ResultSet getPrimaryKeysX(String, String, String) throws SqlException;
public java.sql.ResultSet getImportedKeys(String, String, String) throws java.sql.SQLException;
private ResultSet getImportedKeysX(String, String, String) throws SqlException;
public java.sql.ResultSet getExportedKeys(String, String, String) throws java.sql.SQLException;
private ResultSet getExportedKeysX(String, String, String) throws SqlException;
public java.sql.ResultSet getCrossReference(String, String, String, String, String, String) throws java.sql.SQLException;
private ResultSet getCrossReferenceX(String, String, String, String, String, String) throws SqlException;
public java.sql.ResultSet getTypeInfo() throws java.sql.SQLException;
private ResultSet getTypeInfoX() throws SqlException;
public java.sql.ResultSet getIndexInfo(String, String, String, boolean, boolean) throws java.sql.SQLException;
private ResultSet getIndexInfoX(String, String, String, boolean, boolean) throws SqlException;
public java.sql.ResultSet getUDTs(String, String, String, int[]) throws java.sql.SQLException;
private ResultSet getUDTsX(String, String, String, int[]) throws SqlException;
private String getOptions();
private ResultSet executeCatalogQuery(PreparedStatement) throws SqlException;
public java.sql.Connection getConnection() throws java.sql.SQLException;
public boolean supportsNamedParameters() throws java.sql.SQLException;
public boolean supportsMultipleOpenResults() throws java.sql.SQLException;
public boolean supportsGetGeneratedKeys() throws java.sql.SQLException;
public java.sql.ResultSet getSuperTypes(String, String, String) throws java.sql.SQLException;
private ResultSet getSuperTypesX() throws SqlException;
public java.sql.ResultSet getSuperTables(String, String, String) throws java.sql.SQLException;
private ResultSet getSuperTablesX() throws SqlException;
public java.sql.ResultSet getAttributes(String, String, String, String) throws java.sql.SQLException;
private ResultSet getAttributesX() throws SqlException;
public boolean supportsResultSetHoldability(int) throws java.sql.SQLException;
public int getResultSetHoldability() throws java.sql.SQLException;
public int getDatabaseMajorVersion() throws java.sql.SQLException;
public int getDatabaseMinorVersion() throws java.sql.SQLException;
public int getJDBCMajorVersion() throws java.sql.SQLException;
public int getJDBCMinorVersion() throws java.sql.SQLException;
public int getSQLStateType() throws java.sql.SQLException;
public boolean locatorsUpdateCopy() throws java.sql.SQLException;
public boolean supportsStatementPooling() throws java.sql.SQLException;
protected void computeFeatureSet_();
public final boolean serverSupportsQryclsimp();
public final boolean serverSupportsLayerBStreaming();
public final boolean serverSupportsSessionDataCaching();
public final boolean serverSupportsUDTs();
public final boolean serverSupportsTimestampNanoseconds();
public final boolean serverSupportsEXTDTAAbort();
public final boolean serverSupportsBooleanValues();
public final boolean serverSupportsBooleanParameterTransport();
private boolean getMetaDataInfoBoolean(int) throws java.sql.SQLException;
private int getMetaDataInfoInt(int) throws java.sql.SQLException;
private String getMetaDataInfoString(int) throws java.sql.SQLException;
private boolean getMetaDataInfoBooleanWithType(int, int) throws java.sql.SQLException;
private boolean getMetaDataInfoBooleanWithTypeClient(int, int) throws java.sql.SQLException;
private boolean getMetaDataInfoBooleanWithTypeServer(int, int) throws java.sql.SQLException;
private boolean getMetaDataInfoInt_SupportsResultSetConcurrency(int, int, int) throws java.sql.SQLException;
private boolean getMetaDataInfoBoolean_supportsConvert(int, int, int) throws java.sql.SQLException;
private void metaDataInfoCall() throws SqlException;
public final boolean supportsStoredFunctionsUsingCallSyntax() throws java.sql.SQLException;
public final boolean autoCommitFailureClosesAllResultSets() throws java.sql.SQLException;
public java.sql.ResultSet getSchemas(String, String) throws java.sql.SQLException;
private ResultSet getSchemasX(String, String) throws SqlException;
public java.sql.ResultSet getClientInfoProperties() throws java.sql.SQLException;
private ResultSet getClientInfoPropertiesX() throws SqlException;
public boolean generatedKeyAlwaysReturned();
public java.sql.ResultSet getPseudoColumns(String, String, String, String) throws java.sql.SQLException;
private ResultSet getPseudoColumnsX() throws SqlException;
private PreparedStatement prepareMetaDataQuery(String) throws SqlException;
protected void checkForClosedConnection() throws java.sql.SQLException;
private void checkForClosedConnectionX() throws SqlException;
protected void checkServerJdbcVersionX(String, int, int) throws SqlException;
}
org/apache/derby/client/am/DateTime.class
package org.apache.derby.client.am;
public synchronized class DateTime {
private static final int dateRepresentationLength = 10;
private static final int timeRepresentationLength = 8;
private static final int timestampRepresentationLength = 29;
private void DateTime();
public static final java.sql.Date dateBytesToDate(byte[], int, java.util.Calendar, String) throws java.io.UnsupportedEncodingException;
public static final java.sql.Time timeBytesToTime(byte[], int, java.util.Calendar, String) throws java.io.UnsupportedEncodingException;
public static final java.sql.Timestamp timestampBytesToTimestamp(byte[], int, java.util.Calendar, String, boolean) throws java.io.UnsupportedEncodingException;
private static int parseTimestampString(String, java.util.Calendar, boolean);
public static final int dateToDateBytes(byte[], int, DateTimeValue) throws SqlException, java.io.UnsupportedEncodingException;
public static final int timeToTimeBytes(byte[], int, DateTimeValue) throws java.io.UnsupportedEncodingException;
public static final int timestampToTimestampBytes(byte[], int, DateTimeValue, boolean) throws SqlException, java.io.UnsupportedEncodingException;
public static final java.sql.Timestamp dateBytesToTimestamp(byte[], int, java.util.Calendar, String) throws java.io.UnsupportedEncodingException;
public static final java.sql.Timestamp timeBytesToTimestamp(byte[], int, java.util.Calendar, String) throws java.io.UnsupportedEncodingException;
public static final java.sql.Date timestampBytesToDate(byte[], int, java.util.Calendar, String) throws java.io.UnsupportedEncodingException;
public static final java.sql.Time timestampBytesToTime(byte[], int, java.util.Calendar, String) throws java.io.UnsupportedEncodingException;
private static java.util.Calendar getCleanCalendar(java.util.Calendar);
public static final int timestampToDateBytes(byte[], int, java.sql.Timestamp) throws SqlException, java.io.UnsupportedEncodingException;
public static final int timestampToTimeBytes(byte[], int, java.sql.Timestamp) throws java.io.UnsupportedEncodingException;
public static int getTimestampLength(boolean);
}
org/apache/derby/client/am/DateTimeValue.class
package org.apache.derby.client.am;
public synchronized class DateTimeValue {
private final int year;
private final int month;
private final int day;
private final int hours;
private final int minutes;
private final int seconds;
private final int nanos;
private void DateTimeValue(java.util.Calendar, int);
public void DateTimeValue(java.sql.Date, java.util.Calendar);
public void DateTimeValue(java.sql.Time, java.util.Calendar);
public void DateTimeValue(java.sql.Timestamp, java.util.Calendar);
public void DateTimeValue(java.sql.Date);
public void DateTimeValue(java.sql.Time);
public void DateTimeValue(java.sql.Timestamp);
private static java.util.Calendar initCalendar(java.util.Calendar, java.util.Date);
public int getYear();
public int getMonth();
public int getDayOfMonth();
public int getHours();
public int getMinutes();
public int getSeconds();
public int getNanos();
}
org/apache/derby/client/am/Decimal.class
package org.apache.derby.client.am;
public synchronized class Decimal {
public static final int PACKED_DECIMAL = 48;
private static final org.apache.derby.shared.common.i18n.MessageUtil msgutil;
private static final int[][] tenRadixMagnitude;
private void Decimal();
private static final int packedNybblesToInt(byte[], int, int, int);
private static final long packedNybblesToLong(byte[], int, int, int);
private static final int[] computeMagnitude(int[]);
public static final java.math.BigDecimal getBigDecimal(byte[], int, int, int) throws java.io.UnsupportedEncodingException;
public static final double getDouble(byte[], int, int, int) throws java.io.UnsupportedEncodingException;
public static final long getLong(byte[], int, int, int) throws java.io.UnsupportedEncodingException;
public static final int bigDecimalToPackedDecimalBytes(byte[], int, java.math.BigDecimal, int, int) throws SqlException;
static void ();
}
org/apache/derby/client/am/Diagnosable.class
package org.apache.derby.client.am;
public abstract interface Diagnosable {
public abstract Sqlca getSqlca();
public abstract void printTrace(java.io.PrintWriter, String);
}
org/apache/derby/client/am/DisconnectException.class
package org.apache.derby.client.am;
public synchronized class DisconnectException extends SqlException {
public void DisconnectException(Agent, ClientMessageId, Object[], SqlCode, Throwable);
public void DisconnectException(Agent, ClientMessageId, Object[], SqlCode);
public void DisconnectException(Agent, ClientMessageId, SqlCode);
public void DisconnectException(Agent, ClientMessageId, Object[]);
public void DisconnectException(Agent, ClientMessageId, Object[], Throwable);
public void DisconnectException(Agent, ClientMessageId, Object, Throwable);
public void DisconnectException(Agent, ClientMessageId);
public void DisconnectException(Agent, ClientMessageId, Object);
public void DisconnectException(Agent, ClientMessageId, Object, Object);
public void DisconnectException(Agent, SqlException);
}
org/apache/derby/client/am/EncryptionManager.class
package org.apache.derby.client.am;
public synchronized class EncryptionManager {
transient Agent agent_;
private static final byte[] modulusBytes__;
private static final java.math.BigInteger modulus__;
private static final byte[] baseBytes__;
private static final java.math.BigInteger base__;
private static final int exponential_length__ = 255;
private javax.crypto.spec.DHParameterSpec paramSpec_;
private java.security.KeyPairGenerator keyPairGenerator_;
private java.security.KeyPair keyPair_;
private javax.crypto.KeyAgreement keyAgreement_;
private byte[] token_;
private byte[] secKey_;
private javax.crypto.SecretKeyFactory secretKeyFactory_;
private String providerName;
private java.security.Provider provider;
private java.security.MessageDigest messageDigest;
private java.security.SecureRandom secureRandom;
private static final int SECMEC_USRSSBPWD_SEED_LEN = 8;
private static final byte[] SECMEC_USRSSBPWD_PWDSEQS;
private static final String SHA_1_PRNG_ALGORITHM = SHA1PRNG;
public static final String SHA_1_DIGEST_ALGORITHM = SHA-1;
private static final char[] hex_table;
public void EncryptionManager(Agent) throws SqlException;
public void EncryptionManager(Agent, String) throws SqlException;
public byte[] obtainPublicKey();
private byte[] calculateEncryptionToken(int, byte[]);
private void keyParityCheck(byte[]) throws SqlException;
private byte[] generatePrivateKey(byte[]) throws SqlException;
public byte[] encryptData(byte[], int, byte[], byte[]) throws SqlException;
public byte[] decryptData(byte[], int, byte[], byte[]) throws SqlException;
public void setInitVector(byte[]);
public void setSecKey(byte[]);
public void resetSecurityKeys();
public byte[] generateSeed();
public byte[] substitutePassword(String, String, byte[], byte[]) throws SqlException;
private String toHexString(byte[], int, int);
private byte[] toHexByte(String, int, int);
static void ();
}
org/apache/derby/client/am/ExceptionFormatter.class
package org.apache.derby.client.am;
public synchronized class ExceptionFormatter {
public void ExceptionFormatter();
public static void printTrace(SqlException, java.io.PrintWriter, String, boolean);
public static void printTrace(java.sql.SQLException, java.io.PrintWriter, String, boolean);
public static void printTrace(Sqlca, java.io.PrintWriter, String);
public static void printTrace(Throwable, java.io.PrintWriter, String);
public static void printTrace(javax.transaction.xa.XAException, java.io.PrintWriter, String);
}
org/apache/derby/client/am/FailedProperties40.class
package org.apache.derby.client.am;
public synchronized class FailedProperties40 {
private final java.util.HashMap failedProps_;
private final String firstKey_;
private final String firstValue_;
public static java.util.Properties makeProperties(String, String);
public void FailedProperties40(java.util.Properties);
public java.util.Map getProperties();
public String getFirstKey();
public String getFirstValue();
}
org/apache/derby/client/am/FloatingPoint.class
package org.apache.derby.client.am;
public synchronized class FloatingPoint {
public static final int IEEE_754_FLOATING_POINT = 72;
private void FloatingPoint();
private static final int convertFromByteToInt(byte[], int);
private static final long convertFromByteToLong(byte[], int);
public static final float getFloat(byte[], int);
public static final double getDouble(byte[], int);
public static final void floatToIeee754Bytes(byte[], int, float);
public static final void doubleToIeee754Bytes(byte[], int, double);
}
org/apache/derby/client/am/LOBStateTracker.class
package org.apache.derby.client.am;
synchronized class LOBStateTracker {
public static final LOBStateTracker NO_OP_TRACKER;
private final int[] columns;
private final boolean[] isBlob;
private final boolean[] published;
private final boolean doRelease;
private final int[] lastLocatorSeen;
void LOBStateTracker(int[], boolean[], boolean);
void checkCurrentRow(Cursor) throws SqlException;
void discardState();
void markAsPublished(int);
static void ();
}
org/apache/derby/client/am/Lob.class
package org.apache.derby.client.am;
public abstract synchronized class Lob implements UnitOfWorkListener {
public static final int STRING = 2;
public static final int ASCII_STREAM = 4;
public static final int UNICODE_STREAM = 8;
public static final int CHARACTER_STREAM = 16;
public static final int BINARY_STREAM = 32;
public static final int BINARY_STRING = 64;
public static final int LOCATOR = 128;
public static final int INVALID_LOCATOR = -1;
protected Agent agent_;
protected int dataType_;
protected int locator_;
private long sqlLength_;
private boolean lengthObtained_;
protected boolean isValid_;
private final boolean willBeLayerBStreamed_;
private long updateCount;
private int transactionID_;
protected static final ClientMessageId LOB_OBJECT_LENGTH_UNKNOWN_YET;
protected void Lob(Agent, boolean);
long sqlLength() throws SqlException;
void setSqlLength(long);
long getLocatorLength() throws SqlException;
public void listenToUnitOfWork();
public void completeLocalCommit(java.util.Iterator);
public void completeLocalRollback(java.util.Iterator);
public Agent getAgent();
void checkForClosedConnection() throws SqlException;
void completeLocalRollback();
void completeLocalCommit();
protected abstract void materializeStream() throws SqlException;
protected java.io.InputStream materializeStream(java.io.InputStream, String) throws SqlException;
public abstract long length() throws java.sql.SQLException;
protected static boolean isLayerBStreamingPossible(Agent);
public boolean willBeLayerBStreamed();
public boolean isLocator();
public int getLocator();
protected void checkPosAndLength(long, long) throws java.sql.SQLException;
protected synchronized void incrementUpdateCount();
long getUpdateCount();
void checkForLocatorValidity() throws SqlException;
protected void checkValidity() throws java.sql.SQLException;
static void ();
}
org/apache/derby/client/am/LogWriter$1.class
package org.apache.derby.client.am;
final synchronized class LogWriter$1 implements java.security.PrivilegedExceptionAction {
void LogWriter$1(String, boolean);
public Object run() throws java.io.IOException;
}
org/apache/derby/client/am/LogWriter.class
package org.apache.derby.client.am;
public synchronized class LogWriter {
protected java.io.PrintWriter printWriter_;
protected int traceLevel_;
private boolean driverConfigurationHasBeenWrittenToJdbc1Stream_;
private boolean driverConfigurationHasBeenWrittenToJdbc2Stream_;
public boolean printWriterNeedsToBeClosed_;
public void LogWriter(java.io.PrintWriter, int);
protected final boolean loggingEnabled(int);
protected final boolean traceSuspended();
void close();
public void dncprintln(String);
private void dncprint(String);
private void dncprintln(String, String);
private void dncprint(String, String);
public void tracepoint(String, int, String);
public void tracepoint(String, int, String, String);
public void tracepoint(String, int, Object, String, String);
public void tracepoint(String, int, String, String, java.util.Map);
public void tracepoint(String, int, Object, String, String, java.util.Map);
private String getMemoryMapDisplay(java.util.Map);
private void traceExternalMethod(Object, String, String);
private void traceExternalDeprecatedMethod(Object, String, String);
private String buildExternalMethodHeader(Object, String);
private String getClassNameOfInstanceIfTraced(Object);
public void traceExit(Object, String, Object);
public void traceDeprecatedExit(Object, String, Object);
public void traceExit(Object, String, ResultSet);
public void traceExit(Object, String, CallableStatement);
public void traceExit(Object, String, PreparedStatement);
public void traceExit(Object, String, Statement);
public void traceExit(Object, String, Blob);
public void traceExit(Object, String, Clob);
public void traceExit(Object, String, DatabaseMetaData);
public void traceExit(Object, String, Connection);
public void traceExit(Object, String, ColumnMetaData);
public void traceExit(Object, String, byte[]);
public void traceExit(Object, String, int[]);
public void traceDeprecatedExit(Object, String, byte[]);
public void traceExit(Object, String, byte);
public void traceExit(Object, String, int);
public void traceExit(Object, String, boolean);
public void traceExit(Object, String, long);
public void traceExit(Object, String, float);
public void traceExit(Object, String, double);
private void traceEntryAllArgs(Object, String, String);
private void traceDeprecatedEntryAllArgs(Object, String, String);
public void traceEntry(Object, String);
public void traceEntry(Object, String, Object);
public void traceEntry(Object, String, boolean);
public void traceEntry(Object, String, int);
public void traceDeprecatedEntry(Object, String, int);
public void traceDeprecatedEntry(Object, String, Object);
public void traceEntry(Object, String, Object, Object);
public void traceEntry(Object, String, int, Object);
public void traceEntry(Object, String, int, byte[]);
public void traceDeprecatedEntry(Object, String, int, int);
public void traceDeprecatedEntry(Object, String, Object, int);
public void traceEntry(Object, String, int, boolean);
public void traceEntry(Object, String, int, byte);
public void traceEntry(Object, String, int, short);
public void traceEntry(Object, String, int, int);
public void traceEntry(Object, String, int, long);
public void traceEntry(Object, String, int, float);
public void traceEntry(Object, String, int, double);
public void traceEntry(Object, String, Object, boolean);
public void traceEntry(Object, String, Object, byte);
public void traceEntry(Object, String, Object, short);
public void traceEntry(Object, String, Object, int);
public void traceEntry(Object, String, Object, long);
public void traceEntry(Object, String, Object, float);
public void traceEntry(Object, String, Object, double);
public void traceEntry(Object, String, Object, Object, Object);
public void traceEntry(Object, String, int, Object, Object);
public void traceEntry(Object, String, Object, Object, int);
public void traceEntry(Object, String, int, Object, int);
public void traceDeprecatedEntry(Object, String, int, Object, int);
public void traceEntry(Object, String, int, int, Object);
public void traceEntry(Object, String, int, int, int);
public void traceEntry(Object, String, Object, int, int);
public void traceEntry(Object, String, Object, int, Object);
public void traceEntry(Object, String, Object, boolean, boolean);
public void traceEntry(Object, String, Object, boolean, int);
public void traceEntry(Object, String, Object, Object, Object, Object);
public void traceEntry(Object, String, int, Object, Object, Object);
public void traceEntry(Object, String, int, Object, int, int);
public void traceEntry(Object, String, Object, int, int, int);
public void traceEntry(Object, String, Object, Object, int, int);
public void traceEntry(Object, String, Object, Object, Object, int, boolean);
public void traceEntry(Object, String, Object, Object, Object, boolean, boolean);
public void traceEntry(Object, String, Object, Object, Object, Object, Object, Object);
public void traceDiagnosable(SqlException);
public void traceDiagnosable(java.sql.SQLException);
public void traceDiagnosable(javax.transaction.xa.XAException);
public void traceParameterMetaData(Statement, ColumnMetaData);
public void traceResultSetMetaData(Statement, ColumnMetaData);
private void traceColumnMetaData(String, ColumnMetaData);
public void traceConnectEntry(org.apache.derby.jdbc.ClientBaseDataSource);
public void traceConnectEntry(String, int, String, java.util.Properties);
public void traceConnectResetEntry(Object, LogWriter, String, org.apache.derby.jdbc.ClientBaseDataSource);
public void traceConnectExit(Connection);
public void traceConnectResetExit(Connection);
private void traceConnectsResetEntry(org.apache.derby.jdbc.ClientBaseDataSource);
private void traceConnectsEntry(org.apache.derby.jdbc.ClientBaseDataSource);
private void traceConnectsResetEntry(String, int, String, java.util.Properties);
private void traceConnectsEntry(String, int, String, java.util.Properties);
public void traceConnectsExit(Connection);
public void traceConnectsResetExit(Connection);
private void writeProperties(java.util.Properties);
private String escapePassword(String);
private void traceDriverConfigurationJdbc2();
private void traceDriverConfigurationJdbc1();
public void writeDriverConfiguration();
public static java.io.PrintWriter getPrintWriter(String, boolean) throws SqlException;
private java.util.Properties getProperties(org.apache.derby.jdbc.ClientBaseDataSource) throws SqlException;
}
org/apache/derby/client/am/LogicalCallableStatement.class
package org.apache.derby.client.am;
public synchronized class LogicalCallableStatement extends LogicalPreparedStatement implements java.sql.CallableStatement {
public void LogicalCallableStatement(java.sql.CallableStatement, stmtcache.StatementKey, StatementCacheInteractor);
public boolean wasNull() throws java.sql.SQLException;
public byte getByte(int) throws java.sql.SQLException;
public double getDouble(int) throws java.sql.SQLException;
public float getFloat(int) throws java.sql.SQLException;
public int getInt(int) throws java.sql.SQLException;
public long getLong(int) throws java.sql.SQLException;
public short getShort(int) throws java.sql.SQLException;
public boolean getBoolean(int) throws java.sql.SQLException;
public byte[] getBytes(int) throws java.sql.SQLException;
public void registerOutParameter(int, int) throws java.sql.SQLException;
public void registerOutParameter(int, int, int) throws java.sql.SQLException;
public Object getObject(int) throws java.sql.SQLException;
public String getString(int) throws java.sql.SQLException;
public void registerOutParameter(int, int, String) throws java.sql.SQLException;
public byte getByte(String) throws java.sql.SQLException;
public double getDouble(String) throws java.sql.SQLException;
public float getFloat(String) throws java.sql.SQLException;
public int getInt(String) throws java.sql.SQLException;
public long getLong(String) throws java.sql.SQLException;
public short getShort(String) throws java.sql.SQLException;
public boolean getBoolean(String) throws java.sql.SQLException;
public byte[] getBytes(String) throws java.sql.SQLException;
public void setByte(String, byte) throws java.sql.SQLException;
public void setDouble(String, double) throws java.sql.SQLException;
public void setFloat(String, float) throws java.sql.SQLException;
public void registerOutParameter(String, int) throws java.sql.SQLException;
public void setInt(String, int) throws java.sql.SQLException;
public void setNull(String, int) throws java.sql.SQLException;
public void registerOutParameter(String, int, int) throws java.sql.SQLException;
public void setLong(String, long) throws java.sql.SQLException;
public void setShort(String, short) throws java.sql.SQLException;
public void setBoolean(String, boolean) throws java.sql.SQLException;
public void setBytes(String, byte[]) throws java.sql.SQLException;
public java.math.BigDecimal getBigDecimal(int) throws java.sql.SQLException;
public java.math.BigDecimal getBigDecimal(int, int) throws java.sql.SQLException;
public java.net.URL getURL(int) throws java.sql.SQLException;
public java.sql.Array getArray(int) throws java.sql.SQLException;
public java.sql.Blob getBlob(int) throws java.sql.SQLException;
public java.sql.Clob getClob(int) throws java.sql.SQLException;
public java.sql.Date getDate(int) throws java.sql.SQLException;
public java.sql.Ref getRef(int) throws java.sql.SQLException;
public java.sql.Time getTime(int) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(int) throws java.sql.SQLException;
public void setAsciiStream(String, java.io.InputStream, int) throws java.sql.SQLException;
public void setBinaryStream(String, java.io.InputStream, int) throws java.sql.SQLException;
public void setCharacterStream(String, java.io.Reader, int) throws java.sql.SQLException;
public Object getObject(String) throws java.sql.SQLException;
public void setObject(String, Object) throws java.sql.SQLException;
public void setObject(String, Object, int) throws java.sql.SQLException;
public void setObject(String, Object, int, int) throws java.sql.SQLException;
public Object getObject(int, java.util.Map) throws java.sql.SQLException;
public String getString(String) throws java.sql.SQLException;
public void registerOutParameter(String, int, String) throws java.sql.SQLException;
public void setNull(String, int, String) throws java.sql.SQLException;
public void setString(String, String) throws java.sql.SQLException;
public java.math.BigDecimal getBigDecimal(String) throws java.sql.SQLException;
public void setBigDecimal(String, java.math.BigDecimal) throws java.sql.SQLException;
public java.net.URL getURL(String) throws java.sql.SQLException;
public void setURL(String, java.net.URL) throws java.sql.SQLException;
public java.sql.Array getArray(String) throws java.sql.SQLException;
public java.sql.Blob getBlob(String) throws java.sql.SQLException;
public java.sql.Clob getClob(String) throws java.sql.SQLException;
public java.sql.Date getDate(String) throws java.sql.SQLException;
public void setDate(String, java.sql.Date) throws java.sql.SQLException;
public java.sql.Date getDate(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Ref getRef(String) throws java.sql.SQLException;
public java.sql.Time getTime(String) throws java.sql.SQLException;
public void setTime(String, java.sql.Time) throws java.sql.SQLException;
public java.sql.Time getTime(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(String) throws java.sql.SQLException;
public void setTimestamp(String, java.sql.Timestamp) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(int, java.util.Calendar) throws java.sql.SQLException;
public Object getObject(String, java.util.Map) throws java.sql.SQLException;
public java.sql.Date getDate(String, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Time getTime(String, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(String, java.util.Calendar) throws java.sql.SQLException;
public void setDate(String, java.sql.Date, java.util.Calendar) throws java.sql.SQLException;
public void setTime(String, java.sql.Time, java.util.Calendar) throws java.sql.SQLException;
public void setTimestamp(String, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalCallableStatement40.class
package org.apache.derby.client.am;
public synchronized class LogicalCallableStatement40 extends LogicalCallableStatement {
public void LogicalCallableStatement40(java.sql.CallableStatement, stmtcache.StatementKey, StatementCacheInteractor);
public void setRowId(int, java.sql.RowId) throws java.sql.SQLException;
public void setNString(int, String) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void setNClob(int, java.sql.NClob) throws java.sql.SQLException;
public void setClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void setBlob(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void setSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException;
public void setAsciiStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setBinaryStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void setAsciiStream(int, java.io.InputStream) throws java.sql.SQLException;
public void setBinaryStream(int, java.io.InputStream) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void setClob(int, java.io.Reader) throws java.sql.SQLException;
public void setBlob(int, java.io.InputStream) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader) throws java.sql.SQLException;
public synchronized boolean isClosed() throws java.sql.SQLException;
public void setPoolable(boolean) throws java.sql.SQLException;
public boolean isPoolable() throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public java.sql.RowId getRowId(int) throws java.sql.SQLException;
public java.sql.RowId getRowId(String) throws java.sql.SQLException;
public void setRowId(String, java.sql.RowId) throws java.sql.SQLException;
public void setNString(String, String) throws java.sql.SQLException;
public void setNCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
public void setNClob(String, java.sql.NClob) throws java.sql.SQLException;
public void setClob(String, java.io.Reader, long) throws java.sql.SQLException;
public void setBlob(String, java.io.InputStream, long) throws java.sql.SQLException;
public 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 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 String getNString(int) throws java.sql.SQLException;
public String getNString(String) throws java.sql.SQLException;
public java.io.Reader getNCharacterStream(int) throws java.sql.SQLException;
public java.io.Reader getNCharacterStream(String) throws java.sql.SQLException;
public java.io.Reader getCharacterStream(int) throws java.sql.SQLException;
public java.io.Reader getCharacterStream(String) throws java.sql.SQLException;
public void setBlob(String, java.sql.Blob) throws java.sql.SQLException;
public void setClob(String, java.sql.Clob) throws java.sql.SQLException;
public void setAsciiStream(String, java.io.InputStream, long) throws java.sql.SQLException;
public void setBinaryStream(String, java.io.InputStream, long) throws java.sql.SQLException;
public void setCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
public void setAsciiStream(String, java.io.InputStream) throws java.sql.SQLException;
public void setBinaryStream(String, java.io.InputStream) throws java.sql.SQLException;
public void setCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
public void setNCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
public void setClob(String, java.io.Reader) throws java.sql.SQLException;
public void setBlob(String, java.io.InputStream) throws java.sql.SQLException;
public void setNClob(String, java.io.Reader) throws java.sql.SQLException;
public Object getObject(int, Class) throws java.sql.SQLException;
public Object getObject(String, Class) throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalConnection.class
package org.apache.derby.client.am;
public synchronized class LogicalConnection implements java.sql.Connection {
protected Connection physicalConnection_;
private org.apache.derby.client.ClientPooledConnection pooledConnection_;
private LogicalDatabaseMetaData logicalDatabaseMetaData;
public void LogicalConnection(Connection, org.apache.derby.client.ClientPooledConnection) throws SqlException;
protected void finalize() throws Throwable;
public synchronized void nullPhysicalConnection();
public synchronized void close() throws java.sql.SQLException;
public synchronized void closeWithoutRecyclingToPool() throws SqlException;
public boolean isClosed() throws java.sql.SQLException;
protected void checkForNullPhysicalConnection() throws java.sql.SQLException;
final void notifyException(java.sql.SQLException);
public synchronized java.sql.Statement createStatement() throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String) throws java.sql.SQLException;
public synchronized PreparedStatement preparePositionedUpdateStatement(String, Section) throws SqlException;
public synchronized java.sql.CallableStatement prepareCall(String) throws java.sql.SQLException;
public String nativeSQL(String) throws java.sql.SQLException;
public synchronized void setAutoCommit(boolean) throws java.sql.SQLException;
public boolean getAutoCommit() throws java.sql.SQLException;
public synchronized void commit() throws java.sql.SQLException;
public synchronized void rollback() throws java.sql.SQLException;
public synchronized void setTransactionIsolation(int) throws java.sql.SQLException;
public int getTransactionIsolation() throws java.sql.SQLException;
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException;
public synchronized void clearWarnings() throws java.sql.SQLException;
public synchronized java.sql.DatabaseMetaData getMetaData() throws java.sql.SQLException;
protected LogicalDatabaseMetaData newLogicalDatabaseMetaData() throws java.sql.SQLException;
final synchronized java.sql.DatabaseMetaData getRealMetaDataObject() throws java.sql.SQLException;
public synchronized void setReadOnly(boolean) throws java.sql.SQLException;
public boolean isReadOnly() throws java.sql.SQLException;
public synchronized void setCatalog(String) throws java.sql.SQLException;
public String getCatalog() throws java.sql.SQLException;
public synchronized java.sql.Statement createStatement(int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int) throws java.sql.SQLException;
public java.util.Map getTypeMap() throws java.sql.SQLException;
public synchronized void setTypeMap(java.util.Map) throws java.sql.SQLException;
public java.sql.Statement createStatement(int, int, int) throws java.sql.SQLException;
public java.sql.CallableStatement prepareCall(String, int, int, int) throws java.sql.SQLException;
public java.sql.PreparedStatement prepareStatement(String, int, int, int) throws java.sql.SQLException;
public java.sql.PreparedStatement prepareStatement(String, int) throws java.sql.SQLException;
public java.sql.PreparedStatement prepareStatement(String, int[]) throws java.sql.SQLException;
public java.sql.PreparedStatement prepareStatement(String, String[]) throws java.sql.SQLException;
public void setHoldability(int) throws java.sql.SQLException;
public int getHoldability() throws java.sql.SQLException;
public java.sql.Savepoint setSavepoint() throws java.sql.SQLException;
public java.sql.Savepoint setSavepoint(String) throws java.sql.SQLException;
public void rollback(java.sql.Savepoint) throws java.sql.SQLException;
public void releaseSavepoint(java.sql.Savepoint) throws java.sql.SQLException;
public int getTransactionID();
public int getServerVersion();
public String getSchema() throws java.sql.SQLException;
public void setSchema(String) throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalConnection40.class
package org.apache.derby.client.am;
public synchronized class LogicalConnection40 extends LogicalConnection {
public void LogicalConnection40(Connection, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public java.sql.Array createArrayOf(String, Object[]) throws java.sql.SQLException;
public java.sql.Blob createBlob() throws java.sql.SQLException;
public java.sql.Clob createClob() throws java.sql.SQLException;
public java.sql.NClob createNClob() throws java.sql.SQLException;
public java.sql.SQLXML createSQLXML() throws java.sql.SQLException;
public java.sql.Struct createStruct(String, Object[]) throws java.sql.SQLException;
public java.util.Properties getClientInfo() throws java.sql.SQLException;
public String getClientInfo(String) throws java.sql.SQLException;
protected LogicalDatabaseMetaData newLogicalDatabaseMetaData() throws java.sql.SQLException;
public java.util.Map getTypeMap() throws java.sql.SQLException;
public synchronized boolean isValid(int) throws java.sql.SQLException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public void setClientInfo(java.util.Properties) throws java.sql.SQLClientInfoException;
public void setClientInfo(String, String) throws java.sql.SQLClientInfoException;
public Object unwrap(Class) throws java.sql.SQLException;
public void abort(java.util.concurrent.Executor) throws java.sql.SQLException;
public int getNetworkTimeout() throws java.sql.SQLException;
public void setNetworkTimeout(java.util.concurrent.Executor, int) throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalDatabaseMetaData.class
package org.apache.derby.client.am;
public synchronized class LogicalDatabaseMetaData implements java.sql.DatabaseMetaData {
private final LogicalConnection logicalCon;
final LogWriter logWriter;
private final int driverMajorVersion;
private final int driverMinorVersion;
public void LogicalDatabaseMetaData(LogicalConnection, LogWriter) throws java.sql.SQLException;
final java.sql.DatabaseMetaData getRealMetaDataObject() throws java.sql.SQLException;
public boolean allProceduresAreCallable() throws java.sql.SQLException;
public boolean allTablesAreSelectable() throws java.sql.SQLException;
public String getURL() throws java.sql.SQLException;
public String getUserName() throws java.sql.SQLException;
public boolean isReadOnly() throws java.sql.SQLException;
public boolean nullsAreSortedHigh() throws java.sql.SQLException;
public boolean nullsAreSortedLow() throws java.sql.SQLException;
public boolean nullsAreSortedAtStart() throws java.sql.SQLException;
public boolean nullsAreSortedAtEnd() throws java.sql.SQLException;
public String getDatabaseProductName() throws java.sql.SQLException;
public String getDatabaseProductVersion() throws java.sql.SQLException;
public String getDriverName() throws java.sql.SQLException;
public String getDriverVersion() throws java.sql.SQLException;
public int getDriverMajorVersion();
public int getDriverMinorVersion();
public boolean usesLocalFiles() throws java.sql.SQLException;
public boolean usesLocalFilePerTable() throws java.sql.SQLException;
public boolean supportsMixedCaseIdentifiers() throws java.sql.SQLException;
public boolean storesUpperCaseIdentifiers() throws java.sql.SQLException;
public boolean storesLowerCaseIdentifiers() throws java.sql.SQLException;
public boolean storesMixedCaseIdentifiers() throws java.sql.SQLException;
public boolean supportsMixedCaseQuotedIdentifiers() throws java.sql.SQLException;
public boolean storesUpperCaseQuotedIdentifiers() throws java.sql.SQLException;
public boolean storesLowerCaseQuotedIdentifiers() throws java.sql.SQLException;
public boolean storesMixedCaseQuotedIdentifiers() throws java.sql.SQLException;
public String getIdentifierQuoteString() throws java.sql.SQLException;
public String getSQLKeywords() throws java.sql.SQLException;
public String getNumericFunctions() throws java.sql.SQLException;
public String getStringFunctions() throws java.sql.SQLException;
public String getSystemFunctions() throws java.sql.SQLException;
public String getTimeDateFunctions() throws java.sql.SQLException;
public String getSearchStringEscape() throws java.sql.SQLException;
public String getExtraNameCharacters() throws java.sql.SQLException;
public boolean supportsAlterTableWithAddColumn() throws java.sql.SQLException;
public boolean supportsAlterTableWithDropColumn() throws java.sql.SQLException;
public boolean supportsColumnAliasing() throws java.sql.SQLException;
public boolean nullPlusNonNullIsNull() throws java.sql.SQLException;
public boolean supportsConvert() throws java.sql.SQLException;
public boolean supportsConvert(int, int) throws java.sql.SQLException;
public boolean supportsTableCorrelationNames() throws java.sql.SQLException;
public boolean supportsDifferentTableCorrelationNames() throws java.sql.SQLException;
public boolean supportsExpressionsInOrderBy() throws java.sql.SQLException;
public boolean supportsOrderByUnrelated() throws java.sql.SQLException;
public boolean supportsGroupBy() throws java.sql.SQLException;
public boolean supportsGroupByUnrelated() throws java.sql.SQLException;
public boolean supportsGroupByBeyondSelect() throws java.sql.SQLException;
public boolean supportsLikeEscapeClause() throws java.sql.SQLException;
public boolean supportsMultipleResultSets() throws java.sql.SQLException;
public boolean supportsMultipleTransactions() throws java.sql.SQLException;
public boolean supportsNonNullableColumns() throws java.sql.SQLException;
public boolean supportsMinimumSQLGrammar() throws java.sql.SQLException;
public boolean supportsCoreSQLGrammar() throws java.sql.SQLException;
public boolean supportsExtendedSQLGrammar() throws java.sql.SQLException;
public boolean supportsANSI92EntryLevelSQL() throws java.sql.SQLException;
public boolean supportsANSI92IntermediateSQL() throws java.sql.SQLException;
public boolean supportsANSI92FullSQL() throws java.sql.SQLException;
public boolean supportsIntegrityEnhancementFacility() throws java.sql.SQLException;
public boolean supportsOuterJoins() throws java.sql.SQLException;
public boolean supportsFullOuterJoins() throws java.sql.SQLException;
public boolean supportsLimitedOuterJoins() throws java.sql.SQLException;
public String getSchemaTerm() throws java.sql.SQLException;
public String getProcedureTerm() throws java.sql.SQLException;
public String getCatalogTerm() throws java.sql.SQLException;
public boolean isCatalogAtStart() throws java.sql.SQLException;
public String getCatalogSeparator() throws java.sql.SQLException;
public boolean supportsSchemasInDataManipulation() throws java.sql.SQLException;
public boolean supportsSchemasInProcedureCalls() throws java.sql.SQLException;
public boolean supportsSchemasInTableDefinitions() throws java.sql.SQLException;
public boolean supportsSchemasInIndexDefinitions() throws java.sql.SQLException;
public boolean supportsSchemasInPrivilegeDefinitions() throws java.sql.SQLException;
public boolean supportsCatalogsInDataManipulation() throws java.sql.SQLException;
public boolean supportsCatalogsInProcedureCalls() throws java.sql.SQLException;
public boolean supportsCatalogsInTableDefinitions() throws java.sql.SQLException;
public boolean supportsCatalogsInIndexDefinitions() throws java.sql.SQLException;
public boolean supportsCatalogsInPrivilegeDefinitions() throws java.sql.SQLException;
public boolean supportsPositionedDelete() throws java.sql.SQLException;
public boolean supportsPositionedUpdate() throws java.sql.SQLException;
public boolean supportsSelectForUpdate() throws java.sql.SQLException;
public boolean supportsStoredProcedures() throws java.sql.SQLException;
public boolean supportsSubqueriesInComparisons() throws java.sql.SQLException;
public boolean supportsSubqueriesInExists() throws java.sql.SQLException;
public boolean supportsSubqueriesInIns() throws java.sql.SQLException;
public boolean supportsSubqueriesInQuantifieds() throws java.sql.SQLException;
public boolean supportsCorrelatedSubqueries() throws java.sql.SQLException;
public boolean supportsUnion() throws java.sql.SQLException;
public boolean supportsUnionAll() throws java.sql.SQLException;
public boolean supportsOpenCursorsAcrossCommit() throws java.sql.SQLException;
public boolean supportsOpenCursorsAcrossRollback() throws java.sql.SQLException;
public boolean supportsOpenStatementsAcrossCommit() throws java.sql.SQLException;
public boolean supportsOpenStatementsAcrossRollback() throws java.sql.SQLException;
public int getMaxBinaryLiteralLength() throws java.sql.SQLException;
public int getMaxCharLiteralLength() throws java.sql.SQLException;
public int getMaxColumnNameLength() throws java.sql.SQLException;
public int getMaxColumnsInGroupBy() throws java.sql.SQLException;
public int getMaxColumnsInIndex() throws java.sql.SQLException;
public int getMaxColumnsInOrderBy() throws java.sql.SQLException;
public int getMaxColumnsInSelect() throws java.sql.SQLException;
public int getMaxColumnsInTable() throws java.sql.SQLException;
public int getMaxConnections() throws java.sql.SQLException;
public int getMaxCursorNameLength() throws java.sql.SQLException;
public int getMaxIndexLength() throws java.sql.SQLException;
public int getMaxSchemaNameLength() throws java.sql.SQLException;
public int getMaxProcedureNameLength() throws java.sql.SQLException;
public int getMaxCatalogNameLength() throws java.sql.SQLException;
public int getMaxRowSize() throws java.sql.SQLException;
public boolean doesMaxRowSizeIncludeBlobs() throws java.sql.SQLException;
public int getMaxStatementLength() throws java.sql.SQLException;
public int getMaxStatements() throws java.sql.SQLException;
public int getMaxTableNameLength() throws java.sql.SQLException;
public int getMaxTablesInSelect() throws java.sql.SQLException;
public int getMaxUserNameLength() throws java.sql.SQLException;
public int getDefaultTransactionIsolation() throws java.sql.SQLException;
public boolean supportsTransactions() throws java.sql.SQLException;
public boolean supportsTransactionIsolationLevel(int) throws java.sql.SQLException;
public boolean supportsDataDefinitionAndDataManipulationTransactions() throws java.sql.SQLException;
public boolean supportsDataManipulationTransactionsOnly() throws java.sql.SQLException;
public boolean dataDefinitionCausesTransactionCommit() throws java.sql.SQLException;
public boolean dataDefinitionIgnoredInTransactions() throws java.sql.SQLException;
public java.sql.ResultSet getProcedures(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getProcedureColumns(String, String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getTables(String, String, String, String[]) throws java.sql.SQLException;
public java.sql.ResultSet getSchemas() throws java.sql.SQLException;
public java.sql.ResultSet getCatalogs() throws java.sql.SQLException;
public java.sql.ResultSet getTableTypes() throws java.sql.SQLException;
public java.sql.ResultSet getColumns(String, String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getColumnPrivileges(String, String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getTablePrivileges(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getBestRowIdentifier(String, String, String, int, boolean) throws java.sql.SQLException;
public java.sql.ResultSet getVersionColumns(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getPrimaryKeys(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getImportedKeys(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getExportedKeys(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getCrossReference(String, String, String, String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getTypeInfo() throws java.sql.SQLException;
public java.sql.ResultSet getIndexInfo(String, String, String, boolean, boolean) throws java.sql.SQLException;
public boolean supportsResultSetType(int) throws java.sql.SQLException;
public boolean supportsResultSetConcurrency(int, int) throws java.sql.SQLException;
public boolean ownUpdatesAreVisible(int) throws java.sql.SQLException;
public boolean ownDeletesAreVisible(int) throws java.sql.SQLException;
public boolean ownInsertsAreVisible(int) throws java.sql.SQLException;
public boolean othersUpdatesAreVisible(int) throws java.sql.SQLException;
public boolean othersDeletesAreVisible(int) throws java.sql.SQLException;
public boolean othersInsertsAreVisible(int) throws java.sql.SQLException;
public boolean updatesAreDetected(int) throws java.sql.SQLException;
public boolean deletesAreDetected(int) throws java.sql.SQLException;
public boolean insertsAreDetected(int) throws java.sql.SQLException;
public boolean supportsBatchUpdates() throws java.sql.SQLException;
public java.sql.ResultSet getUDTs(String, String, String, int[]) throws java.sql.SQLException;
public java.sql.Connection getConnection() throws java.sql.SQLException;
public boolean supportsSavepoints() throws java.sql.SQLException;
public boolean supportsNamedParameters() throws java.sql.SQLException;
public boolean supportsMultipleOpenResults() throws java.sql.SQLException;
public boolean supportsGetGeneratedKeys() throws java.sql.SQLException;
public java.sql.ResultSet getSuperTypes(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getSuperTables(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getAttributes(String, String, String, String) throws java.sql.SQLException;
public boolean supportsResultSetHoldability(int) throws java.sql.SQLException;
public int getResultSetHoldability() throws java.sql.SQLException;
public int getDatabaseMajorVersion() throws java.sql.SQLException;
public int getDatabaseMinorVersion() throws java.sql.SQLException;
public int getJDBCMajorVersion() throws java.sql.SQLException;
public int getJDBCMinorVersion() throws java.sql.SQLException;
public int getSQLStateType() throws java.sql.SQLException;
public boolean locatorsUpdateCopy() throws java.sql.SQLException;
public boolean supportsStatementPooling() throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalDatabaseMetaData40.class
package org.apache.derby.client.am;
public synchronized class LogicalDatabaseMetaData40 extends LogicalDatabaseMetaData {
void LogicalDatabaseMetaData40(LogicalConnection, LogWriter) throws java.sql.SQLException;
public boolean autoCommitFailureClosesAllResultSets() throws java.sql.SQLException;
public java.sql.ResultSet getClientInfoProperties() throws java.sql.SQLException;
public java.sql.ResultSet getFunctions(String, String, String) throws java.sql.SQLException;
public java.sql.ResultSet getFunctionColumns(String, String, String, String) throws java.sql.SQLException;
public java.sql.RowIdLifetime getRowIdLifetime() throws java.sql.SQLException;
public java.sql.ResultSet getSchemas(String, String) throws java.sql.SQLException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public boolean supportsStoredFunctionsUsingCallSyntax() throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public boolean generatedKeyAlwaysReturned() throws java.sql.SQLException;
public java.sql.ResultSet getPseudoColumns(String, String, String, String) throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalPreparedStatement.class
package org.apache.derby.client.am;
public synchronized class LogicalPreparedStatement extends LogicalStatementEntity implements java.sql.PreparedStatement {
public void LogicalPreparedStatement(java.sql.PreparedStatement, stmtcache.StatementKey, StatementCacheInteractor);
public int executeUpdate() throws java.sql.SQLException;
public void addBatch() throws java.sql.SQLException;
public void clearParameters() throws java.sql.SQLException;
public boolean execute() throws java.sql.SQLException;
public void setByte(int, byte) throws java.sql.SQLException;
public void setDouble(int, double) throws java.sql.SQLException;
public void setFloat(int, float) throws java.sql.SQLException;
public void setInt(int, int) throws java.sql.SQLException;
public void setNull(int, int) throws java.sql.SQLException;
public void setLong(int, long) throws java.sql.SQLException;
public void setShort(int, short) throws java.sql.SQLException;
public void setBoolean(int, boolean) throws java.sql.SQLException;
public void setBytes(int, byte[]) throws java.sql.SQLException;
public void setAsciiStream(int, java.io.InputStream, int) throws java.sql.SQLException;
public void setBinaryStream(int, java.io.InputStream, int) throws java.sql.SQLException;
public void setUnicodeStream(int, java.io.InputStream, int) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader, int) throws java.sql.SQLException;
public void setObject(int, Object) throws java.sql.SQLException;
public void setObject(int, Object, int) throws java.sql.SQLException;
public void setObject(int, Object, int, int) throws java.sql.SQLException;
public void setNull(int, int, String) throws java.sql.SQLException;
public void setString(int, String) throws java.sql.SQLException;
public void setBigDecimal(int, java.math.BigDecimal) throws java.sql.SQLException;
public void setURL(int, java.net.URL) throws java.sql.SQLException;
public void setArray(int, java.sql.Array) throws java.sql.SQLException;
public void setBlob(int, java.sql.Blob) throws java.sql.SQLException;
public void setClob(int, java.sql.Clob) throws java.sql.SQLException;
public void setDate(int, java.sql.Date) throws java.sql.SQLException;
public java.sql.ParameterMetaData getParameterMetaData() throws java.sql.SQLException;
public void setRef(int, java.sql.Ref) throws java.sql.SQLException;
public java.sql.ResultSet executeQuery() throws java.sql.SQLException;
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException;
public void setTime(int, java.sql.Time) throws java.sql.SQLException;
public void setTimestamp(int, java.sql.Timestamp) throws java.sql.SQLException;
public void setDate(int, java.sql.Date, java.util.Calendar) throws java.sql.SQLException;
public void setTime(int, java.sql.Time, java.util.Calendar) throws java.sql.SQLException;
public void setTimestamp(int, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException;
public int getFetchDirection() throws java.sql.SQLException;
public int getFetchSize() throws java.sql.SQLException;
public int getMaxFieldSize() throws java.sql.SQLException;
public int getMaxRows() throws java.sql.SQLException;
public int getQueryTimeout() throws java.sql.SQLException;
public int getResultSetConcurrency() throws java.sql.SQLException;
public int getResultSetHoldability() throws java.sql.SQLException;
public int getResultSetType() throws java.sql.SQLException;
public int getUpdateCount() throws java.sql.SQLException;
public void cancel() throws java.sql.SQLException;
public void clearBatch() throws java.sql.SQLException;
public void clearWarnings() throws java.sql.SQLException;
public boolean getMoreResults() throws java.sql.SQLException;
public int[] executeBatch() throws java.sql.SQLException;
public void setFetchDirection(int) throws java.sql.SQLException;
public void setFetchSize(int) throws java.sql.SQLException;
public void setMaxFieldSize(int) throws java.sql.SQLException;
public void setMaxRows(int) throws java.sql.SQLException;
public void setQueryTimeout(int) throws java.sql.SQLException;
public boolean getMoreResults(int) throws java.sql.SQLException;
public void setEscapeProcessing(boolean) throws java.sql.SQLException;
public int executeUpdate(String) throws java.sql.SQLException;
public void addBatch(String) throws java.sql.SQLException;
public void setCursorName(String) throws java.sql.SQLException;
public boolean execute(String) throws java.sql.SQLException;
public int executeUpdate(String, int) throws java.sql.SQLException;
public boolean execute(String, int) throws java.sql.SQLException;
public int executeUpdate(String, int[]) throws java.sql.SQLException;
public boolean execute(String, int[]) throws java.sql.SQLException;
public java.sql.Connection getConnection() throws java.sql.SQLException;
public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException;
public java.sql.ResultSet getResultSet() throws java.sql.SQLException;
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException;
public int executeUpdate(String, String[]) throws java.sql.SQLException;
public boolean execute(String, String[]) throws java.sql.SQLException;
public java.sql.ResultSet executeQuery(String) throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalPreparedStatement40.class
package org.apache.derby.client.am;
public synchronized class LogicalPreparedStatement40 extends LogicalPreparedStatement {
public void LogicalPreparedStatement40(java.sql.PreparedStatement, stmtcache.StatementKey, StatementCacheInteractor);
public void setRowId(int, java.sql.RowId) throws java.sql.SQLException;
public void setNString(int, String) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void setNClob(int, java.sql.NClob) throws java.sql.SQLException;
public void setClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void setBlob(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void setSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException;
public void setAsciiStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setBinaryStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void setAsciiStream(int, java.io.InputStream) throws java.sql.SQLException;
public void setBinaryStream(int, java.io.InputStream) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void setClob(int, java.io.Reader) throws java.sql.SQLException;
public void setBlob(int, java.io.InputStream) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader) throws java.sql.SQLException;
public synchronized boolean isClosed() throws java.sql.SQLException;
public void setPoolable(boolean) throws java.sql.SQLException;
public boolean isPoolable() throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
}
org/apache/derby/client/am/LogicalStatementEntity.class
package org.apache.derby.client.am;
abstract synchronized class LogicalStatementEntity implements java.sql.Statement {
private final boolean hasCallableStmt;
private java.sql.PreparedStatement physicalPs;
private java.sql.CallableStatement physicalCs;
private StatementCacheInteractor owner;
private final stmtcache.StatementKey stmtKey;
private final stmtcache.JDBCStatementCache cache;
protected void LogicalStatementEntity(java.sql.PreparedStatement, stmtcache.StatementKey, StatementCacheInteractor);
synchronized java.sql.PreparedStatement getPhysPs() throws java.sql.SQLException;
synchronized java.sql.CallableStatement getPhysCs() throws java.sql.SQLException;
synchronized java.sql.Statement getPhysStmt() throws java.sql.SQLException;
public synchronized void close() throws java.sql.SQLException;
synchronized boolean isLogicalEntityClosed();
public void closeOnCompletion() throws java.sql.SQLException;
public boolean isCloseOnCompletion() throws java.sql.SQLException;
}
org/apache/derby/client/am/LossOfPrecisionConversionException.class
package org.apache.derby.client.am;
synchronized class LossOfPrecisionConversionException extends SqlException {
void LossOfPrecisionConversionException(LogWriter, String);
}
org/apache/derby/client/am/MaterialPreparedStatement.class
package org.apache.derby.client.am;
public abstract interface MaterialPreparedStatement extends MaterialStatement {
public abstract void writeExecute_(Section, ColumnMetaData, Object[], int, boolean, boolean) throws SqlException;
public abstract void readExecute_() throws SqlException;
public abstract void writeOpenQuery_(Section, int, int, int, ColumnMetaData, Object[]) throws SqlException;
public abstract void writeDescribeInput_(Section) throws SqlException;
public abstract void readDescribeInput_() throws SqlException;
public abstract void writeDescribeOutput_(Section) throws SqlException;
public abstract void readDescribeOutput_() throws SqlException;
}
org/apache/derby/client/am/MaterialStatement.class
package org.apache.derby.client.am;
public abstract interface MaterialStatement {
public abstract void writeExecuteImmediate_(String, Section) throws SqlException;
public abstract void readExecuteImmediate_() throws SqlException;
public abstract void readExecuteImmediateForBatch_(String) throws SqlException;
public abstract void writePrepareDescribeOutput_(String, Section) throws SqlException;
public abstract void readPrepareDescribeOutput_() throws SqlException;
public abstract void writeOpenQuery_(Section, int, int) throws SqlException;
public abstract void readOpenQuery_() throws SqlException;
public abstract void writeExecuteCall_(boolean, String, Section, int, boolean, int, ColumnMetaData, Object[]) throws SqlException;
public abstract void readExecuteCall_() throws SqlException;
public abstract void writePrepare_(String, Section) throws SqlException;
public abstract void readPrepare_() throws SqlException;
public abstract void markClosedOnServer_();
public abstract void writeSetSpecialRegister_(Section, java.util.ArrayList) throws SqlException;
public abstract void readSetSpecialRegister_() throws SqlException;
public abstract void reset_();
}
org/apache/derby/client/am/ParameterMetaData.class
package org.apache.derby.client.am;
public synchronized class ParameterMetaData implements java.sql.ParameterMetaData {
ColumnMetaData columnMetaData_;
public void ParameterMetaData(ColumnMetaData);
public int getParameterCount() throws java.sql.SQLException;
public int getParameterType(int) throws java.sql.SQLException;
public String getParameterTypeName(int) throws java.sql.SQLException;
public String getParameterClassName(int) throws java.sql.SQLException;
public int getParameterMode(int) throws java.sql.SQLException;
public int isNullable(int) throws java.sql.SQLException;
public boolean isSigned(int) throws java.sql.SQLException;
public int getPrecision(int) throws java.sql.SQLException;
public int getScale(int) throws java.sql.SQLException;
}
org/apache/derby/client/am/ParameterMetaData40.class
package org.apache.derby.client.am;
public synchronized class ParameterMetaData40 extends ParameterMetaData {
public void ParameterMetaData40(ColumnMetaData);
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
}
org/apache/derby/client/am/PreparedStatement$PossibleTypes.class
package org.apache.derby.client.am;
synchronized class PreparedStatement$PossibleTypes {
private final int[] possibleTypes;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_GENERIC_SCALAR;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_DATE;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_TIME;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_TIMESTAMP;
private static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_STRING;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_BYTES;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_BINARYSTREAM;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_ASCIISTREAM;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_CHARACTERSTREAM;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_BLOB;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_IN_SET_CLOB;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_GENERIC_SCALAR_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_GENERIC_CHARACTERS_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_VARBINARY_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_BINARY_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_LONGVARBINARY_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_DATE_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_TIME_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_TIMESTAMP_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_CLOB_NULL;
public static final PreparedStatement$PossibleTypes POSSIBLE_TYPES_FOR_BLOB_NULL;
public static final PreparedStatement$PossibleTypes DEFAULT_POSSIBLE_TYPES_FOR_NULL;
private void PreparedStatement$PossibleTypes(int[]);
boolean checkType(int);
static SqlException throw22005Exception(LogWriter, int, int) throws SqlException;
static PreparedStatement$PossibleTypes getPossibleTypesForNull(int);
static void ();
}
org/apache/derby/client/am/PreparedStatement.class
package org.apache.derby.client.am;
public synchronized class PreparedStatement extends Statement implements java.sql.PreparedStatement, PreparedStatementCallbackInterface {
public MaterialPreparedStatement materialPreparedStatement_;
public String sql_;
public boolean outputRegistered_;
public Object[] parameters_;
boolean[] parameterSet_;
boolean[] parameterRegistered_;
public ColumnMetaData parameterMetaData_;
private java.util.ArrayList parameterTypeList;
String positionedUpdateCursorName_;
protected final org.apache.derby.client.ClientPooledConnection pooledConnection_;
boolean listenToUnitOfWork_;
void setInput(int, Object);
private void initPreparedStatement();
protected void initResetPreparedStatement();
public void reset(boolean) throws SqlException;
void resetForReuse() throws SqlException;
private void resetParameters();
public void PreparedStatement(Agent, Connection, String, Section, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public void resetPreparedStatement(Agent, Connection, String, Section) throws SqlException;
private void initPreparedStatement(String, Section) throws SqlException;
public void PreparedStatement(Agent, Connection, String, int, int, int, int, String[], int[], org.apache.derby.client.ClientPooledConnection) throws SqlException;
public void resetPreparedStatement(Agent, Connection, String, int, int, int, int, String[], int[]) throws SqlException;
private void initPreparedStatement(String) throws SqlException;
public void resetPreparedStatement(Agent, Connection, String, Section, ColumnMetaData, ColumnMetaData) throws SqlException;
private void initPreparedStatement(ColumnMetaData, ColumnMetaData);
void prepare() throws SqlException;
public void addBatch(String) throws java.sql.SQLException;
public boolean execute(String) throws java.sql.SQLException;
public java.sql.ResultSet executeQuery(String) throws java.sql.SQLException;
public int executeUpdate(String) throws java.sql.SQLException;
public java.sql.ResultSet executeQuery() throws java.sql.SQLException;
ResultSet executeQueryX() throws SqlException;
public int executeUpdate() throws java.sql.SQLException;
private int executeUpdateX() throws SqlException;
public void setNull(int, int) throws java.sql.SQLException;
void setNullX(int, int) throws SqlException;
public void setNull(int, int, String) throws java.sql.SQLException;
public void setBoolean(int, boolean) throws java.sql.SQLException;
public void setByte(int, byte) throws java.sql.SQLException;
public void setShort(int, short) throws java.sql.SQLException;
void setShortX(int, short) throws SqlException;
public void setInt(int, int) throws java.sql.SQLException;
void setIntX(int, int) throws SqlException;
public void setLong(int, long) throws java.sql.SQLException;
void setLongX(int, long);
public void setFloat(int, float) throws java.sql.SQLException;
public void setDouble(int, double) throws java.sql.SQLException;
public void setBigDecimal(int, java.math.BigDecimal) throws java.sql.SQLException;
public void setDate(int, java.sql.Date, java.util.Calendar) throws java.sql.SQLException;
public void setDate(int, java.sql.Date) throws java.sql.SQLException;
public void setTime(int, java.sql.Time, java.util.Calendar) throws java.sql.SQLException;
public void setTime(int, java.sql.Time) throws java.sql.SQLException;
public void setTimestamp(int, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException;
public void setTimestamp(int, java.sql.Timestamp) throws java.sql.SQLException;
public void setString(int, String) throws java.sql.SQLException;
void setStringX(int, String) throws SqlException;
public void setBytes(int, byte[]) throws java.sql.SQLException;
public void setBytesX(int, byte[]) throws SqlException;
public void setBinaryStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setBinaryStream(int, java.io.InputStream, int) throws java.sql.SQLException;
protected void setBinaryStreamX(int, java.io.InputStream, int) throws SqlException;
public void setAsciiStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void setAsciiStream(int, java.io.InputStream, int) throws java.sql.SQLException;
private void checkStreamLength(long) throws java.sql.SQLException;
private void checkTypeForSetAsciiStream(int) throws SqlException, java.sql.SQLException;
private void checkTypeForSetBinaryStream(int) throws SqlException, java.sql.SQLException;
private void checkTypeForSetCharacterStream(int) throws SqlException, java.sql.SQLException;
private void checkTypeForSetBlob(int) throws SqlException, java.sql.SQLException;
private void checkTypeForSetClob(int) throws SqlException, java.sql.SQLException;
public void setUnicodeStream(int, java.io.InputStream, int) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void setCharacterStream(int, java.io.Reader, int) throws java.sql.SQLException;
public void setBlob(int, java.sql.Blob) throws java.sql.SQLException;
public void setBlobX(int, java.sql.Blob) throws SqlException;
public void setClob(int, java.sql.Clob) throws java.sql.SQLException;
void setClobX(int, java.sql.Clob) throws SqlException;
public void setArray(int, java.sql.Array) throws java.sql.SQLException;
public void setRef(int, java.sql.Ref) throws java.sql.SQLException;
public void setObject(int, Object) throws java.sql.SQLException;
private void setUDTX(int, Object) throws SqlException, java.sql.SQLException;
public void setObject(int, Object, int) throws java.sql.SQLException;
public void setObject(int, Object, int, int) throws java.sql.SQLException;
private void setObjectX(int, Object, int, int) throws SqlException;
public void clearParameters() throws java.sql.SQLException;
public boolean execute() throws java.sql.SQLException;
boolean executeX() throws SqlException;
public void addBatch() throws java.sql.SQLException;
public int[] executeBatch() throws java.sql.SQLException, BatchUpdateException;
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException;
private ColumnMetaData getMetaDataX() throws SqlException;
public boolean execute(String, int) throws java.sql.SQLException;
public boolean execute(String, String[]) throws java.sql.SQLException;
public boolean execute(String, int[]) throws java.sql.SQLException;
public int executeUpdate(String, int) throws java.sql.SQLException;
public int executeUpdate(String, String[]) throws java.sql.SQLException;
public int executeUpdate(String, int[]) throws java.sql.SQLException;
public void setURL(int, java.net.URL) throws java.sql.SQLException;
public java.sql.ParameterMetaData getParameterMetaData() throws java.sql.SQLException;
private ParameterMetaData getParameterMetaDataX() throws SqlException;
private ColumnMetaData getColumnMetaDataX() throws SqlException;
public void writeExecute(Section, ColumnMetaData, Object[], int, boolean, boolean) throws SqlException;
public void readExecute() throws SqlException;
private void writeOpenQuery(Section, int, int, int, ColumnMetaData, Object[]) throws SqlException;
public void writeDescribeInput(Section) throws SqlException;
public void readDescribeInput() throws SqlException;
public void completeDescribeInput(ColumnMetaData, Sqlca);
public void writeDescribeOutput(Section) throws SqlException;
public void readDescribeOutput() throws SqlException;
public void completeDescribeOutput(ColumnMetaData, Sqlca);
void writePrepareDescribeInputOutput() throws SqlException;
void readPrepareDescribeInputOutput() throws SqlException;
void writePrepareDescribeInput() throws SqlException;
void readPrepareDescribeInput() throws SqlException;
void completePrepareDescribe();
private Object[] expandObjectArray(Object[], int);
private boolean[] expandBooleanArray(boolean[], int);
void writePrepareDescribeInputOutput(String, Section) throws SqlException;
void flowPrepareDescribeInputOutput() throws SqlException;
private void flowExecute(int) throws SqlException;
public int[] executeBatchX(boolean) throws SqlException, java.sql.SQLException, BatchUpdateException;
private int[] executeBatchRequestX(boolean) throws SqlException, BatchUpdateException;
public void listenToUnitOfWork();
public void completeLocalCommit(java.util.Iterator);
public void completeLocalRollback(java.util.Iterator);
protected String getJdbcStatementInterfaceName();
void checkForValidParameterIndex(int) throws SqlException;
private void checkThatAllParametersAreSet() throws SqlException;
void checkForValidScale(int) throws SqlException;
private void checkForSupportedDataType(int) throws SqlException;
void checkScaleForINOUTDecimal(int, int) throws SqlException;
protected void markClosed(boolean);
public void setAsciiStream(int, java.io.InputStream) throws java.sql.SQLException;
public void setBinaryStream(int, java.io.InputStream) throws java.sql.SQLException;
public void setClob(int, java.io.Reader) throws java.sql.SQLException;
public void setClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void setBlob(int, java.io.InputStream) throws java.sql.SQLException;
public void setBlob(int, java.io.InputStream, long) throws java.sql.SQLException;
private void checkStatementValidity(SqlException) throws java.sql.SQLException;
}
org/apache/derby/client/am/PreparedStatement40.class
package org.apache.derby.client.am;
public synchronized class PreparedStatement40 extends PreparedStatement {
public void PreparedStatement40(Agent, Connection, String, Section, org.apache.derby.client.ClientPooledConnection) throws SqlException;
public void PreparedStatement40(Agent, Connection, String, int, int, int, int, String[], int[], org.apache.derby.client.ClientPooledConnection) throws SqlException;
public void setRowId(int, java.sql.RowId) throws java.sql.SQLException;
public void setNString(int, String) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void setNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader) throws java.sql.SQLException;
public void setNClob(int, java.sql.NClob) throws java.sql.SQLException;
public void setNClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void setSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
}
org/apache/derby/client/am/PreparedStatementCallbackInterface.class
package org.apache.derby.client.am;
public abstract interface PreparedStatementCallbackInterface extends StatementCallbackInterface {
public abstract void completeDescribeInput(ColumnMetaData, Sqlca);
public abstract void completeDescribeOutput(ColumnMetaData, Sqlca);
}
org/apache/derby/client/am/ProductLevel.class
package org.apache.derby.client.am;
public synchronized class ProductLevel {
public String databaseProductName_;
public int versionLevel_;
public int releaseLevel_;
public int modificationLevel_;
public String databaseProductVersion_;
public void ProductLevel(String, String, String);
public boolean greaterThanOrEqualTo(int, int, int);
public boolean lessThan(int, int, int);
}
org/apache/derby/client/am/ResultSet.class
package org.apache.derby.client.am;
public abstract synchronized class ResultSet implements java.sql.ResultSet, ResultSetCallbackInterface {
public Statement statement_;
Statement outerStatement_;
public ColumnMetaData resultSetMetaData_;
private SqlWarning warnings_;
public Cursor cursor_;
private LOBStateTracker lobState;
protected Agent agent_;
public Section generatedSection_;
private CloseFilterInputStream is_;
public final Connection connection_;
public static final int scrollOrientation_relative__ = 1;
public static final int scrollOrientation_absolute__ = 2;
public static final int scrollOrientation_after__ = 3;
public static final int scrollOrientation_before__ = 4;
public static final int scrollOrientation_prior__ = 5;
public static final int scrollOrientation_first__ = 6;
public static final int scrollOrientation_last__ = 7;
public static final int scrollOrientation_current__ = 8;
public static final int scrollOrientation_next__ = 0;
public static final int updatability_unknown__ = 0;
public static final int updatability_readOnly__ = 1;
public static final int updatability_delete__ = 2;
public static final int updatability_update__ = 4;
public static final int sensitivity_unknown__ = 0;
public static final int sensitivity_insensitive__ = 1;
public static final int sensitivity_sensitive_static__ = 2;
public static final int sensitivity_sensitive_dynamic__ = 3;
private static final int WAS_NULL = 1;
private static final int WAS_NOT_NULL = 2;
private static final int WAS_NULL_UNSET = 0;
public static final int NEXT_ROWSET = 1;
public static final int PREVIOUS_ROWSET = 2;
public static final int ABSOLUTE_ROWSET = 3;
public static final int FIRST_ROWSET = 4;
public static final int LAST_ROWSET = 5;
public static final int RELATIVE_ROWSET = 6;
public static final int REFRESH_ROWSET = 7;
public static final byte DDM_RETURN_CALLER = 1;
public static final byte DDM_RETURN_CLIENT = 2;
private int wasNull_;
protected byte rsReturnability_;
boolean openOnClient_;
public boolean openOnServer_;
public Sqlca queryTerminatingSqlca_;
boolean autoCommitted_;
public boolean isValidCursorPosition_;
public boolean cursorHold_;
public long queryInstanceIdentifier_;
public int resultSetType_;
public int resultSetConcurrency_;
public int resultSetHoldability_;
public boolean scrollable_;
public int sensitivity_;
public boolean isRowsetCursor_;
public boolean isBeforeFirst_;
public boolean isAfterLast_;
public boolean isFirst_;
public boolean isLast_;
public boolean rowsetContainsLastRow_;
public Sqlca[] rowsetSqlca_;
protected int suggestedFetchSize_;
public int fetchSize_;
public int fetchDirection_;
public long rowCount_;
protected long absolutePosition_;
protected long firstRowInRowset_;
protected long lastRowInRowset_;
protected long currentRowInRowset_;
protected long absoluteRowNumberForTheIntendedRow_;
private boolean isOnInsertRow_;
protected boolean isOnCurrentRow_;
public int rowsReceivedInCurrentRowset_;
public int rowsYetToBeReceivedForRowset_;
private Object[] updatedColumns_;
private boolean[] columnUpdated_;
private PreparedStatement preparedStatementForUpdate_;
private PreparedStatement preparedStatementForDelete_;
private PreparedStatement preparedStatementForInsert_;
public int nestingLevel_;
public boolean cursorUnpositionedOnServer_;
private int maxRows_;
private boolean[] columnUsedFlags_;
boolean listenToUnitOfWork_;
protected void ResultSet(Agent, Statement, Cursor, int, int, int);
public final boolean next() throws java.sql.SQLException;
boolean nextX() throws SqlException;
public void close() throws java.sql.SQLException;
public final void closeX() throws SqlException;
private void closeStatementOnCompletion();
public void nullDataForGC();
void flowCloseAndAutoCommitIfNotAutoCommitted() throws SqlException;
private boolean writeCloseAndAutoCommit() throws SqlException;
private void readCloseAndAutoCommit(boolean) throws SqlException;
void writeClose() throws SqlException;
void readClose() throws SqlException;
private void writeAutoCommitIfNotAutoCommitted() throws SqlException;
private void readAutoCommitIfNotAutoCommitted() throws SqlException;
public boolean wasNull() throws java.sql.SQLException;
public boolean getBoolean(int) throws java.sql.SQLException;
public byte getByte(int) throws java.sql.SQLException;
public short getShort(int) throws java.sql.SQLException;
public int getInt(int) throws java.sql.SQLException;
public long getLong(int) throws java.sql.SQLException;
public float getFloat(int) throws java.sql.SQLException;
public double getDouble(int) throws java.sql.SQLException;
public java.math.BigDecimal getBigDecimal(int, int) throws java.sql.SQLException;
public java.math.BigDecimal getBigDecimal(int) throws java.sql.SQLException;
public java.sql.Date getDate(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Date getDate(int) throws java.sql.SQLException;
public java.sql.Time getTime(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Time getTime(int) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(int, java.util.Calendar) throws java.sql.SQLException;
public java.sql.Timestamp getTimestamp(int) throws java.sql.SQLException;
private java.sql.Date convertFromDefaultCalendar(java.sql.Date, java.util.Calendar);
private java.sql.Time convertFromDefaultCalendar(java.sql.Time, java.util.Calendar);
private java.sql.Timestamp convertFromDefaultCalendar(java.sql.Timestamp, java.util.Calendar);
public String getString(int) throws java.sql.SQLException;
public byte[] getBytes(int) throws java.sql.SQLException;
public java.io.InputStream getBinaryStream(int) throws java.sql.SQLException;
public java.io.InputStream getAsciiStream(int) throws java.sql.SQLException;
public java.io.InputStream getUnicodeStream(int) throws java.sql.SQLException;
public java.io.Reader getCharacterStream(int) throws java.sql.SQLException;
public java.sql.Blob getBlob(int) throws java.sql.SQLException;
public java.sql.Clob getClob(int) throws java.sql.SQLException;
public java.sql.Ref getRef(int) throws java.sql.SQLException;
public java.sql.Array getArray(int) throws java.sql.SQLException;
public Object getObject(int) throws java.sql.SQLException;
Object getObjectX(int) throws SqlException;
public Object getObject(int, java.util.Map) throws java.sql.SQLException;
private boolean wasNonNullSensitiveUpdate(int);
private boolean wasNullSensitiveUpdate(int);
private void setWasNull(int);
private boolean isNull(int);
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 java.math.BigDecimal getBigDecimal(String, int) throws java.sql.SQLException;
public final java.math.BigDecimal getBigDecimal(String) throws java.sql.SQLException;
public final java.sql.Date getDate(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) 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) throws java.sql.SQLException;
public final java.sql.Timestamp getTimestamp(String, java.util.Calendar) throws java.sql.SQLException;
public final String getString(String) throws java.sql.SQLException;
public final byte[] getBytes(String) throws java.sql.SQLException;
public final java.io.InputStream getBinaryStream(String) throws java.sql.SQLException;
public final java.io.InputStream getAsciiStream(String) throws java.sql.SQLException;
public final java.io.InputStream getUnicodeStream(String) throws java.sql.SQLException;
public final java.io.Reader getCharacterStream(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.Ref getRef(String) throws java.sql.SQLException;
public final Object getObject(String) throws java.sql.SQLException;
public final Object getObject(String, java.util.Map) throws java.sql.SQLException;
public final java.sql.SQLWarning getWarnings() throws java.sql.SQLException;
public final void clearWarnings() throws java.sql.SQLException;
public final void clearWarningsX();
public String getCursorName() throws java.sql.SQLException;
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException;
ColumnMetaData getMetaDataX() throws SqlException;
public final int findColumn(String) throws java.sql.SQLException;
protected final int findColumnX(String, String) throws SqlException;
public boolean isBeforeFirst() throws java.sql.SQLException;
private boolean isBeforeFirstX() throws SqlException;
public boolean isAfterLast() throws java.sql.SQLException;
private boolean isAfterLastX() throws SqlException;
public boolean isFirst() throws java.sql.SQLException;
private boolean isFirstX();
public boolean isLast() throws java.sql.SQLException;
private boolean isLastX() throws SqlException;
public void beforeFirst() throws java.sql.SQLException;
private void beforeFirstX() throws SqlException;
public void afterLast() throws java.sql.SQLException;
private void afterLastX() throws SqlException;
public boolean first() throws java.sql.SQLException;
private boolean firstX() throws SqlException;
public boolean last() throws java.sql.SQLException;
private boolean lastX() throws SqlException;
public int getRow() throws java.sql.SQLException;
private int getRowX() throws SqlException;
public boolean absolute(int) throws java.sql.SQLException;
public boolean absoluteX(int) throws SqlException;
public boolean relative(int) throws java.sql.SQLException;
private boolean relativeX(int) throws SqlException;
public boolean previous() throws java.sql.SQLException;
private boolean previousX() throws SqlException;
public void setFetchDirection(int) throws java.sql.SQLException;
public int getFetchDirection() throws java.sql.SQLException;
public void setFetchSize(int) throws java.sql.SQLException;
public int getFetchSize() throws java.sql.SQLException;
public int getType() throws java.sql.SQLException;
public int getConcurrency() throws java.sql.SQLException;
public boolean rowUpdated() throws java.sql.SQLException;
public boolean rowInserted() throws java.sql.SQLException;
public boolean rowDeleted() throws java.sql.SQLException;
public void updateNull(int) throws java.sql.SQLException;
public void updateBoolean(int, boolean) throws java.sql.SQLException;
public void updateByte(int, byte) throws java.sql.SQLException;
public void updateShort(int, short) throws java.sql.SQLException;
public void updateInt(int, int) throws java.sql.SQLException;
public void updateLong(int, long) throws java.sql.SQLException;
public void updateFloat(int, float) throws java.sql.SQLException;
public void updateDouble(int, double) throws java.sql.SQLException;
public void updateBigDecimal(int, java.math.BigDecimal) throws java.sql.SQLException;
public void updateDate(int, java.sql.Date) throws java.sql.SQLException;
public void updateTime(int, java.sql.Time) throws java.sql.SQLException;
public void updateTimestamp(int, java.sql.Timestamp) throws java.sql.SQLException;
public void updateString(int, String) throws java.sql.SQLException;
public void updateBytes(int, byte[]) throws java.sql.SQLException;
public void updateBinaryStream(int, java.io.InputStream, int) throws java.sql.SQLException;
public void updateAsciiStream(int, java.io.InputStream, int) throws java.sql.SQLException;
public void updateCharacterStream(int, java.io.Reader, int) throws java.sql.SQLException;
public void updateObject(int, Object, int) throws java.sql.SQLException;
public void updateObject(int, Object) throws java.sql.SQLException;
public void updateNCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void updateNClob(int, java.io.Reader) throws java.sql.SQLException;
public void updateNull(String) throws java.sql.SQLException;
public void updateBoolean(String, boolean) throws java.sql.SQLException;
public void updateByte(String, byte) throws java.sql.SQLException;
public void updateShort(String, short) throws java.sql.SQLException;
public void updateInt(String, int) throws java.sql.SQLException;
public void updateLong(String, long) throws java.sql.SQLException;
public void updateFloat(String, float) throws java.sql.SQLException;
public void updateDouble(String, double) throws java.sql.SQLException;
public void updateBigDecimal(String, java.math.BigDecimal) throws java.sql.SQLException;
public void updateDate(String, java.sql.Date) throws java.sql.SQLException;
public void updateTime(String, java.sql.Time) throws java.sql.SQLException;
public void updateTimestamp(String, java.sql.Timestamp) throws java.sql.SQLException;
public void updateString(String, String) throws java.sql.SQLException;
public void updateBytes(String, byte[]) throws java.sql.SQLException;
public void updateBinaryStream(String, java.io.InputStream, int) throws java.sql.SQLException;
public void updateAsciiStream(String, java.io.InputStream, int) throws java.sql.SQLException;
public void updateCharacterStream(String, java.io.Reader, int) throws java.sql.SQLException;
public void updateObject(String, Object, int) throws java.sql.SQLException;
public void updateObject(String, Object) throws java.sql.SQLException;
public void updateNCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
public void updateNClob(String, java.io.Reader) throws java.sql.SQLException;
public void insertRow() throws java.sql.SQLException;
private void insertRowX() throws SqlException;
public void updateRow() throws java.sql.SQLException;
private boolean updateRowX() throws SqlException;
public void deleteRow() throws java.sql.SQLException;
private void deleteRowX() throws SqlException;
public void refreshRow() throws java.sql.SQLException;
private void refreshRowX() throws SqlException;
public void cancelRowUpdates() throws java.sql.SQLException;
public void moveToInsertRow() throws java.sql.SQLException;
public void moveToCurrentRow() throws java.sql.SQLException;
private void moveToCurrentRowX() throws SqlException;
public java.sql.Statement getStatement() throws java.sql.SQLException;
public java.net.URL getURL(int) throws java.sql.SQLException;
public java.net.URL getURL(String) throws java.sql.SQLException;
public void updateRef(int, java.sql.Ref) throws java.sql.SQLException;
public void updateRef(String, java.sql.Ref) throws java.sql.SQLException;
public void updateBlob(int, java.sql.Blob) throws java.sql.SQLException;
public void updateBlob(String, java.sql.Blob) throws java.sql.SQLException;
public void updateBlob(int, java.io.InputStream, long) throws java.sql.SQLException;
public void updateBlob(String, java.io.InputStream, long) throws java.sql.SQLException;
public void updateArray(int, java.sql.Array) throws java.sql.SQLException;
public void updateArray(String, java.sql.Array) throws java.sql.SQLException;
public boolean repositionScrollableResultSetBeforeJDBC1PositionedUpdateDelete() throws SqlException;
public void flowPositioningFetch(int, int) throws DisconnectException;
protected void positionToCurrentRowAndUpdate() throws SqlException;
protected void insert() throws SqlException;
protected void update() throws SqlException;
protected void positionToCurrentRowAndDelete() throws SqlException;
protected void delete() throws SqlException;
public void setRowsetAfterLastEvent() throws SqlException;
public void setRowsetBeforeFirstEvent() throws SqlException;
public void setRowsetNoRowsEvent();
private boolean isServersCursorPositionBeforeFirst() throws SqlException;
private boolean isServerCursorPositionAfterLast();
public void setValidCursorPosition(boolean);
protected void moveToAfterLast() throws DisconnectException;
protected void moveToBeforeFirst() throws DisconnectException;
public void flowFetch() throws DisconnectException, SqlException;
public void writeInsertRow(boolean) throws java.sql.SQLException;
public void writeUpdateRow(boolean) throws java.sql.SQLException;
public void writeDeleteRow() throws java.sql.SQLException;
public void readInsertRow() throws DisconnectException, SqlException;
public void readUpdateRow() throws DisconnectException, SqlException;
public void readDeleteRow() throws DisconnectException, SqlException;
public void listenToUnitOfWork();
public void completeLocalCommit(java.util.Iterator);
public void completeLocalRollback(java.util.Iterator);
private void nullOutReferenceInStatement();
void markClosed();
void markClosed(boolean);
public void markClosedOnServer();
void markAutoCommitted();
public void earlyCloseComplete(Sqlca);
public int completeSqlca(Sqlca);
public void setRowCountEvent(long) throws DisconnectException;
public void accumulateWarning(SqlWarning);
protected boolean rowCountIsUnknown();
protected boolean rowCountIsKnown();
private void updateColumn(int, Object);
private String buildInsertString() throws SqlException;
private String buildUpdateString() throws SqlException;
private String buildDeleteString() throws SqlException;
private String getTableName() throws SqlException;
private String getServerCursorName() throws SqlException;
private void getPreparedStatementForInsert() throws SqlException;
private void getPreparedStatementForUpdate() throws SqlException;
private void getPreparedStatementForDelete() throws SqlException;
private final void resetUpdatedColumnsForInsert();
private final void resetUpdatedColumns();
private final long getRowUncast();
private final void checkGetterPreconditions(int, String) throws SqlException;
private final void checkUpdatePreconditions(int, String) throws SqlException;
final void checkForValidColumnIndex(int) throws SqlException;
protected final void checkForClosedResultSet(String) throws SqlException;
private final void checkForUpdatableResultSet(String) throws SqlException;
private final void checkForValidCursorPosition() throws SqlException;
private final void checkPositionedOnPlainRow() throws SqlException;
private final void checkThatResultSetTypeIsScrollable() throws SqlException;
private final void checkThatResultSetIsNotDynamic() throws SqlException;
private boolean resultSetContainsNoRows() throws SqlException;
private boolean rowIsInCurrentRowset(long, int) throws SqlException;
private boolean rowIsInCurrentRowset(long);
private void markPositionedUpdateDeletePreparedStatementsClosed();
protected void updateColumnInfoFromCache();
protected final void checkAndThrowReceivedQueryTerminatingException() throws SqlException;
public void parseScrollableRowset() throws SqlException;
public byte getRSReturnability();
public void setRSReturnability(byte);
protected void getRowCount() throws SqlException;
private void flowGetRowset(int, long) throws SqlException;
private boolean getNextRowset() throws SqlException;
private void adjustNextRowset();
private boolean getPreviousRowset() throws SqlException;
private void adjustPreviousRowset(int, long, boolean);
private boolean getAbsoluteRowset(long) throws SqlException;
private void adjustAbsoluteRowset(long);
private boolean getRelativeRowset(long) throws SqlException;
private void adjustRelativeRowset(long);
private boolean getFirstRowset() throws SqlException;
private void adjustFirstRowset();
private boolean getLastRowset(long) throws SqlException;
private void adjustLastRowset(long);
private boolean getRefreshRowset() throws SqlException;
private void adjustRefreshRowset();
private void setAbsolutePositionBasedOnAllRowsReceived();
public abstract void writeFetch_(Section) throws SqlException;
public abstract void readFetch_() throws SqlException;
public abstract void writeScrollableFetch_(Section, int, int, long, boolean) throws SqlException;
public abstract void readScrollableFetch_() throws SqlException;
public abstract void writePositioningFetch_(Section, int, long) throws SqlException;
public abstract void readPositioningFetch_() throws SqlException;
public abstract void writeCursorClose_(Section) throws SqlException;
public abstract void readCursorClose_() throws SqlException;
protected abstract void parseRowset_() throws SqlException;
public abstract void setFetchSize_(int);
protected abstract void preClose_() throws SqlException;
public ConnectionCallbackInterface getConnectionCallbackInterface();
public StatementCallbackInterface getStatementCallbackInterface();
public void expandRowsetSqlca();
private final int checkRowsetSqlca() throws SqlException;
private final int checkRowsetSqlca(int) throws SqlException;
private void resetRowsetFlags();
private void resetRowsetSqlca();
private CloseFilterInputStream createCloseFilterInputStream(java.io.InputStream) throws SqlException;
private void closeCloseFilterInputStream() throws SqlException;
void useStreamOrLOB(int) throws SqlException;
private void unuseStreamsAndLOBs();
private java.sql.SQLException jdbc3MethodNotSupported();
public final int getHoldability() throws java.sql.SQLException;
public final boolean isClosed() throws java.sql.SQLException;
public void updateAsciiStream(int, java.io.InputStream) throws java.sql.SQLException;
public void updateAsciiStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void updateBinaryStream(int, java.io.InputStream) throws java.sql.SQLException;
public void updateBinaryStream(int, java.io.InputStream, long) throws java.sql.SQLException;
public void updateBlob(int, java.io.InputStream) throws java.sql.SQLException;
public void updateCharacterStream(int, java.io.Reader) throws java.sql.SQLException;
public void updateCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void updateClob(int, java.io.Reader) throws java.sql.SQLException;
public void updateAsciiStream(String, java.io.InputStream) throws java.sql.SQLException;
public void updateAsciiStream(String, java.io.InputStream, long) throws java.sql.SQLException;
public void updateBinaryStream(String, java.io.InputStream) throws java.sql.SQLException;
public void updateBinaryStream(String, java.io.InputStream, long) throws java.sql.SQLException;
public void updateBlob(String, java.io.InputStream) throws java.sql.SQLException;
public void updateCharacterStream(String, java.io.Reader) throws java.sql.SQLException;
public void updateCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
public void updateClob(String, java.io.Reader) throws java.sql.SQLException;
public void updateClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void updateClob(String, java.io.Reader, long) throws java.sql.SQLException;
public void updateClob(int, java.sql.Clob) throws java.sql.SQLException;
public void updateClob(String, java.sql.Clob) throws java.sql.SQLException;
public final void markLOBAsPublished(int);
final void createLOBColumnTracker();
}
org/apache/derby/client/am/ResultSetCallbackInterface.class
package org.apache.derby.client.am;
public abstract interface ResultSetCallbackInterface extends UnitOfWorkListener {
public abstract void earlyCloseComplete(Sqlca);
public abstract int completeSqlca(Sqlca);
public abstract void accumulateWarning(SqlWarning);
public abstract StatementCallbackInterface getStatementCallbackInterface();
public abstract ConnectionCallbackInterface getConnectionCallbackInterface();
}
org/apache/derby/client/am/SQLExceptionFactory.class
package org.apache.derby.client.am;
public synchronized class SQLExceptionFactory {
public void SQLExceptionFactory();
public static java.sql.SQLException notImplemented(String);
public java.sql.SQLException getSQLException(String, String, int);
}
org/apache/derby/client/am/SQLExceptionFactory40.class
package org.apache.derby.client.am;
public synchronized class SQLExceptionFactory40 extends SQLExceptionFactory {
private static final String DRDA_CONVERSATION_TERMINATED = 58009;
private static final String DRDA_COMMAND_NOT_SUPPORTED = 58014;
private static final String DRDA_OBJECT_NOT_SUPPORTED = 58015;
private static final String DRDA_PARAM_NOT_SUPPORTED = 58016;
private static final String DRDA_VALUE_NOT_SUPPORTED = 58017;
private static final String DRDA_SQLTYPE_NOT_SUPPORTED = 56084;
private static final String DRDA_CONVERSION_NOT_SUPPORTED = 57017;
private static final String DRDA_REPLY_MSG_NOT_SUPPORTED = 58018;
public void SQLExceptionFactory40();
public java.sql.SQLException getSQLException(String, String, int);
}
org/apache/derby/client/am/Savepoint.class
package org.apache.derby.client.am;
public synchronized class Savepoint implements java.sql.Savepoint {
int savepointId_;
String savepointName_;
Agent agent_;
void Savepoint(Agent, String);
void Savepoint(Agent, int);
public int getSavepointId() throws java.sql.SQLException;
public String getSavepointName() throws java.sql.SQLException;
}
org/apache/derby/client/am/Section.class
package org.apache.derby.client.am;
public synchronized class Section {
protected int sectionNumber;
protected String packageName;
protected String serverCursorName;
int resultSetHoldability_;
byte[] PKGNAMCBytes;
boolean isGenerated;
public String serverCursorNameForPositionedUpdate_;
protected transient String clientCursorName_;
protected Agent agent_;
public void Section(Agent, String, int, String, int);
public void Section(Agent, String, int, String, int, boolean);
private void init(Agent, String, int, String, int, boolean);
public void setPKGNAMCBytes(byte[]);
public byte[] getPKGNAMCBytes();
public String getPackageName();
public int getSectionNumber();
public String getPackage();
public String getServerCursorName();
public String getServerCursorNameForPositionedUpdate();
public String getClientCursorName();
public void setClientCursorName(String);
public void free();
public boolean isReservedPositionedUpdate();
public int getStaticStatementType();
public Section getPositionedUpdateSection() throws SqlException;
public void setCursorName(String);
}
org/apache/derby/client/am/SectionManager.class
package org.apache.derby.client.am;
public synchronized class SectionManager {
String collection_;
Agent agent_;
static final int HOLD = 0;
static final int NO_HOLD = 1;
java.util.Stack freeSectionsNonHold_;
java.util.Stack freeSectionsHold_;
int nextAvailableSectionNumber_;
public byte[] holdPKGNAMCBytes;
public byte[] noHoldPKGNAMCBytes;
static final String packageNameWithHold__ = SYSLH000;
static final String packageNameWithNoHold__ = SYSLN000;
static final String cursorNamePrefixWithHold__ = SQL_CURLH000C;
static final String cursorNamePrefixWithNoHold__ = SQL_CURLN000C;
private java.util.Hashtable positionedUpdateCursorNameToQuerySection_;
private java.util.Hashtable positionedUpdateCursorNameToResultSet_;
String databaseName;
int maxNumSections_;
public void SectionManager(String, Agent, String);
public void setPKGNAMCBytes(byte[], int);
public Section getDynamicSection(int) throws SqlException;
protected Section getSection(java.util.Stack, String, String, int) throws SqlException;
public void freeSection(Section, int);
Section getPositionedUpdateSection(Section) throws SqlException;
Section getPositionedUpdateSection(String, boolean) throws SqlException;
void mapCursorNameToQuerySection(String, Section);
void mapCursorNameToResultSet(String, ResultSet);
ResultSet getPositionedUpdateResultSet(String) throws SqlException;
void removeCursorNameToResultSetMapping(String, String);
void removeCursorNameToQuerySectionMapping(String, String);
}
org/apache/derby/client/am/SignedBinary.class
package org.apache.derby.client.am;
public synchronized class SignedBinary {
public static final long MAX_LONG_6_BYTES_SIGNED = 140737488355327;
public static final int BIG_ENDIAN = 1;
public static final int LITTLE_ENDIAN = 2;
private void SignedBinary();
public static final byte getByte(byte[], int);
public static final short getShort(byte[], int);
public static final int getInt(byte[], int);
public static final long getLong(byte[], int);
public static final void shortToBigEndianBytes(byte[], int, short);
public static final void intToBigEndianBytes(byte[], int, int);
public static void long6BytesToBigEndianBytes(byte[], int, long);
public static final void longToBigEndianBytes(byte[], int, long);
}
org/apache/derby/client/am/SqlCode.class
package org.apache.derby.client.am;
public synchronized class SqlCode {
private int code_;
public static final SqlCode invalidCommitOrRollbackUnderXA;
public static final SqlCode invalidSetAutoCommitUnderXA;
public static final SqlCode queuedXAError;
public static final SqlCode disconnectError;
public static final SqlCode undefinedError;
public static final SqlCode END_OF_DATA;
public void SqlCode(int);
public final int getCode();
static void ();
}
org/apache/derby/client/am/SqlException.class
package org.apache.derby.client.am;
public synchronized class SqlException extends Exception implements Diagnosable {
protected static final int DEFAULT_ERRCODE = 99999;
protected transient Sqlca sqlca_;
private transient int messageNumber_;
protected String message_;
protected String cachedMessage_;
private String batchPositionLabel_;
protected String sqlstate_;
protected int errorcode_;
protected String causeString_;
protected SqlException nextException_;
protected Throwable throwable_;
public static final String CLIENT_MESSAGE_RESOURCE_NAME = org.apache.derby.loc.clientmessages;
protected static SQLExceptionFactory exceptionFactory;
private static org.apache.derby.shared.common.i18n.MessageUtil msgutil_;
protected java.sql.SQLException wrappedException_;
public static org.apache.derby.shared.common.i18n.MessageUtil getMessageUtil();
public void SqlException(LogWriter, ClientMessageId, Object[], Throwable);
public void SqlException(LogWriter, ClientMessageId, Object[], SqlCode, Throwable);
public void SqlException(LogWriter, ClientMessageId, Object[], SqlCode);
public void SqlException(LogWriter, ClientMessageId, SqlCode);
public void SqlException(LogWriter, ClientMessageId, Object, SqlCode);
public void SqlException(LogWriter, ClientMessageId, Object, Object, SqlCode);
public void SqlException(LogWriter, ClientMessageId, Throwable);
public void SqlException(LogWriter, ClientMessageId, Object[]);
public void SqlException(LogWriter, ClientMessageId);
public void SqlException(LogWriter, ClientMessageId, Object);
public void SqlException(LogWriter, ClientMessageId, Object, Throwable);
public void SqlException(LogWriter, ClientMessageId, Object, Object, Throwable);
public void SqlException(LogWriter, ClientMessageId, Object, Object);
public void SqlException(LogWriter, ClientMessageId, Object, Object, Object);
public void SqlException(LogWriter, Sqlca);
private void SqlException(Sqlca, int, boolean);
protected void SqlException(LogWriter, String, String, int);
protected void SqlException(LogWriter, Throwable, String, String, int);
private void setThrowable(Throwable);
public void SqlException(java.sql.SQLException);
public java.sql.SQLException getSQLException();
void setBatchPositionLabel(int);
public Sqlca getSqlca();
public String getMessage();
public String getSQLState();
public int getErrorCode();
public SqlException getNextException();
public void setNextException(SqlException);
public void setNextException(java.sql.SQLException);
public void printTrace(java.io.PrintWriter, String);
public static SqlException javaException(LogWriter, Throwable);
SqlException copyAsUnchainedSQLException(LogWriter);
public static void setExceptionFactory(SQLExceptionFactory);
static void ();
}
org/apache/derby/client/am/SqlWarning.class
package org.apache.derby.client.am;
public synchronized class SqlWarning extends SqlException implements Diagnosable {
protected SqlWarning nextWarning_;
public void SqlWarning(LogWriter, ClientMessageId, Object[], Throwable);
public void SqlWarning(LogWriter, ClientMessageId, Object[]);
public void SqlWarning(LogWriter, ClientMessageId);
public void SqlWarning(LogWriter, ClientMessageId, Object);
public void SqlWarning(LogWriter, ClientMessageId, Object, Object);
public void SqlWarning(LogWriter, ClientMessageId, Object, Object, Object);
public void SqlWarning(LogWriter, Sqlca);
public void setNextWarning(SqlWarning);
public SqlWarning getNextWarning();
public java.sql.SQLWarning getSQLWarning();
}
org/apache/derby/client/am/Sqlca.class
package org.apache.derby.client.am;
public abstract synchronized class Sqlca {
protected transient Connection connection_;
SqlException exceptionThrownOnStoredProcInvocation_;
boolean messageTextRetrievedContainsTokensOnly_;
protected int sqlCode_;
private String sqlErrmc_;
protected String[] sqlErrmcMessages_;
private String[] sqlStates_;
protected String sqlErrp_;
protected int[] sqlErrd_;
protected char[] sqlWarn_;
protected String sqlState_;
protected byte[] sqlErrmcBytes_;
protected byte[] sqlErrpBytes_;
protected byte[] sqlWarnBytes_;
protected int sqlErrmcCcsid_;
protected boolean containsSqlcax_;
protected long rowsetRowCount_;
private static final String sqlErrmcDelimiter__ = ๏ฟฝ๏ฟฝ๏ฟฝ;
private boolean returnTokensOnlyInMessageText_;
private final transient Agent agent_;
private String[] cachedMessages;
protected void Sqlca(Connection);
void returnTokensOnlyInMessageText(boolean);
synchronized int numberOfMessages();
public synchronized int getSqlCode();
public synchronized String getSqlErrmc();
private void initSqlErrmcMessages();
public synchronized String getSqlErrp();
public int[] getSqlErrd();
public synchronized char[] getSqlWarn();
public synchronized String getSqlState();
synchronized String getSqlState(int);
private String getMessage(int) throws SqlException;
synchronized String getJDBCMessage(int);
private String getUnformattedMessage(int);
private void chainDeferredExceptionsToAgentOrAsConnectionWarnings(SqlException);
public boolean includesSqlCode(int[]);
private void processSqlErrmcTokens(byte[]);
protected String bytes2String(byte[], int, int) throws java.io.UnsupportedEncodingException;
public int getUpdateCount();
public long getRowCount() throws DisconnectException;
public void setContainsSqlcax(boolean);
public boolean containsSqlcax();
public void resetRowsetSqlca(Connection, int, String, byte[]);
public void setRowsetRowCount(long);
public long getRowsetRowCount();
}
org/apache/derby/client/am/Statement.class
package org.apache.derby.client.am;
public synchronized class Statement implements java.sql.Statement, StatementCallbackInterface {
public static final int CLOSE_CURRENT_RESULT = 1;
public static final int KEEP_CURRENT_RESULT = 2;
public static final int CLOSE_ALL_RESULTS = 3;
public MaterialStatement materialStatement_;
Connection connection_;
public Section section_;
Agent agent_;
private java.sql.Statement owner;
ResultSet resultSet_;
int updateCount_;
int returnValueFromProcedure_;
static final int executeQueryMethod__ = 1;
static final int executeUpdateMethod__ = 2;
static final int executeMethod__ = 3;
protected int sqlMode_;
static final int isQuery__ = 1;
static final int isCall__ = 2;
static final int isUpdate__ = 4;
int sqlUpdateMode_;
public static final int isCommitSql__ = 1;
public static final int isRollbackSql__ = 2;
static final int isPositionedUpdateDeleteSql__ = 16;
static final int isInsertSql__ = 32;
static final int isDeleteSql__ = 64;
static final int isUpdateSql__ = 128;
ColumnMetaData resultSetMetaData_;
public Cursor cachedCursor_;
public Cursor cachedSingletonRowData_;
boolean isPreparedStatement_;
String cursorName_;
boolean openOnClient_;
boolean openOnServer_;
protected int indexOfCurrentResultSet_;
ResultSet[] resultSetList_;
protected static final String TIMEOUT_STATEMENT = SET STATEMENT_TIMEOUT ;
protected java.util.ArrayList timeoutArrayList;
protected boolean doWriteTimeout;
int timeout_;
int maxRows_;
int maxFieldSize_;
boolean isAutoCommittableStatement_;
boolean isCatalogQuery_;
final java.util.ArrayList batch_;
public int resultSetType_;
public int resultSetConcurrency_;
public int resultSetHoldability_;
public int fetchSize_;
public int fetchDirection_;
public Cursor singletonRowData_;
public int numInvisibleRS_;
public String cursorAttributesToSendOnPrepare_;
public PreparedStatement preparedStatementForAutoGeneratedKeys_;
public ResultSet generatedKeysResultSet_;
public String[] generatedKeysColumnNames_;
public int[] generatedKeysColumnIndexes_;
public int autoGeneratedKeys_;
private SqlWarning warnings_;
protected boolean isPoolable;
private boolean closeOnCompletion_;
private boolean closingResultSets_;
private Section setSpecialRegisterSection_;
private static final int OUTSIDE = 0;
private static final int INSIDE_SIMPLECOMMENT = 1;
private static final int INSIDE_BRACKETED_COMMENT = 2;
private void Statement();
private void resetStatement();
private void initStatement();
private void initResetStatement();
protected void initResetPreparedStatement();
private void resetUserControllableAttributes();
public void reset(boolean) throws SqlException;
void resetForReuse() throws SqlException;
public void Statement(Agent, Connection) throws SqlException;
public void resetStatement(Agent, Connection) throws SqlException;
private void initStatement(Agent, Connection);
public void Statement(Agent, Connection, int, int, int, int, String[], int[]) throws SqlException;
public void resetStatement(Agent, Connection, int, int, int, int, String[], int[]) throws SqlException;
private void initStatement(int, int, int, int, String[], int[]) throws SqlException;
protected void finalize() throws Throwable;
protected SqlWarning getSqlWarnings();
public java.sql.ResultSet executeQuery(String) throws java.sql.SQLException;
private ResultSet executeQueryX(String) throws SqlException;
public int executeUpdate(String) throws java.sql.SQLException;
private int executeUpdateX(String) throws SqlException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public boolean isClosed() throws java.sql.SQLException;
public void close() throws java.sql.SQLException;
public void closeX() throws SqlException;
public boolean isPoolable() throws java.sql.SQLException;
public void setPoolable(boolean) throws java.sql.SQLException;
public int getMaxFieldSize() throws java.sql.SQLException;
public void setMaxFieldSize(int) throws java.sql.SQLException;
public int getMaxRows() throws java.sql.SQLException;
public void setMaxRows(int) throws java.sql.SQLException;
public void setEscapeProcessing(boolean) throws java.sql.SQLException;
public int getQueryTimeout() throws java.sql.SQLException;
public void setQueryTimeout(int) throws java.sql.SQLException;
public void cancel() throws java.sql.SQLException;
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException;
public void clearWarnings() throws java.sql.SQLException;
final void clearWarningsX();
public void setCursorName(String) throws java.sql.SQLException;
public boolean execute(String) throws java.sql.SQLException;
boolean executeX(String) throws SqlException;
public java.sql.ResultSet getResultSet() throws java.sql.SQLException;
public int getUpdateCount() throws java.sql.SQLException;
public boolean getMoreResults() throws java.sql.SQLException;
public void setFetchDirection(int) throws java.sql.SQLException;
public int getFetchDirection() throws java.sql.SQLException;
public void setFetchSize(int) throws java.sql.SQLException;
public int getFetchSize() throws java.sql.SQLException;
public int getResultSetConcurrency() throws java.sql.SQLException;
public int getResultSetType() throws java.sql.SQLException;
public void addBatch(String) throws java.sql.SQLException;
public void clearBatch() throws java.sql.SQLException;
public int[] executeBatch() throws java.sql.SQLException, BatchUpdateException;
private int[] executeBatchX() throws SqlException, BatchUpdateException;
public java.sql.Connection getConnection() throws java.sql.SQLException;
public boolean getMoreResults(int) throws java.sql.SQLException;
private boolean getMoreResultsX(int) throws SqlException;
public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException;
public int executeUpdate(String, int) throws java.sql.SQLException;
public int executeUpdate(String, int[]) throws java.sql.SQLException;
public int executeUpdate(String, String[]) throws java.sql.SQLException;
public boolean execute(String, int) throws java.sql.SQLException;
public boolean execute(String, int[]) throws java.sql.SQLException;
public boolean execute(String, String[]) throws java.sql.SQLException;
public int getResultSetHoldability() throws java.sql.SQLException;
public void writeSetSpecialRegister(java.util.ArrayList) throws SqlException;
public void readSetSpecialRegister() throws SqlException;
public void writeExecuteImmediate(String, Section) throws SqlException;
public void readExecuteImmediate() throws SqlException;
public void completeExecuteImmediate(Sqlca);
public void readExecuteImmediateForBatch(String) throws SqlException;
public void writePrepareDescribeOutput(String, Section) throws SqlException;
public void readPrepareDescribeOutput() throws SqlException;
public void completePrepareDescribeOutput(ColumnMetaData, Sqlca);
public void writePrepare(String, Section) throws SqlException;
public void readPrepare() throws SqlException;
public void completePrepare(Sqlca);
public void writeOpenQuery(Section, int, int) throws SqlException;
public void readOpenQuery() throws SqlException;
public void completeOpenQuery(Sqlca, ResultSet);
public void completeExecuteCallOpenQuery(Sqlca, ResultSet, ColumnMetaData, Section);
public void writeExecuteCall(boolean, String, Section, int, boolean, int, ColumnMetaData, Object[]) throws SqlException;
public void readExecuteCall() throws SqlException;
public void completeExecuteCall(Sqlca, Cursor, ResultSet[]);
public void completeExecuteCall(Sqlca, Cursor);
public void completeExecute(Sqlca);
public void setUpdateCount(int);
protected final void setOwner(java.sql.Statement);
final java.sql.Statement getOwner();
private boolean willTickleServer(int, boolean) throws SqlException;
private void flowClose() throws SqlException;
private void flowCloseOutsideUOW() throws SqlException;
final void writeClose(boolean) throws SqlException;
final void readClose(boolean) throws SqlException;
final boolean writeCloseResultSets(boolean) throws SqlException;
boolean writeCloseResultSets(int, boolean) throws SqlException;
final void readCloseResultSets(boolean) throws SqlException;
void readCloseResultSets(int, boolean) throws SqlException;
private void flowCloseRetrievedResultSets() throws SqlException;
private void flowCloseRetrievedResultSetsOutsideUOW() throws SqlException;
public int completeSqlca(Sqlca);
public void completeExecuteSetStatement(Sqlca);
void markClosedOnServer();
void markClosed();
void markClosed(boolean);
private void closeEverythingExceptResultSets(boolean);
void markPreparedStatementForAutoGeneratedKeysClosed();
void markResultSetsClosed();
final void markResultSetsClosed(boolean);
private void flowExecute(int, String) throws SqlException;
void flowExecuteBatch(int[]) throws SqlException, BatchUpdateException;
private Section writeExecuteCall(String, boolean) throws SqlException;
public void listenToUnitOfWork();
public void completeLocalCommit(java.util.Iterator);
public void completeLocalRollback(java.util.Iterator);
public void accumulateWarning(SqlWarning);
private void markPrepared();
protected String getJdbcStatementInterfaceName();
void parseSqlAndSetSqlModes(String) throws SqlException;
private String isolateAnyInitialIdentifier(String);
private String getStatementToken(String) throws SqlException;
private void parseUpdateSql(String);
String getProcedureName(String) throws SqlException;
public static String upperCaseProcedureName(String) throws SqlException;
final void checkForAppropriateSqlMode(int, int) throws SqlException;
private void checkResultSetCount(int) throws SqlException;
protected final void checkForStoredProcResultSetCount(int) throws SqlException;
final void checkForClosedStatement() throws SqlException;
void checkForInvalidBatchedSql(String) throws SqlException;
protected void checkForDuplicateCursorName() throws SqlException;
protected void setupCursorNameCacheAndMappings();
String[] extractCursorNameFromWhereCurrentOf(String);
protected String substituteClientCursorNameWithServerCursorName(String, Section) throws SqlException;
public ConnectionCallbackInterface getConnectionCallbackInterface();
void resetCursorNameAndRemoveFromWhereCurrentOfMappings();
void mapCursorNameToResultSet();
void parseStorProcReturnedScrollableRowset() throws SqlException;
String escape(String) throws SqlException;
String cacheCursorAttributesToSendOnPrepare() throws SqlException;
void getPreparedStatementForAutoGeneratedKeys() throws SqlException;
void prepareAutoGeneratedKeysStatement() throws SqlException;
void readPrepareAutoGeneratedKeysStatement() throws SqlException;
void checkAutoGeneratedKeysParameters() throws SqlException;
public ColumnMetaData getGuessedResultSetMetaData();
public boolean isQueryMode();
protected void removeClientCursorNameFromCache();
public void resultSetCommitting(ResultSet) throws SqlException;
public boolean resultSetCommitting(ResultSet, boolean) throws SqlException;
public void markAutoCommitted();
protected java.sql.SQLException jdbc3FeatureNotSupported(boolean) throws java.sql.SQLException;
protected java.sql.SQLException jdbc3FeatureNotSupported() throws java.sql.SQLException;
public void closeOnCompletion() throws java.sql.SQLException;
public boolean isCloseOnCompletion() throws java.sql.SQLException;
void closeMeOnCompletion();
private boolean isOpen(ResultSet) throws java.sql.SQLException;
}
org/apache/derby/client/am/Statement40.class
package org.apache.derby.client.am;
public synchronized class Statement40 extends Statement {
public void Statement40(Agent, Connection) throws SqlException;
public void Statement40(Agent, Connection, int, int, int, int, String[], int[]) throws SqlException;
public Object unwrap(Class) throws java.sql.SQLException;
}
org/apache/derby/client/am/StatementCacheInteractor.class
package org.apache.derby.client.am;
public final synchronized class StatementCacheInteractor {
private final stmtcache.JDBCStatementCache cache;
private final Connection physicalConnection;
private final java.util.ArrayList openLogicalStatements;
private boolean connCloseInProgress;
void StatementCacheInteractor(stmtcache.JDBCStatementCache, Connection);
public synchronized java.sql.PreparedStatement prepareStatement(String) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int, int, int) throws java.sql.SQLException;
public synchronized java.sql.PreparedStatement prepareStatement(String, int) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int) throws java.sql.SQLException;
public synchronized java.sql.CallableStatement prepareCall(String, int, int, int) throws java.sql.SQLException;
public synchronized void closeOpenLogicalStatements() throws java.sql.SQLException;
public synchronized void markClosed(LogicalStatementEntity);
private java.sql.PreparedStatement createLogicalPreparedStatement(java.sql.PreparedStatement, stmtcache.StatementKey) throws java.sql.SQLException;
private java.sql.CallableStatement createLogicalCallableStatement(java.sql.CallableStatement, stmtcache.StatementKey) throws java.sql.SQLException;
stmtcache.JDBCStatementCache getCache();
}
org/apache/derby/client/am/StatementCallbackInterface.class
package org.apache.derby.client.am;
public abstract interface StatementCallbackInterface extends UnitOfWorkListener {
public abstract void completeOpenQuery(Sqlca, ResultSet) throws DisconnectException;
public abstract void completeExecuteCallOpenQuery(Sqlca, ResultSet, ColumnMetaData, Section);
public abstract void accumulateWarning(SqlWarning);
public abstract void completePrepare(Sqlca);
public abstract void completePrepareDescribeOutput(ColumnMetaData, Sqlca);
public abstract void completeExecuteImmediate(Sqlca);
public abstract void completeExecuteSetStatement(Sqlca);
public abstract void completeExecute(Sqlca);
public abstract void completeExecuteCall(Sqlca, Cursor, ResultSet[]);
public abstract void completeExecuteCall(Sqlca, Cursor);
public abstract int completeSqlca(Sqlca);
public abstract ConnectionCallbackInterface getConnectionCallbackInterface();
public abstract ColumnMetaData getGuessedResultSetMetaData();
}
org/apache/derby/client/am/Types.class
package org.apache.derby.client.am;
public synchronized class Types {
public static final int BIT = -7;
public static final int BOOLEAN = 16;
public static final int SMALLINT = 5;
public static final int INTEGER = 4;
public static final int BIGINT = -5;
public static final int REAL = 7;
public static final int DOUBLE = 8;
public static final int DECIMAL = 3;
public static final int CHAR = 1;
public static final int VARCHAR = 12;
public static final int LONGVARCHAR = -1;
public static final int DATE = 91;
public static final int TIME = 92;
public static final int TIMESTAMP = 93;
public static final int BINARY = -2;
public static final int VARBINARY = -3;
public static final int LONGVARBINARY = -4;
public static final int BLOB = 2004;
public static final int CLOB = 2005;
public static final int JAVA_OBJECT = 2000;
private void Types();
public static String getTypeString(int);
public static int mapDERBYTypeToDriverType(boolean, int, long, int);
}
org/apache/derby/client/am/UnitOfWorkListener.class
package org.apache.derby.client.am;
public abstract interface UnitOfWorkListener {
public abstract void listenToUnitOfWork();
public abstract void completeLocalCommit(java.util.Iterator);
public abstract void completeLocalRollback(java.util.Iterator);
}
org/apache/derby/client/am/UpdateSensitiveBlobLocatorInputStream.class
package org.apache.derby.client.am;
public synchronized class UpdateSensitiveBlobLocatorInputStream extends UpdateSensitiveLOBLocatorInputStream {
private Blob blob;
public void UpdateSensitiveBlobLocatorInputStream(Connection, Blob) throws SqlException;
public void UpdateSensitiveBlobLocatorInputStream(Connection, Blob, long, long) throws SqlException;
protected java.io.InputStream reCreateStream() throws SqlException;
}
org/apache/derby/client/am/UpdateSensitiveClobLocatorInputStream.class
package org.apache.derby.client.am;
public synchronized class UpdateSensitiveClobLocatorInputStream extends UpdateSensitiveLOBLocatorInputStream {
private Clob clob;
public void UpdateSensitiveClobLocatorInputStream(Connection, Clob) throws SqlException;
protected java.io.InputStream reCreateStream() throws SqlException;
}
org/apache/derby/client/am/UpdateSensitiveClobLocatorReader.class
package org.apache.derby.client.am;
public synchronized class UpdateSensitiveClobLocatorReader extends java.io.Reader {
private java.io.BufferedReader r;
private Connection con;
private Clob clob;
private long updateCount;
private long currentPos;
private long length;
protected void UpdateSensitiveClobLocatorReader(Connection, Clob) throws SqlException;
protected void UpdateSensitiveClobLocatorReader(Connection, Clob, long, long) throws SqlException;
public int read() throws java.io.IOException;
public int read(char[], int, int) throws java.io.IOException;
public void close() throws java.io.IOException;
private void identifyAndReplaceObseleteStream() throws java.io.IOException;
protected java.io.Reader reCreateStream() throws SqlException;
}
org/apache/derby/client/am/UpdateSensitiveLOBLocatorInputStream.class
package org.apache.derby.client.am;
public abstract synchronized class UpdateSensitiveLOBLocatorInputStream extends java.io.InputStream {
private java.io.BufferedInputStream is;
protected Connection con;
private Lob lob;
private long updateCount;
protected long currentPos;
protected long length;
protected void UpdateSensitiveLOBLocatorInputStream(Connection, Lob, java.io.InputStream) throws SqlException;
protected void UpdateSensitiveLOBLocatorInputStream(Connection, Lob, java.io.InputStream, long, long) throws SqlException;
public int read() throws java.io.IOException;
public int read(byte[], int, int) throws java.io.IOException;
public void close() throws java.io.IOException;
private void identifyAndReplaceObseleteStream() throws java.io.IOException;
protected abstract java.io.InputStream reCreateStream() throws SqlException;
}
org/apache/derby/client/am/Utils.class
package org.apache.derby.client.am;
public final synchronized class Utils {
private static byte[][] tenRadixArr;
public void Utils();
static String quoteSqlIdentifier(String);
static String getStringFromBytes(byte[]);
static String getStringFromInts(int[]);
static String getStringFromStrings(String[]);
public static int computeBigDecimalPrecision(java.math.BigDecimal);
private static int byteArrayCmp(byte[], byte[]);
public static String padOrTruncate(String, int);
public static void checkForNegativePositiveSqlcard(Sqlca, Statement) throws SqlException;
public static void checkForNegativePositiveSqlcard(Sqlca, ResultSet) throws SqlException;
public static int getSqlcodeFromSqlca(Sqlca);
public static int getUpdateCountFromSqlcard(Sqlca);
public static java.sql.SQLException accumulateSQLException(java.sql.SQLException, java.sql.SQLException);
public static SqlException accumulateSQLException(SqlException, SqlException);
public static SqlWarning accumulateSQLWarning(SqlWarning, SqlWarning);
static String getSQLTypeName(int);
public static boolean isSqlTypeNullable(int);
public static int getNonNullableSqlType(int);
static void ();
}
org/apache/derby/client/am/Version.class
package org.apache.derby.client.am;
public abstract synchronized class Version {
static final org.apache.derby.shared.common.i18n.MessageUtil msgutil;
public void Version();
public static String getDriverName();
public static String getDriverVersion();
public static int getMajorVersion();
public static int getMinorVersion();
public static int getBuildNumber();
public static int getProtocolMaintVersion();
public static boolean isAlpha();
public static boolean isBeta();
private static String getDriverNameAndVersion();
public static void writeDriverConfiguration(java.io.PrintWriter);
private static void printSystemProperty(SecurityManager, String, String, java.io.PrintWriter);
private static void detectLocalHost(SecurityManager, java.io.PrintWriter);
static void ();
}
org/apache/derby/client/am/XaException.class
package org.apache.derby.client.am;
public synchronized class XaException extends javax.transaction.xa.XAException implements Diagnosable {
public void XaException(LogWriter);
public void XaException(LogWriter, Throwable);
public void XaException(LogWriter, int);
public void XaException(LogWriter, Throwable, int);
public void XaException(LogWriter, String);
public void XaException(LogWriter, Throwable, String);
public Sqlca getSqlca();
public void printTrace(java.io.PrintWriter, String);
XaException copyAsUnchainedXAException(LogWriter);
}
org/apache/derby/client/am/stmtcache/JDBCStatementCache$BoundedLinkedHashMap.class
package org.apache.derby.client.am.stmtcache;
synchronized class JDBCStatementCache$BoundedLinkedHashMap extends java.util.LinkedHashMap {
private final int maxSize;
public void JDBCStatementCache$BoundedLinkedHashMap(int);
protected boolean removeEldestEntry(java.util.Map$Entry);
}
org/apache/derby/client/am/stmtcache/JDBCStatementCache.class
package org.apache.derby.client.am.stmtcache;
public final synchronized class JDBCStatementCache {
private final java.util.LinkedHashMap statements;
public void JDBCStatementCache(int);
public synchronized java.sql.PreparedStatement getCached(StatementKey);
public synchronized boolean cacheStatement(StatementKey, java.sql.PreparedStatement);
}
org/apache/derby/client/am/stmtcache/StatementKey.class
package org.apache.derby.client.am.stmtcache;
public synchronized class StatementKey {
private final boolean isCallableStatement;
private final String sql;
private final String schema;
private final int type;
private final int concurrency;
private final int holdability;
private final int autogeneratedKeys;
void StatementKey(boolean, String, String, int, int, int, int);
public boolean equals(Object);
public int hashCode();
public String toString();
}
org/apache/derby/client/am/stmtcache/StatementKeyFactory.class
package org.apache.derby.client.am.stmtcache;
public final synchronized class StatementKeyFactory {
private static final boolean CALLABLE = 1;
private static final boolean PREPARED = 0;
private void StatementKeyFactory();
public static StatementKey newPrepared(String, String, int);
public static StatementKey newPrepared(String, String, int, int);
public static StatementKey newPrepared(String, String, int, int, int);
public static StatementKey newCallable(String, String, int);
public static StatementKey newCallable(String, String, int, int, int);
}
org/apache/derby/client/net/CcsidManager.class
package org.apache.derby.client.net;
public abstract synchronized class CcsidManager {
public byte space_;
byte dot_;
byte[] numToCharRepresentation_;
byte[] numToSnaRequiredCrrtknChar_;
public static final int UTF8_CCSID = 1208;
void CcsidManager(byte, byte, byte[], byte[]);
public abstract byte[] convertFromJavaString(String, org.apache.derby.client.am.Agent) throws org.apache.derby.client.am.SqlException;
public abstract int convertFromJavaString(String, byte[], int, org.apache.derby.client.am.Agent) throws org.apache.derby.client.am.SqlException;
abstract String convertToJavaString(byte[]);
abstract String convertToJavaString(byte[], int, int);
abstract int maxBytesPerChar();
abstract int getByteLength(String);
}
org/apache/derby/client/net/ClientJDBCObjectFactoryImpl.class
package org.apache.derby.client.net;
public synchronized class ClientJDBCObjectFactoryImpl implements org.apache.derby.client.am.ClientJDBCObjectFactory {
public void ClientJDBCObjectFactoryImpl();
public org.apache.derby.client.ClientPooledConnection newClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, org.apache.derby.client.am.LogWriter, String, String) throws java.sql.SQLException;
public org.apache.derby.client.ClientPooledConnection newClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, org.apache.derby.client.am.LogWriter, String, String, int) throws java.sql.SQLException;
public org.apache.derby.client.ClientXAConnection newClientXAConnection(org.apache.derby.jdbc.ClientBaseDataSource, org.apache.derby.client.am.LogWriter, String, String) throws java.sql.SQLException;
public org.apache.derby.client.am.CallableStatement newCallableStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, String, int, int, int, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.LogicalConnection newLogicalConnection(org.apache.derby.client.am.Connection, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.LogicalConnection newCachingLogicalConnection(org.apache.derby.client.am.Connection, org.apache.derby.client.ClientPooledConnection, org.apache.derby.client.am.stmtcache.JDBCStatementCache) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.PreparedStatement newPreparedStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, String, org.apache.derby.client.am.Section, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.PreparedStatement newPreparedStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, String, int, int, int, int, String[], int[], org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.LogicalPreparedStatement newLogicalPreparedStatement(java.sql.PreparedStatement, org.apache.derby.client.am.stmtcache.StatementKey, org.apache.derby.client.am.StatementCacheInteractor);
public org.apache.derby.client.am.LogicalCallableStatement newLogicalCallableStatement(java.sql.CallableStatement, org.apache.derby.client.am.stmtcache.StatementKey, org.apache.derby.client.am.StatementCacheInteractor);
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, org.apache.derby.jdbc.ClientBaseDataSource, String, String) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, int, String, int, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, int, org.apache.derby.jdbc.ClientBaseDataSource, boolean) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.ResultSet newNetResultSet(org.apache.derby.client.am.Agent, org.apache.derby.client.am.MaterialStatement, org.apache.derby.client.am.Cursor, int, int, int, int, int, long, int, int, int) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.DatabaseMetaData newNetDatabaseMetaData(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection);
public org.apache.derby.client.am.Statement newStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Statement newStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, int, int, int, int, String[], int[]) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.ColumnMetaData newColumnMetaData(org.apache.derby.client.am.LogWriter);
public org.apache.derby.client.am.ColumnMetaData newColumnMetaData(org.apache.derby.client.am.LogWriter, int);
public org.apache.derby.client.am.ParameterMetaData newParameterMetaData(org.apache.derby.client.am.ColumnMetaData);
}
org/apache/derby/client/net/ClientJDBCObjectFactoryImpl40.class
package org.apache.derby.client.net;
public synchronized class ClientJDBCObjectFactoryImpl40 implements org.apache.derby.client.am.ClientJDBCObjectFactory {
public void ClientJDBCObjectFactoryImpl40();
public org.apache.derby.client.ClientPooledConnection newClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, org.apache.derby.client.am.LogWriter, String, String) throws java.sql.SQLException;
public org.apache.derby.client.ClientPooledConnection newClientPooledConnection(org.apache.derby.jdbc.ClientBaseDataSource, org.apache.derby.client.am.LogWriter, String, String, int) throws java.sql.SQLException;
public org.apache.derby.client.ClientXAConnection newClientXAConnection(org.apache.derby.jdbc.ClientBaseDataSource, org.apache.derby.client.am.LogWriter, String, String) throws java.sql.SQLException;
public org.apache.derby.client.am.CallableStatement newCallableStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, String, int, int, int, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.LogicalConnection newLogicalConnection(org.apache.derby.client.am.Connection, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.LogicalConnection newCachingLogicalConnection(org.apache.derby.client.am.Connection, org.apache.derby.client.ClientPooledConnection, org.apache.derby.client.am.stmtcache.JDBCStatementCache) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.PreparedStatement newPreparedStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, String, org.apache.derby.client.am.Section, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.PreparedStatement newPreparedStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, String, int, int, int, int, String[], int[], org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.LogicalPreparedStatement newLogicalPreparedStatement(java.sql.PreparedStatement, org.apache.derby.client.am.stmtcache.StatementKey, org.apache.derby.client.am.StatementCacheInteractor);
public org.apache.derby.client.am.LogicalCallableStatement newLogicalCallableStatement(java.sql.CallableStatement, org.apache.derby.client.am.stmtcache.StatementKey, org.apache.derby.client.am.StatementCacheInteractor);
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, org.apache.derby.jdbc.ClientBaseDataSource, String, String) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, int, String, int, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, int, org.apache.derby.jdbc.ClientBaseDataSource, boolean) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Connection newNetConnection(org.apache.derby.client.am.LogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.ResultSet newNetResultSet(org.apache.derby.client.am.Agent, org.apache.derby.client.am.MaterialStatement, org.apache.derby.client.am.Cursor, int, int, int, int, int, long, int, int, int) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.DatabaseMetaData newNetDatabaseMetaData(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection);
public org.apache.derby.client.am.Statement newStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Statement newStatement(org.apache.derby.client.am.Agent, org.apache.derby.client.am.Connection, int, int, int, int, String[], int[]) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.ColumnMetaData newColumnMetaData(org.apache.derby.client.am.LogWriter);
public org.apache.derby.client.am.ColumnMetaData newColumnMetaData(org.apache.derby.client.am.LogWriter, int);
public org.apache.derby.client.am.ParameterMetaData newParameterMetaData(org.apache.derby.client.am.ColumnMetaData);
}
org/apache/derby/client/net/CodePoint.class
package org.apache.derby.client.net;
public synchronized class CodePoint {
public static final int FIXED_ROW_QUERY_PROTOCOL = 0;
public static final int LIMITED_BLOCK_QUERY_PROTOCOL = 1;
public static final int FORCE_FIXED_ROW_QUERY_PROTOCOL = 2;
static final int CSTMBCS = 9269;
static final int FRCFIXROW = 9232;
static final int TITLE = 69;
static final int PKGSNLST = 8505;
static final int OUTEXP = 8465;
static final int PRCNAM = 8504;
static final int MAXRSLCNT = 8512;
static final int MAXRSLCNT_NOLIMIT = 65535;
static final int RSLSETFLG = 8514;
static final int RSLSETFLG_RETURN_NAMES = 128;
static final int RSLSETFLG_RETURN_LABELS = 64;
static final int RSLSETFLG_STANDARD_SQLDA = 0;
static final int RSLSETFLG_EXTENDED_SQLDA = 4;
static final byte FALSE = -16;
static final byte TRUE = -15;
static final int ZEROIND = 0;
static final int NULLDATA = 255;
static final int SECCHKCD_00 = 0;
static final int SECCHKCD_01 = 1;
static final int SECCHKCD_08 = 8;
static final int SECCHKCD_09 = 9;
static final int SECCHKCD_0A = 10;
static final int SECCHKCD_0B = 11;
static final int SECCHKCD_0E = 14;
static final int SECCHKCD_0F = 15;
static final int SECCHKCD_10 = 16;
static final int SECCHKCD_12 = 18;
static final int SECCHKCD_13 = 19;
static final int SECCHKCD_14 = 20;
static final int SECCHKCD_15 = 21;
static final int TYPSQLDA_STD_OUTPUT = 0;
static final int TYPSQLDA_STD_INPUT = 1;
static final int TYPSQLDA_LIGHT_OUTPUT = 2;
static final int TYPSQLDA_LIGHT_INPUT = 3;
static final int TYPSQLDA_X_OUTPUT = 4;
static final int TYPSQLDA_X_INPUT = 5;
static final int QRYCLSIMP_SERVER_CHOICE = 0;
static final int QRYCLSIMP_YES = 1;
static final int QRYCLSIMP_NO = 2;
static final byte DIAGLVL0 = -16;
static final byte DIAGLVL1 = -15;
static final byte DIAGLVL2 = -14;
static final int EXCSAT = 4161;
public static final int SYNCCTL = 4181;
static final int SYNCRSY = 4201;
static final int ACCSEC = 4205;
static final int SECCHK = 4206;
static final int ACCRDB = 8193;
static final int CLSQRY = 8197;
static final int CNTQRY = 8198;
static final int DSCSQLSTT = 8200;
static final int EXCSQLIMM = 8202;
static final int EXCSQLSTT = 8203;
static final int EXCSQLSET = 8212;
static final int OPNQRY = 8204;
static final int OUTOVR = 9237;
static final int PRPSQLSTT = 8205;
static final int RDBCMM = 8206;
static final int RDBRLLBCK = 8207;
static final int DSCRDBTBL = 8210;
static final int SQLDTA = 9234;
public static final int SQLDTARD = 9235;
static final int SQLSTT = 9236;
public static final int QRYDSC = 9242;
public static final int QRYDTA = 9243;
static final int SQLATTR = 9296;
static final int ACCSECRD = 5292;
static final int AGENT = 5123;
static final int UNICODEMGR = 7176;
static final int CODPNT = 12;
static final int CCSIDDBC = 4509;
static final int CCSIDMBC = 4510;
static final int CCSIDSBC = 4508;
static final int CMNAPPC = 5188;
static final int CMNTCPIP = 5236;
static final int CRRTKN = 8501;
static final int DSCERRCD = 8449;
static final int EXCSATRD = 5187;
static final int EXTNAM = 4446;
static final int FIXROWPRC = 9240;
static final int LMTBLKPRC = 9239;
static final int MAXBLKEXT = 8513;
static final int MGRLVLLS = 5124;
static final int MGRLVLN = 5235;
static final int PASSWORD = 4513;
static final int PKGNAMCT = 8466;
static final int PRCCNVCD = 4415;
static final int PRDID = 4398;
static final int PRDDTA = 8452;
static final int QRYATTSCR = 8521;
static final int QRYATTSET = 8522;
static final int QRYATTSNS = 8535;
static final int QRYATTUPD = 8528;
static final int QRYCLSIMP = 8541;
static final int QRYSCRORN = 8530;
static final int QRYSCRREL = 1;
static final int QRYSCRABS = 2;
static final int QRYSCRAFT = 3;
static final int QRYSCRBEF = 4;
static final int QRYINSID = 8539;
static final int QRYINS = 1;
static final int QRYSNSSTC = 2;
static final int QRYUNK = 0;
static final int QRYROWNBR = 8509;
static final int QRYBLKRST = 8532;
static final int QRYRTNDTA = 8533;
static final int QRYBLKCTL = 8498;
static final int QRYBLKSZ = 8468;
static final int QRYPRCTYP = 8450;
static final int QRYROWSET = 8534;
static final int QRYRDO = 1;
static final int QRYUPD = 4;
static final int RDB = 9231;
static final int RDBACCCL = 8463;
static final int RDBALWUPD = 8474;
static final int RDBNAM = 8464;
static final int RSYNCMGR = 5313;
static final int RTNSQLDA = 8470;
static final int TYPSQLDA = 8518;
static final int SECCHKCD = 4516;
static final int SECMEC = 4514;
static final int SECMGR = 5184;
static final int SECTKN = 4572;
static final int SQLAM = 9223;
public static final int SQLCARD = 9224;
public static final int SQLCINRD = 9227;
static final int SQLCSRHLD = 8479;
static final int SQLRSLRD = 9230;
public static final int SQLDARD = 9233;
static final int SRVCLSNM = 4423;
static final int SRVNAM = 4461;
static final int SRVRLSLV = 4442;
static final int SVRCOD = 4425;
static final int SYNCPTMGR = 5312;
static final int SYNERRCD = 4426;
public static final int TYPDEFNAM = 47;
public static final int TYPDEFOVR = 53;
static final int UOWDSP = 8469;
static final int UOWDSP_COMMIT = 1;
static final int UOWDSP_ROLLBACK = 2;
static final int USRID = 4512;
static final int PKGNAMCSN = 8467;
static final int PKGSN = 8460;
static final int SCLDTALEN = 256;
static final int XAMGR = 7169;
static final int DIAGLVL = 8544;
public static final int CMDCHKRM = 4692;
static final int CMDNSPRM = 4688;
static final int ABNUOWRM = 8717;
static final int ACCRDBRM = 8705;
static final int MGRLVLRM = 4624;
static final int ENDUOWRM = 8716;
static final int OBJNSPRM = 4691;
public static final int PRCCNVRM = 4677;
static final int QRYNOPRM = 8706;
static final int QRYPOPRM = 8719;
static final int RDBACCRM = 8711;
static final int RDBCMTOK = 8453;
static final int SECCHKRM = 4633;
static final int RDBAFLRM = 8730;
static final int RDBATHRM = 8907;
static final int RDBNACRM = 8708;
static final int RDBNFNRM = 8721;
static final int RDBUPDRM = 8728;
public static final int SYNTAXRM = 4684;
public static final int VALNSPRM = 4690;
static final int SQLERRRM = 8723;
public static final int OPNQRYRM = 8709;
public static final int ENDQRYRM = 8715;
static final int DTAMCHRM = 8718;
static final int OPNQFLRM = 8722;
public static final int RSLSETRM = 8729;
public static final int MGRLVLOVR = 7171;
static final int RTNEXTDTA = 8520;
static final int RTNEXTROW = 1;
static final int RTNEXTALL = 2;
public static final int EXTDTA = 5228;
static final int FDODSC = 16;
static final int FDODTA = 5242;
static final int PBSD = 49152;
static final int PBSD_ISO = 49153;
static final int PBSD_SCHEMA = 49154;
static int SYNERRCD_DSS_LESS_THAN_6;
static int SYNERRCD_DSS_LENGTH_BYTE_NUMBER_MISMATCH;
static int SYNERRCD_CBYTE_NOT_D0;
static int SYNERRCD_FBYTE_NOT_SUPPORTED;
static int SYNERRCD_OBJ_LEN_LESS_THAN_4;
static int SYNERRCD_OBJ_LEN_NOT_ALLOWED;
static int SYNERRCD_REQ_OBJ_NOT_FOUND;
static int SYNERRCD_DUP_OBJ_PRESENT;
static int SYNERRCD_INVALID_CORRELATOR;
static int SYNERRCD_INCORRECT_EXTENDED_LEN;
static int SYNERRCD_DSS_CONT_LESS_OR_EQUAL_2;
static int SYNERRCD_CHAIN_OFF_SAME_NEXT_CORRELATOR;
static int SYNERRCD_CHAIN_OFF_ERROR_CONTINUE;
static int PRCCNVCD_OBJDSS_SENT_NOT_ALLOWED;
static int SVRCOD_INFO;
static int SVRCOD_WARNING;
static int SVRCOD_ERROR;
static int SVRCOD_SEVERE;
static int SVRCOD_ACCDMG;
static int SVRCOD_PRMDMG;
static int SVRCOD_SESDMG;
public static final int SYNCCRD = 4680;
public static final int XARETVAL = 6404;
public static final int TIMEOUT = 6407;
public static final int SYNCTYPE_NEW_UOW = 9;
public static final int SYNCTYPE_END_UOW = 11;
public static final int SYNCTYPE_PREPARE = 1;
public static final int SYNCTYPE_MIGRATE = 2;
public static final int SYNCTYPE_COMMITTED = 3;
public static final int SYNCTYPE_REQ_FORGET = 6;
public static final int SYNCTYPE_ROLLBACK = 4;
public static final int SYNCTYPE_MIGRATED = 10;
public static final int SYNCTYPE_INDOUBT = 12;
public static final int LLCP = 4;
public static final int SYNCTYPE = 4487;
public static final int XID = 6145;
public static final int XAFLAGS = 6403;
public static final int RSYNC_FORGET = 2;
public static final int RESET_STATE = 1;
public static final int UNKNOWN_STATE = 3;
public static final int INDOUBT_STATE = 4;
public static final int COLD_STATE = 5;
public static final int TMNOFLAGS = 0;
public static final int TMLOCAL = 268435456;
static final int PRPHRCLST = 6405;
static final int XIDCNT = 6406;
private void CodePoint();
static void ();
}
org/apache/derby/client/net/CodePointNameTable.class
package org.apache.derby.client.net;
synchronized class CodePointNameTable extends java.util.Hashtable {
void CodePointNameTable();
String lookup(int);
}
org/apache/derby/client/net/ConnectionReply.class
package org.apache.derby.client.net;
public synchronized class ConnectionReply {
private ConnectionReplyInterface materialConnectionReply_;
org.apache.derby.client.am.Agent agent_;
void ConnectionReply(org.apache.derby.client.am.Agent, ConnectionReplyInterface);
public void readCommitSubstitute(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readLocalCommit(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readLocalRollback(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readLocalXAStart(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readLocalXACommit(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readLocalXARollback(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/ConnectionReplyInterface.class
package org.apache.derby.client.net;
public abstract interface ConnectionReplyInterface {
public abstract void readCommitSubstitute(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readLocalCommit(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readLocalRollback(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readLocalXAStart(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readLocalXACommit(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readLocalXARollback(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/ConnectionRequestInterface.class
package org.apache.derby.client.net;
public abstract interface ConnectionRequestInterface {
public abstract void writeCommitSubstitute(NetConnection) throws org.apache.derby.client.am.SqlException;
public abstract void writeLocalCommit(NetConnection) throws org.apache.derby.client.am.SqlException;
public abstract void writeLocalRollback(NetConnection) throws org.apache.derby.client.am.SqlException;
public abstract void writeLocalXAStart(NetConnection) throws org.apache.derby.client.am.SqlException;
public abstract void writeLocalXACommit(NetConnection) throws org.apache.derby.client.am.SqlException;
public abstract void writeLocalXARollback(NetConnection) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/DynamicByteArrayOutputStream.class
package org.apache.derby.client.net;
public synchronized class DynamicByteArrayOutputStream extends java.io.OutputStream {
private static int INITIAL_SIZE;
private byte[] buf;
private int position;
private int used;
private int beginPosition;
public void DynamicByteArrayOutputStream();
public void DynamicByteArrayOutputStream(int);
public void DynamicByteArrayOutputStream(byte[]);
public void DynamicByteArrayOutputStream(DynamicByteArrayOutputStream);
public void write(int);
public void write(byte[], int, int);
void writeCompleteStream(java.io.InputStream, int) throws java.io.IOException;
public void close();
public void reset();
public byte[] getByteArray();
public int getUsed();
public int getPosition();
public int getBeginPosition();
public void setPosition(int);
public void setBeginPosition(int);
public void discardLeft(int);
private void expandBuffer(int);
static void ();
}
org/apache/derby/client/net/EbcdicCcsidManager.class
package org.apache.derby.client.net;
public synchronized class EbcdicCcsidManager extends CcsidManager {
private static final int[] conversionArrayToEbcdic;
private static final int[] conversionArrayToUCS2;
public void EbcdicCcsidManager();
public byte[] convertFromJavaString(String, org.apache.derby.client.am.Agent) throws org.apache.derby.client.am.SqlException;
public int convertFromJavaString(String, byte[], int, org.apache.derby.client.am.Agent) throws org.apache.derby.client.am.SqlException;
String convertToJavaString(byte[]);
String convertToJavaString(byte[], int, int);
int maxBytesPerChar();
public int getByteLength(String);
static void ();
}
org/apache/derby/client/net/EncodedInputStream$PublicBufferOutputStream.class
package org.apache.derby.client.net;
synchronized class EncodedInputStream$PublicBufferOutputStream extends java.io.ByteArrayOutputStream {
void EncodedInputStream$PublicBufferOutputStream(int);
public byte[] getBuffer();
}
org/apache/derby/client/net/EncodedInputStream.class
package org.apache.derby.client.net;
public final synchronized class EncodedInputStream extends java.io.InputStream {
private static final int BUFFERED_CHAR_LEN = 1024;
private static final java.io.ByteArrayInputStream suspendMarker;
private java.io.Reader reader_;
private final char[] decodedBuffer_;
private java.io.OutputStreamWriter encodedStreamWriter_;
private EncodedInputStream$PublicBufferOutputStream encodedOutputStream_;
private java.io.ByteArrayInputStream encodedInputStream_;
public static EncodedInputStream createUTF8Stream(java.io.Reader);
static EncodedInputStream createUTF16BEStream(java.io.Reader);
private void EncodedInputStream(java.io.Reader, String, int, int);
private java.io.ByteArrayInputStream reEncode(java.io.Reader) throws java.io.IOException;
public int available() throws java.io.IOException;
public void close() throws java.io.IOException;
public int read() throws java.io.IOException;
static void ();
}
org/apache/derby/client/net/FdocaConstants.class
package org.apache.derby.client.net;
synchronized class FdocaConstants {
static final int FDOCA_TYPE_FIXEDBYTES = 1;
static final int FDOCA_TYPE_NFIXEDBYTES = 129;
static final int FDOCA_TYPE_VARBYTES = 2;
static final int FDOCA_TYPE_NVARBYTES = 130;
static final int FDOCA_TYPE_NTBYTES = 3;
static final int FDOCA_TYPE_NNTBYTES = 131;
static final int FDOCA_TYPE_PSCLBYTE = 7;
static final int FDOCA_TYPE_NPSCLBYTE = 135;
static final int FDOCA_TYPE_FIXEDCHAR = 16;
static final int FDOCA_TYPE_NFIXEDCHAR = 144;
static final int FDOCA_TYPE_VARCHAR = 17;
static final int FDOCA_TYPE_NVARCHAR = 145;
static final int FDOCA_TYPE_NTCHAR = 20;
static final int FDOCA_TYPE_NNTCHAR = 148;
static final int FDOCA_TYPE_PSCLCHAR = 25;
static final int FDOCA_TYPE_NPSCLCHAR = 153;
static final int FDOCA_TYPE_INTEGER_BE = 35;
static final int FDOCA_TYPE_NINTEGER_BE = 163;
static final int FDOCA_TYPE_INTEGER_LE = 36;
static final int FDOCA_TYPE_NINTEGER_LE = 164;
static final int FDOCA_TYPE_DECIMAL = 48;
static final int FDOCA_TYPE_NDECIMAL = 176;
static final int FDOCA_TYPE_NUMERIC_CHAR = 50;
static final int FDOCA_TYPE_NNUMERIC_CHAR = 178;
static final int FDOCA_TYPE_FLOAT_X86 = 71;
static final int FDOCA_TYPE_NFLOAT_X86 = 199;
static final int FDOCA_TYPE_FLOAT_IEEE = 72;
static final int FDOCA_TYPE_NFLOAT_IEEE = 200;
static final int FDOCA_TYPE_LOBBYTES = 80;
static final int FDOCA_TYPE_NLOBBYTES = 208;
static final int FDOCA_TYPE_LOBCHAR = 81;
static final int FDOCA_TYPE_NLOBCHAR = 209;
static final int FIRST_OVERRIDE_LID = 80;
static final int LAST_OVERRIDE_LID = 175;
static final int CPT_TRIPLET_TYPE = 127;
static final int MDD_TRIPLET_TYPE = 120;
static final int NGDA_TRIPLET_TYPE = 118;
static final int RLO_TRIPLET_TYPE = 113;
static final int SDA_TRIPLET_TYPE = 112;
static final int SQLDTARD_LID = 240;
static final int SQLCADTA_LID = 224;
static final int SQLDTAGRP_LID = 208;
static final int NULL_LID = 0;
static final int INDICATOR_NULLABLE = 0;
static final int NULL_DATA = 255;
static final int MAX_VARS_IN_NGDA = 84;
static final int MDD_TRIPLET_SIZE = 7;
static final int SQLDTARD_RLO_SIZE = 6;
static final int SQLCADTA_RLO_SIZE = 9;
static final int SDA_TRIPLET_SIZE = 12;
static final int SQLDTAGRP_SIZE = 3;
static final int CPT_SIZE = 3;
static final int SQLDTAGRP_COL_DSC_SIZE = 3;
static final int MDD_REST_SIZE = 5;
static final int MDD_SDA_TRIPLET_SIZE = 19;
static final int MDD_SDA_PROTOCOLTYPE_OFFSET = 6;
static final int MDD_SDA_FDOCALID_OFFSET = 9;
static final int MDD_SDA_FDOCATYPE_OFFSET = 10;
static final int MDD_SDA_CCSID_OFFSET = 11;
static final int MDD_SDA_LENGTH_OFFSET = 17;
static final byte[] defaultMddSdaBytes;
static final byte[] MDD_SQLDTAGRP_TOSEND;
static final byte[] MDD_SQLDTA_TOSEND;
static final byte[] SQLDTA_RLO_TOSEND;
static final byte[] SQLCADTA_RLO_TOSEND;
static final byte[] SQLDTARD_RLO_TOSEND;
static final int SQLDTARD_TRIPLET_TYPE_START = 0;
static final int SQLDTARD_TRIPLET_TYPE_END = 1;
static final int SQLDTARD_TRIPLET_TYPE_MDD = 2;
static final int SQLDTARD_TRIPLET_TYPE_SDA = 3;
static final int SQLDTARD_TRIPLET_TYPE_RLO = 4;
static final int SQLDTARD_TRIPLET_TYPE_GDA = 5;
static final int SQLDTARD_TRIPLET_TYPE_CPT = 6;
static final boolean[][] SQLDTARD_TRIPLET_TYPES;
static final int SQLDTARD_TRIPLET_ID_START = 0;
static final int SQLDTARD_TRIPLET_ID_END = 1;
static final int SQLDTARD_TRIPLET_ID_SDA = 2;
static final int SQLDTARD_TRIPLET_ID_0 = 3;
static final int SQLDTARD_TRIPLET_ID_D0 = 4;
static final int SQLDTARD_TRIPLET_ID_E0 = 5;
static final int SQLDTARD_TRIPLET_ID_F0 = 6;
static final boolean[][] SQLDTARD_TRIPLET_IDS;
static final int RLO_GROUP_LID = 0;
static final int RLO_ELEMENT_TAKEN = 1;
static final int RLO_REP_FACTOR = 2;
static final int[][] RLO_SQLCADTA;
static final int[][] RLO_SQLDTARD;
void FdocaConstants();
static void ();
}
org/apache/derby/client/net/FdocaSimpleDataArray.class
package org.apache.derby.client.net;
synchronized class FdocaSimpleDataArray {
int protocolType_;
int fdocaFieldType_;
int representation_;
int ccsid_;
int characterSize_;
int mode_;
int fieldLength_;
int typeToUseForComputingDataLength_;
void FdocaSimpleDataArray(int, int, int, int, int, int, int, int);
public void update(int, int, int, int, int, int, int, int);
}
org/apache/derby/client/net/InputStreamUtil.class
package org.apache.derby.client.net;
public final synchronized class InputStreamUtil {
private static final int SKIP_FRAGMENT_SIZE = 2147483647;
public void InputStreamUtil();
public static int readUnsignedByte(java.io.InputStream) throws java.io.IOException;
public static void readFully(java.io.InputStream, byte[], int, int) throws java.io.IOException;
public static int readLoop(java.io.InputStream, byte[], int, int) throws java.io.IOException;
public static long skipUntilEOF(java.io.InputStream) throws java.io.IOException;
public static void skipFully(java.io.InputStream, long) throws java.io.IOException;
public static final long skipPersistent(java.io.InputStream, long) throws java.io.IOException;
}
org/apache/derby/client/net/NaiveTrustManager.class
package org.apache.derby.client.net;
public synchronized class NaiveTrustManager implements javax.net.ssl.X509TrustManager {
private static javax.net.ssl.TrustManager[] thisManager;
private void NaiveTrustManager();
public static javax.net.SocketFactory getSocketFactory() throws java.security.NoSuchAlgorithmException, java.security.KeyManagementException, java.security.NoSuchProviderException, java.security.KeyStoreException, java.security.UnrecoverableKeyException, java.security.cert.CertificateException, java.io.IOException;
public void checkClientTrusted(java.security.cert.X509Certificate[], String) throws java.security.cert.CertificateException;
public void checkServerTrusted(java.security.cert.X509Certificate[], String) throws java.security.cert.CertificateException;
public java.security.cert.X509Certificate[] getAcceptedIssuers();
static void ();
}
org/apache/derby/client/net/NetAgent.class
package org.apache.derby.client.net;
public synchronized class NetAgent extends org.apache.derby.client.am.Agent {
public ConnectionRequestInterface connectionRequest_;
public NetConnectionRequest packageRequest_;
public StatementRequestInterface statementRequest_;
public ResultSetRequestInterface resultSetRequest_;
public ConnectionReply connectionReply_;
public ConnectionReply packageReply_;
public StatementReply statementReply_;
public ResultSetReply resultSetReply_;
NetConnection netConnection_;
protected Request request_;
public NetConnectionRequest netConnectionRequest_;
public NetPackageRequest netPackageRequest_;
public NetStatementRequest netStatementRequest_;
public NetResultSetRequest netResultSetRequest_;
protected Reply reply_;
public NetConnectionReply netConnectionReply_;
public NetPackageReply netPackageReply_;
public NetStatementReply netStatementReply_;
public NetResultSetReply netResultSetReply_;
java.net.Socket socket_;
java.io.InputStream rawSocketInputStream_;
java.io.OutputStream rawSocketOutputStream_;
String server_;
int port_;
int clientSSLMode_;
private EbcdicCcsidManager ebcdicCcsidManager_;
private Utf8CcsidManager utf8CcsidManager_;
private CcsidManager currentCcsidManager_;
public Typdef typdef_;
public Typdef targetTypdef_;
public Typdef originalTargetTypdef_;
protected int svrcod_;
public int orignalTargetSqlam_;
public int targetSqlam_;
public org.apache.derby.client.am.SqlException exceptionOpeningSocket_;
public org.apache.derby.client.am.SqlException exceptionConvertingRdbnam;
public void NetAgent(NetConnection, org.apache.derby.client.am.LogWriter) throws org.apache.derby.client.am.SqlException;
void NetAgent(NetConnection, org.apache.derby.client.am.LogWriter, int, String, int, int) throws org.apache.derby.client.am.SqlException;
protected void resetAgent_(org.apache.derby.client.am.LogWriter, int, String, int) throws org.apache.derby.client.am.SqlException;
void setSvrcod(int);
void clearSvrcod();
int getSvrcod();
public void flush_() throws org.apache.derby.client.am.DisconnectException;
public void close_() throws org.apache.derby.client.am.SqlException;
protected void setTimeout(int);
protected int getTimeout();
protected void sendRequest() throws org.apache.derby.client.am.DisconnectException;
public java.io.InputStream getInputStream();
public CcsidManager getCurrentCcsidManager();
public java.io.OutputStream getOutputStream();
void setInputStream(java.io.InputStream);
void setOutputStream(java.io.OutputStream);
public void throwCommunicationsFailure(Throwable) throws org.apache.derby.client.am.DisconnectException;
public org.apache.derby.client.am.LogWriter newLogWriter_(java.io.PrintWriter, int);
protected void markChainBreakingException_();
public void checkForChainBreakingException_() throws org.apache.derby.client.am.SqlException;
private void writeDeferredResetConnection() throws org.apache.derby.client.am.SqlException;
public void beginWriteChainOutsideUOW() throws org.apache.derby.client.am.SqlException;
public void beginWriteChain(org.apache.derby.client.am.Statement) throws org.apache.derby.client.am.SqlException;
protected void endWriteChain();
private void readDeferredResetConnection() throws org.apache.derby.client.am.SqlException;
protected void beginReadChain(org.apache.derby.client.am.Statement) throws org.apache.derby.client.am.SqlException;
protected void beginReadChainOutsideUOW() throws org.apache.derby.client.am.SqlException;
public void endReadChain() throws org.apache.derby.client.am.SqlException;
public void switchToUtf8CcsidMgr();
public void switchToEbcdicMgr();
public String convertToStringTcpIpAddress(int);
protected int getPort();
}
org/apache/derby/client/net/NetCallableStatement.class
package org.apache.derby.client.net;
public synchronized class NetCallableStatement extends NetPreparedStatement implements org.apache.derby.client.am.MaterialPreparedStatement {
org.apache.derby.client.am.CallableStatement callableStatement_;
private void initNetCallableStatement();
void NetCallableStatement(org.apache.derby.client.am.CallableStatement, NetAgent, NetConnection) throws org.apache.derby.client.am.SqlException;
void resetNetCallableStatement(org.apache.derby.client.am.CallableStatement, NetAgent, NetConnection) throws org.apache.derby.client.am.SqlException;
private void initNetCallableStatement(org.apache.derby.client.am.CallableStatement);
void NetCallableStatement(NetAgent, NetConnection, String, int, int, int, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
void resetNetCallableStatement(NetAgent, NetConnection, String, int, int, int) throws org.apache.derby.client.am.SqlException;
void resetNetCallableStatement(NetAgent, NetConnection, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
void resetNetCallableStatement(NetAgent, NetConnection, String, org.apache.derby.client.am.Section, org.apache.derby.client.am.ColumnMetaData, org.apache.derby.client.am.ColumnMetaData) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetConfiguration.class
package org.apache.derby.client.net;
public synchronized class NetConfiguration {
static final int INITIAL_CAPACITY = 10;
public static final byte NON_CHAR_DDM_DATA_PAD_BYTE = 0;
static final int CURSOR_NOT_OPEN = 0;
static final int CURSOR_OPEN = 1;
static final int CURSOR_CLOSE_ONLY = 2;
static final int DDMHDR_LENGTH = 4;
static final int DSSHDR_LENGTH = 6;
static final int EXTNAM_MAXSIZE = 255;
static final int MIN_AGENT_MGRLVL = 3;
static final int MIN_CMNTCPIP_MGRLVL = 5;
static final int MIN_CMNAPPC_MGRLVL = 3;
static final int MIN_RDB_MGRLVL = 3;
static final int MIN_SECMGR_MGRLVL = 5;
static final int MIN_SQLAM_MGRLVL = 4;
static final int MIN_XAMGR_MGRLVL = 7;
static final int MIN_SYNCPTMGR_MGRLVL = 5;
static final int MIN_RSYNCMGR_MGRLVL = 5;
static final int MIN_UNICODE_MGRLVL = 0;
static final int PASSWORD_MAXSIZE = 255;
public static final int PRDDTA_APPL_ID_FIXED_LEN = 20;
static final int PRDDTA_ACCT_SUFFIX_LEN_BYTE = 55;
static final int PRDDTA_MAX_ACCT_SUFFIX_LEN = 199;
static final int PRDDTA_LEN_BYTE = 0;
static final int PRDDTA_MAXSIZE = 255;
public static final String PRDDTA_PLATFORM_ID = JVM ;
public static final int PRDDTA_USER_ID_FIXED_LEN = 8;
public static final int PKG_IDENTIFIER_FIXED_LEN = 18;
static final int PKG_IDENTIFIER_MAX_LEN = 255;
public static final int PKGCNSTKN_FIXED_LEN = 8;
static final int SECTKN_MAXSIZE = 32763;
static final String SRVCLSNM_JVM = QDERBY/JVM;
static final int SRVNAM_MAXSIZE = 255;
static final int MGRLVL_NA = 0;
static final int MGRLVL_3 = 3;
static final int MGRLVL_4 = 4;
static final int MGRLVL_5 = 5;
static final int MGRLVL_6 = 6;
public static final int MGRLVL_7 = 7;
static final int SECMEC_DCESEC = 1;
static final int SECMEC_EUSRIDNWPWD = 10;
public static final int SECMEC_EUSRIDPWD = 9;
public static final int SECMEC_USRIDONL = 4;
public static final int SECMEC_USRENCPWD = 7;
static final int SECMEC_USRIDNWPWD = 5;
public static final int SECMEC_USRIDPWD = 3;
public static final int SECMEC_EUSRIDDTA = 12;
public static final int SECMEC_EUSRPWDDTA = 13;
public static final int SECMEC_USRSSBPWD = 8;
static final int[] SECMGR_SECMECS;
public static final String SYSTEM_ASC = QTDSQLASC;
static final String SYSTEM_JVM = QTDSQLJVM;
static final int USRID_MAXSIZE = 255;
public static final String PRDID;
static final String SRVRLSLV;
public void NetConfiguration();
static void ();
}
org/apache/derby/client/net/NetConnection.class
package org.apache.derby.client.net;
public synchronized class NetConnection extends org.apache.derby.client.am.Connection {
protected static org.apache.derby.shared.common.i18n.MessageUtil msgutil;
protected NetAgent netAgent_;
private final org.apache.derby.client.ClientPooledConnection pooledConnection_;
private final boolean closeStatementsOnClose;
protected int pendingEndXACallinfoOffset_;
protected int targetAgent_;
protected int targetCmntcpip_;
protected int targetRdb_;
public int targetSecmgr_;
protected int targetCmnappc_;
protected int targetXamgr_;
protected int targetSyncptmgr_;
protected int targetRsyncmgr_;
protected int targetUnicodemgr_;
String targetExtnam_;
String extnam_;
public String targetSrvclsnm_;
protected String targetSrvnam_;
public String targetSrvrlslv_;
transient byte[] publicKey_;
transient byte[] targetPublicKey_;
transient byte[] sourceSeed_;
transient byte[] targetSeed_;
byte[] prddta_;
public byte[] crrtkn_;
int targetSecmec_;
protected int securityMechanism_;
private transient char[] deferredResetPassword_;
private boolean connectionNull;
protected byte[] cnntkn_;
private int rmId_;
protected NetXAResource xares_;
protected java.util.Hashtable indoubtTransactions_;
protected int currXACallInfoOffset_;
private short seqNo_;
protected boolean readOnlyTransaction_;
private void setDeferredResetPassword(String);
private String getDeferredResetPassword();
public void NetConnection(NetLogWriter, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public void NetConnection(NetLogWriter, org.apache.derby.jdbc.ClientBaseDataSource, String, String) throws org.apache.derby.client.am.SqlException;
public void NetConnection(NetLogWriter, int, String, int, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public void NetConnection(NetLogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean) throws org.apache.derby.client.am.SqlException;
public void NetConnection(NetLogWriter, String, int, org.apache.derby.jdbc.ClientBaseDataSource, boolean) throws org.apache.derby.client.am.SqlException;
public void NetConnection(NetLogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
private void initialize(String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean) throws org.apache.derby.client.am.SqlException;
public void resetNetConnection(org.apache.derby.client.am.LogWriter) throws org.apache.derby.client.am.SqlException;
protected void reset_(org.apache.derby.client.am.LogWriter) throws org.apache.derby.client.am.SqlException;
java.util.List getSpecialRegisters();
public void addSpecialRegisters(String);
public void completeConnect() throws org.apache.derby.client.am.SqlException;
protected void completeReset(boolean) throws org.apache.derby.client.am.SqlException;
public void flowConnect(String, int) throws org.apache.derby.client.am.SqlException;
protected void flowSimpleConnect() throws org.apache.derby.client.am.SqlException;
protected boolean flowReconnect(String, int) throws org.apache.derby.client.am.SqlException;
protected void finalize() throws Throwable;
protected byte[] getCnnToken();
protected short getSequenceNumber();
private void flowUSRIDPWDconnect(String) throws org.apache.derby.client.am.SqlException;
private void flowUSRIDONLconnect() throws org.apache.derby.client.am.SqlException;
private void flowUSRENCPWDconnect(String) throws org.apache.derby.client.am.SqlException;
private void flowEUSRIDPWDconnect(String) throws org.apache.derby.client.am.SqlException;
private void flowEUSRIDDTAconnect() throws org.apache.derby.client.am.SqlException;
private void flowEUSRPWDDTAconnect(String) throws org.apache.derby.client.am.SqlException;
private void flowUSRSSBPWDconnect(String) throws org.apache.derby.client.am.SqlException;
private void flowServerAttributes() throws org.apache.derby.client.am.SqlException;
private void flowKeyExchange(int, byte[]) throws org.apache.derby.client.am.SqlException;
private void flowSeedExchange(int, byte[]) throws org.apache.derby.client.am.SqlException;
private void flowServerAttributesAndKeyExchange(int, byte[]) throws org.apache.derby.client.am.SqlException;
private void flowServerAttributesAndSeedExchange(int, byte[]) throws org.apache.derby.client.am.SqlException;
private void flowSecurityCheckAndAccessRdb(int, String, String, byte[], byte[]) throws org.apache.derby.client.am.SqlException;
private void writeAllConnectCommandsChained(int, String, String) throws org.apache.derby.client.am.SqlException;
private void readAllConnectCommandsChained(int) throws org.apache.derby.client.am.SqlException;
private void writeServerAttributesAndKeyExchange(int, byte[]) throws org.apache.derby.client.am.SqlException;
private void writeServerAttributesAndSeedExchange(byte[]) throws org.apache.derby.client.am.SqlException;
private void readServerAttributesAndKeyExchange(int) throws org.apache.derby.client.am.SqlException;
private void readServerAttributesAndSeedExchange() throws org.apache.derby.client.am.SqlException;
private void writeSecurityCheckAndAccessRdb(int, String, String, byte[], byte[]) throws org.apache.derby.client.am.SqlException;
private void readSecurityCheckAndAccessRdb() throws org.apache.derby.client.am.SqlException;
void writeDeferredReset() throws org.apache.derby.client.am.SqlException;
void readDeferredReset() throws org.apache.derby.client.am.SqlException;
void setServerAttributeData(String, String, String, String);
void setAccessSecurityData(int, int, int[], boolean, byte[]) throws org.apache.derby.client.am.DisconnectException;
void securityCheckComplete(int, int);
void rdbAccessed(int, String, boolean, byte[]);
protected org.apache.derby.client.am.Agent newAgent_(org.apache.derby.client.am.LogWriter, int, String, int, int) throws org.apache.derby.client.am.SqlException;
protected org.apache.derby.client.am.Statement newStatement_(int, int, int) throws org.apache.derby.client.am.SqlException;
protected void resetStatement_(org.apache.derby.client.am.Statement, int, int, int) throws org.apache.derby.client.am.SqlException;
protected org.apache.derby.client.am.PreparedStatement newPositionedUpdatePreparedStatement_(String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
protected org.apache.derby.client.am.PreparedStatement newPreparedStatement_(String, int, int, int, int, String[], int[]) throws org.apache.derby.client.am.SqlException;
protected void resetPreparedStatement_(org.apache.derby.client.am.PreparedStatement, String, int, int, int, int, String[], int[]) throws org.apache.derby.client.am.SqlException;
protected org.apache.derby.client.am.CallableStatement newCallableStatement_(String, int, int, int) throws org.apache.derby.client.am.SqlException;
protected void resetCallableStatement_(org.apache.derby.client.am.CallableStatement, String, int, int, int) throws org.apache.derby.client.am.SqlException;
protected org.apache.derby.client.am.DatabaseMetaData newDatabaseMetaData_();
private void checkDatabaseName() throws org.apache.derby.client.am.SqlException;
private void checkUserLength(String) throws org.apache.derby.client.am.SqlException;
private void checkPasswordLength(String) throws org.apache.derby.client.am.SqlException;
private void checkUser(String) throws org.apache.derby.client.am.SqlException;
private void checkUserPassword(String, String) throws org.apache.derby.client.am.SqlException;
private void checkSecmgrForSecmecSupport(int) throws org.apache.derby.client.am.SqlException;
private org.apache.derby.client.am.SqlException mapSecchkcd(int);
protected void constructCrrtkn() throws org.apache.derby.client.am.SqlException;
private void constructExtnam() throws org.apache.derby.client.am.SqlException;
private void constructPrddta() throws org.apache.derby.client.am.SqlException;
private void initializePublicKeyForEncryption() throws org.apache.derby.client.am.SqlException;
private void initializeClientSeed() throws org.apache.derby.client.am.SqlException;
private byte[] encryptedPasswordForUSRENCPWD(String) throws org.apache.derby.client.am.SqlException;
private byte[] encryptedUseridForEUSRIDPWD() throws org.apache.derby.client.am.SqlException;
private byte[] encryptedPasswordForEUSRIDPWD(String) throws org.apache.derby.client.am.SqlException;
private byte[] passwordSubstituteForUSRSSBPWD(String) throws org.apache.derby.client.am.SqlException;
public int getSQLAM();
public int getAGENT();
public int getCMNTCPIP();
public int getRDB();
public int getSECMGR();
public int getXAMGR();
public int getSYNCPTMGR();
public int getRSYNCMGR();
private char[] flipBits(char[]);
public void writeCommitSubstitute_() throws org.apache.derby.client.am.SqlException;
public void readCommitSubstitute_() throws org.apache.derby.client.am.SqlException;
public void writeLocalXAStart_() throws org.apache.derby.client.am.SqlException;
public void readLocalXAStart_() throws org.apache.derby.client.am.SqlException;
public void writeLocalXACommit_() throws org.apache.derby.client.am.SqlException;
public void readLocalXACommit_() throws org.apache.derby.client.am.SqlException;
public void writeLocalXARollback_() throws org.apache.derby.client.am.SqlException;
public void readLocalXARollback_() throws org.apache.derby.client.am.SqlException;
public void writeLocalCommit_() throws org.apache.derby.client.am.SqlException;
public void readLocalCommit_() throws org.apache.derby.client.am.SqlException;
public void writeLocalRollback_() throws org.apache.derby.client.am.SqlException;
public void readLocalRollback_() throws org.apache.derby.client.am.SqlException;
protected void markClosed_();
protected boolean isGlobalPending_();
protected boolean doCloseStatementsOnClose_();
protected boolean allowCloseInUOW_();
protected boolean allowLocalCommitRollback_();
public void setInputStream(java.io.InputStream);
public void setOutputStream(java.io.OutputStream);
public java.io.InputStream getInputStream();
public java.io.OutputStream getOutputStream();
public void writeTransactionStart(org.apache.derby.client.am.Statement) throws org.apache.derby.client.am.SqlException;
public void readTransactionStart() throws org.apache.derby.client.am.SqlException;
public void setIndoubtTransactions(java.util.Hashtable);
protected void setReadOnlyTransactionFlag(boolean);
public org.apache.derby.client.am.SectionManager newSectionManager(String, org.apache.derby.client.am.Agent, String);
protected int getSocketAndInputOutputStreams(String, int, int);
protected int checkAlternateServerHasEqualOrHigherProductLevel(org.apache.derby.client.am.ProductLevel, int);
public boolean willAutoCommitGenerateFlow();
public int getSecurityMechanism();
public org.apache.derby.client.am.EncryptionManager getEncryptionManager();
public byte[] getTargetPublicKey();
public String getProductID();
public void doResetNow() throws org.apache.derby.client.am.SqlException;
public boolean isConnectionNull();
public void setConnectionNull(boolean);
public final boolean serverSupportsQryclsimp();
public final boolean serverSupportsLayerBStreaming();
protected final boolean supportsSessionDataCaching();
protected final boolean serverSupportsUtf8Ccsid();
protected final boolean serverSupportsUDTs();
protected final boolean serverSupportsEXTDTAAbort();
protected final boolean serverSupportsLocators();
protected final boolean serverSupportsTimestampNanoseconds();
protected final boolean serverSupportsBooleanValues();
public boolean isOpen();
public synchronized void close() throws java.sql.SQLException;
public synchronized void closeX() throws java.sql.SQLException;
public synchronized void closeForReuse() throws org.apache.derby.client.am.SqlException;
public synchronized void closeResources() throws java.sql.SQLException;
protected void writeXACommit_() throws org.apache.derby.client.am.SqlException;
protected void readXACommit_() throws org.apache.derby.client.am.SqlException;
protected void writeXARollback_() throws org.apache.derby.client.am.SqlException;
protected void readXARollback_() throws org.apache.derby.client.am.SqlException;
protected void writeXATransactionStart(org.apache.derby.client.am.Statement) throws org.apache.derby.client.am.SqlException;
static void ();
}
org/apache/derby/client/net/NetConnection40$1.class
package org.apache.derby.client.net;
synchronized class NetConnection40$1 implements Runnable {
void NetConnection40$1(NetConnection40);
public void run();
}
org/apache/derby/client/net/NetConnection40.class
package org.apache.derby.client.net;
public synchronized class NetConnection40 extends NetConnection {
private java.sql.PreparedStatement isValidStmt;
public void NetConnection40(NetLogWriter, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public void NetConnection40(NetLogWriter, org.apache.derby.jdbc.ClientBaseDataSource, String, String) throws org.apache.derby.client.am.SqlException;
public void NetConnection40(NetLogWriter, int, String, int, String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public void NetConnection40(NetLogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean) throws org.apache.derby.client.am.SqlException;
public void NetConnection40(NetLogWriter, String, int, org.apache.derby.jdbc.ClientBaseDataSource, boolean) throws org.apache.derby.client.am.SqlException;
public void NetConnection40(NetLogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
public java.sql.Array createArrayOf(String, Object[]) throws java.sql.SQLException;
public java.sql.NClob createNClob() throws java.sql.SQLException;
public java.sql.SQLXML createSQLXML() throws java.sql.SQLException;
public java.sql.Struct createStruct(String, Object[]) throws java.sql.SQLException;
public boolean isValid(int) throws java.sql.SQLException;
public synchronized void close() throws java.sql.SQLException;
public void setClientInfo(String, String) throws java.sql.SQLClientInfoException;
public void setClientInfo(java.util.Properties) throws java.sql.SQLClientInfoException;
public String getClientInfo(String) throws java.sql.SQLException;
public java.util.Properties getClientInfo() throws java.sql.SQLException;
public final java.util.Map getTypeMap() throws java.sql.SQLException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public void abort(java.util.concurrent.Executor) throws java.sql.SQLException;
public int getNetworkTimeout() throws java.sql.SQLException;
public void setNetworkTimeout(java.util.concurrent.Executor, int) throws java.sql.SQLException;
}
org/apache/derby/client/net/NetConnectionReply.class
package org.apache.derby.client.net;
public synchronized class NetConnectionReply extends Reply implements ConnectionReplyInterface {
private static org.apache.derby.shared.common.i18n.MessageUtil msgutil_;
void NetConnectionReply(NetAgent, int);
void readExchangeServerAttributes(org.apache.derby.client.am.Connection) throws org.apache.derby.client.am.SqlException;
void verifyConnectReply(int) throws org.apache.derby.client.am.SqlException;
void parseConnectError() throws org.apache.derby.client.am.DisconnectException;
void readDummyExchangeServerAttributes(org.apache.derby.client.am.Connection) throws org.apache.derby.client.am.SqlException;
void readAccessSecurity(org.apache.derby.client.am.Connection, int) throws org.apache.derby.client.am.SqlException;
void readSecurityCheck(org.apache.derby.client.am.Connection) throws org.apache.derby.client.am.SqlException;
void readAccessDatabase(org.apache.derby.client.am.Connection) throws org.apache.derby.client.am.SqlException;
public void readCommitSubstitute(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readLocalCommit(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readLocalRollback(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readLocalXAStart(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readLocalXACommit(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readLocalXARollback(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected void readXaStartUnitOfWork(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected int readXaEndUnitOfWork(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected int readXaPrepare(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected void readXaCommit(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected int readXaRollback(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected void readXaRecover(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected void readXaForget(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseRDBCMMreply(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseRDBRLLBCKreply(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseEXCSATreply(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseDummyEXCSATreply(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseACCSECreply(NetConnection, int) throws org.apache.derby.client.am.DisconnectException;
private void parseSECCHKreply(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseACCRDBreply(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected int parseTypdefsOrMgrlvlovrs() throws org.apache.derby.client.am.DisconnectException;
protected void parseCommitError(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseRollbackError() throws org.apache.derby.client.am.DisconnectException;
void parseExchangeServerAttributesError() throws org.apache.derby.client.am.DisconnectException;
void parseAccessSecurityError(NetConnection) throws org.apache.derby.client.am.DisconnectException;
void parseSecurityCheckError(NetConnection) throws org.apache.derby.client.am.DisconnectException;
void parseAccessRdbError(NetConnection) throws org.apache.derby.client.am.DisconnectException;
void parseCommonError(int) throws org.apache.derby.client.am.DisconnectException;
NetSqlca parseAbnormalEndUow(org.apache.derby.client.am.ConnectionCallbackInterface, org.apache.derby.client.am.UnitOfWorkListener) throws org.apache.derby.client.am.DisconnectException;
NetSqlca parseAbnormalEndUow(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
NetSqlca parseAbnormalEndUow(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseRdbAccessFailed(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseSECCHKRM(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseACCRDBRM(NetConnection) throws org.apache.derby.client.am.DisconnectException;
void parseENDUOWRM(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected void parseCMDCHKRM() throws org.apache.derby.client.am.DisconnectException;
void parseRDBNACRM() throws org.apache.derby.client.am.DisconnectException;
private void parseRDBNFNRM(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseRDBATHRM(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected void parseSYNTAXRM() throws org.apache.derby.client.am.DisconnectException;
private void parseRDBACCRM() throws org.apache.derby.client.am.DisconnectException;
private void parseRDBAFLRM() throws org.apache.derby.client.am.DisconnectException;
protected void parseVALNSPRM() throws org.apache.derby.client.am.DisconnectException;
protected void parsePRCCNVRM() throws org.apache.derby.client.am.DisconnectException;
void parseOBJNSPRM() throws org.apache.derby.client.am.DisconnectException;
private void parseMGRLVLRM() throws org.apache.derby.client.am.DisconnectException;
protected void parseCMDNSPRM() throws org.apache.derby.client.am.DisconnectException;
void parseABNUOWRM() throws org.apache.derby.client.am.DisconnectException;
private void parseEXCSATRD(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseDummyEXCSATRD(NetConnection) throws org.apache.derby.client.am.DisconnectException;
private void parseACCSECRD(NetConnection, int) throws org.apache.derby.client.am.DisconnectException;
void parseTYPDEFNAM() throws org.apache.derby.client.am.DisconnectException;
void parseTYPDEFOVR() throws org.apache.derby.client.am.DisconnectException;
int parseSYNCCRD(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected int parseXARETVAL() throws org.apache.derby.client.am.DisconnectException;
protected byte parseSYNCTYPE() throws org.apache.derby.client.am.DisconnectException;
protected int parseSYNCCTLreply(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseSYNCCTLError(int) throws org.apache.derby.client.am.DisconnectException;
private void parseMGRLVLLS(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected String parseEXTNAM() throws org.apache.derby.client.am.DisconnectException;
protected String parseSRVCLSNM() throws org.apache.derby.client.am.DisconnectException;
protected String parseSRVNAM() throws org.apache.derby.client.am.DisconnectException;
protected String parseSRVRLSLV() throws org.apache.derby.client.am.DisconnectException;
protected int parseMGRLVLN() throws org.apache.derby.client.am.DisconnectException;
protected int[] parseSECMEC() throws org.apache.derby.client.am.DisconnectException;
protected byte[] parseSECTKN(boolean) throws org.apache.derby.client.am.DisconnectException;
protected int parseSECCHKCD() throws org.apache.derby.client.am.DisconnectException;
protected String parsePRDID(boolean) throws org.apache.derby.client.am.DisconnectException;
protected String parseUSRID(boolean) throws org.apache.derby.client.am.DisconnectException;
protected int parseCODPNTDR() throws org.apache.derby.client.am.DisconnectException;
protected byte[] parseCRRTKN(boolean) throws org.apache.derby.client.am.DisconnectException;
protected int parseUOWDSP() throws org.apache.derby.client.am.DisconnectException;
protected String parseRDBNAM(boolean) throws org.apache.derby.client.am.DisconnectException;
protected int parseXIDCNT() throws org.apache.derby.client.am.DisconnectException;
protected javax.transaction.xa.Xid parseXID() throws org.apache.derby.client.am.DisconnectException;
protected java.util.Hashtable parseIndoubtList() throws org.apache.derby.client.am.DisconnectException;
protected int parseSYNERRCD() throws org.apache.derby.client.am.DisconnectException;
protected int parseCODPNT() throws org.apache.derby.client.am.DisconnectException;
protected int parsePRCCNVCD() throws org.apache.derby.client.am.DisconnectException;
protected int parseCCSIDSBC() throws org.apache.derby.client.am.DisconnectException;
protected int parseCCSIDMBC() throws org.apache.derby.client.am.DisconnectException;
protected int parseCCSIDDBC() throws org.apache.derby.client.am.DisconnectException;
protected int parseSVRCOD(int, int) throws org.apache.derby.client.am.DisconnectException;
protected int parseFastSVRCOD(int, int) throws org.apache.derby.client.am.DisconnectException;
protected NetSqlca parseSQLCARD(org.apache.derby.client.am.Sqlca[]) throws org.apache.derby.client.am.DisconnectException;
NetSqlca parseSQLCARDrow(org.apache.derby.client.am.Sqlca[]) throws org.apache.derby.client.am.DisconnectException;
int parseSQLNUMROW() throws org.apache.derby.client.am.DisconnectException;
int parseFastSQLNUMROW() throws org.apache.derby.client.am.DisconnectException;
private int parseSQLNUMGRP() throws org.apache.derby.client.am.DisconnectException;
private int parseFastSQLNUMGRP() throws org.apache.derby.client.am.DisconnectException;
private NetSqlca parseSQLCAGRP(org.apache.derby.client.am.Sqlca[]) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLCAXGRP(NetSqlca) throws org.apache.derby.client.am.DisconnectException;
private long parseSQLDIAGGRP(org.apache.derby.client.am.Sqlca[]) throws org.apache.derby.client.am.DisconnectException;
protected String parseFastVCS() throws org.apache.derby.client.am.DisconnectException;
protected boolean checkAndGetReceivedFlag(boolean) throws org.apache.derby.client.am.DisconnectException;
protected void checkRequiredObjects(boolean) throws org.apache.derby.client.am.DisconnectException;
protected void checkRequiredObjects(boolean, boolean) throws org.apache.derby.client.am.DisconnectException;
protected void checkRequiredObjects(boolean, boolean, boolean) throws org.apache.derby.client.am.DisconnectException;
protected void checkRequiredObjects(boolean, boolean, boolean, boolean) throws org.apache.derby.client.am.DisconnectException;
protected void checkRequiredObjects(boolean, boolean, boolean, boolean, boolean, boolean) throws org.apache.derby.client.am.DisconnectException;
protected void checkRequiredObjects(boolean, boolean, boolean, boolean, boolean, boolean, boolean) throws org.apache.derby.client.am.DisconnectException;
protected void doObjnsprmSemantics(int) throws org.apache.derby.client.am.DisconnectException;
protected void doPrmnsprmSemantics(int) throws org.apache.derby.client.am.DisconnectException;
void doValnsprmSemantics(int, int) throws org.apache.derby.client.am.DisconnectException;
void doValnsprmSemantics(int, String) throws org.apache.derby.client.am.DisconnectException;
void doDtamchrmSemantics() throws org.apache.derby.client.am.DisconnectException;
private void doMgrlvlrmSemantics(String, String) throws org.apache.derby.client.am.DisconnectException;
private void doMgrlvlrmSemantics(int, int) throws org.apache.derby.client.am.DisconnectException;
private void doMgrlvlrmSemantics(int[], int[]) throws org.apache.derby.client.am.DisconnectException;
protected void doPrccnvrmSemantics(int) throws org.apache.derby.client.am.DisconnectException;
void parseSQLDCTOKS() throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDIAGCI(org.apache.derby.client.am.Sqlca[]) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDIAGCN() throws org.apache.derby.client.am.DisconnectException;
private void parseSQLCNROW() throws org.apache.derby.client.am.DisconnectException;
private int parseSQLDCROW(org.apache.derby.client.am.Sqlca[], int) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLTOKROW() throws org.apache.derby.client.am.DisconnectException;
private void parseSQLTOKGRP() throws org.apache.derby.client.am.DisconnectException;
private long parseSQLDIAGSTT(org.apache.derby.client.am.Sqlca[]) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLCNGRP() throws org.apache.derby.client.am.DisconnectException;
private int parseSQLDCGRP(org.apache.derby.client.am.Sqlca[], int) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDCXGRP() throws org.apache.derby.client.am.DisconnectException;
private String parseFastNVCMorNVCS() throws org.apache.derby.client.am.DisconnectException;
private void skipFastNVCMorNVCS() throws org.apache.derby.client.am.DisconnectException;
void resetRowsetSqlca(org.apache.derby.client.am.Sqlca[], int);
protected void parseInitialPBSD(org.apache.derby.client.am.Connection) throws org.apache.derby.client.am.DisconnectException;
protected void parsePBSD() throws org.apache.derby.client.am.DisconnectException;
static void ();
}
org/apache/derby/client/net/NetConnectionRequest.class
package org.apache.derby.client.net;
public synchronized class NetConnectionRequest extends Request implements ConnectionRequestInterface {
void NetConnectionRequest(NetAgent, int);
void writeExchangeServerAttributes(String, int, int, int, int, int, int, int, int, int, int) throws org.apache.derby.client.am.SqlException;
void writeDummyExchangeServerAttributes() throws org.apache.derby.client.am.SqlException;
void writeAccessSecurity(int, String, byte[]) throws org.apache.derby.client.am.SqlException;
void writeSecurityCheck(int, String, String, String, byte[], byte[]) throws org.apache.derby.client.am.SqlException;
void writeAccessDatabase(String, boolean, byte[], byte[], Typdef) throws org.apache.derby.client.am.SqlException;
public void writeCommitSubstitute(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeLocalCommit(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeLocalRollback(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeLocalXAStart(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeLocalXACommit(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeLocalXARollback(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeXaStartUnitOfWork(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeXaEndUnitOfWork(NetConnection) throws org.apache.derby.client.am.SqlException;
protected void writeXaPrepare(NetConnection) throws org.apache.derby.client.am.SqlException;
protected void writeXaCommit(NetConnection, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
protected void writeXaRollback(NetConnection, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
protected void writeXaRecover(NetConnection, int) throws org.apache.derby.client.am.SqlException;
protected void writeXaForget(NetConnection, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
public void writeSYNCType(int, int);
public void writeForget(int, int);
public void writeReleaseConversation(int, int);
void writeNullXID(int);
void writeXID(int, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
void writeXAFlags(int, int);
void writeXATimeout(int, long);
void buildRDBCMM() throws org.apache.derby.client.am.SqlException;
void buildRDBRLLBCK() throws org.apache.derby.client.am.SqlException;
void buildEXCSAT(String, int, int, int, int, int, int, int, int, int, int) throws org.apache.derby.client.am.SqlException;
void buildDummyEXCSAT() throws org.apache.derby.client.am.SqlException;
void buildACCSEC(int, String, byte[]) throws org.apache.derby.client.am.SqlException;
void buildSECCHK(int, String, String, String, byte[], byte[]) throws org.apache.derby.client.am.SqlException;
void buildACCRDB(String, boolean, byte[], byte[], Typdef) throws org.apache.derby.client.am.SqlException;
void buildSYNCCTLMigrate() throws org.apache.derby.client.am.SqlException;
void buildSYNCCTLCommit(int, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
void buildSYNCCTLRollback(int) throws org.apache.derby.client.am.SqlException;
private void buildEXTNAM(String) throws org.apache.derby.client.am.SqlException;
private void buildSRVNAM(String) throws org.apache.derby.client.am.SqlException;
private void buildSRVRLSLV() throws org.apache.derby.client.am.SqlException;
private void buildSRVCLSNM() throws org.apache.derby.client.am.SqlException;
private void buildSECMEC(int) throws org.apache.derby.client.am.SqlException;
private void buildRDBNAM(String, boolean) throws org.apache.derby.client.am.SqlException;
private void buildSECTKN(byte[]) throws org.apache.derby.client.am.SqlException;
private void buildUSRID(String) throws org.apache.derby.client.am.SqlException;
private void buildPASSWORD(String) throws org.apache.derby.client.am.SqlException;
private void buildRDBACCCL() throws org.apache.derby.client.am.SqlException;
private void buildPRDID() throws org.apache.derby.client.am.SqlException;
private void buildPRDDTA(byte[]) throws org.apache.derby.client.am.SqlException;
private void buildTYPDEFNAM(String) throws org.apache.derby.client.am.SqlException;
void buildTYPDEFOVR(boolean, int, boolean, int, boolean, int) throws org.apache.derby.client.am.SqlException;
private void buildMGRLVLLS(int, int, int, int, int, int, int, int) throws org.apache.derby.client.am.SqlException;
private void buildCRRTKN(byte[]) throws org.apache.derby.client.am.SqlException;
private void buildRDBALWUPD(boolean) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetCursor.class
package org.apache.derby.client.net;
public synchronized class NetCursor extends org.apache.derby.client.am.Cursor {
NetResultSet netResultSet_;
NetAgent netAgent_;
Typdef qrydscTypdef_;
int targetSqlamForTypdef_;
int numMddOverrides_;
int maximumRowSize_;
boolean blocking_;
int[] typeToUseForComputingDataLength_;
boolean[] isGraphic_;
java.util.HashMap extdtaPositions_;
java.util.ArrayList extdtaData_;
boolean rtnextrow_;
private boolean qryclsimpEnabled_;
void NetCursor(NetAgent);
void NetCursor(NetAgent, int);
protected boolean calculateColumnOffsetsForRow_(int, boolean) throws org.apache.derby.client.am.SqlException, org.apache.derby.client.am.DisconnectException;
void scanDataBufferForEndOfData() throws org.apache.derby.client.am.SqlException;
protected boolean isDataBufferNull();
protected void allocateDataBuffer();
protected void allocateDataBuffer(int);
private int readFdocaInt() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private long readFdocaLong() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int readFdocaOneByte() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int readFdocaOneByte(int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private byte[] readFdocaBytes(int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int readFdocaTwoByteLength() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int readFdocaTwoByteLength(int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int skipFdocaBytes(int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int skipFdocaBytes(int, int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private void shiftPartialRowToBeginning();
private void adjustColumnOffsetsForColumnsPreviouslyCalculated(int);
private void resetCurrentRowPosition();
void calculateLobColumnPositionsForRow();
boolean isNonTrivialDataLob(int);
protected void clearLobData_();
NetSqlca[] parseSQLCARD(Typdef) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private NetSqlca[] parseSQLCAGRP(Typdef) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private void parseSQLCAXGRP(Typdef, NetSqlca) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private NetSqlca[] parseSQLDIAGGRP() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private void parseSQLDIAGSTT() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private NetSqlca[] parseSQLDIAGCI() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private void parseSQLDIAGCN() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private NetSqlca parseSQLDCGRP() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private NetSqlca parseSQLDCROW() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
void parseSQLDCTOKS() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private void parseSQLDCXGRP() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private String parseVCS(Typdef) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private String readFdocaString(int, String) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
void allocateColumnOffsetAndLengthArrays();
void setBlocking(int);
protected byte[] findExtdtaData(int);
protected int locator(int);
public org.apache.derby.client.am.Blob getBlobColumn_(int, org.apache.derby.client.am.Agent, boolean) throws org.apache.derby.client.am.SqlException;
public org.apache.derby.client.am.Clob getClobColumn_(int, org.apache.derby.client.am.Agent, boolean) throws org.apache.derby.client.am.SqlException;
public byte[] getClobBytes_(int, int[]) throws org.apache.derby.client.am.SqlException;
void initializeColumnInfoArrays(Typdef, int, int) throws org.apache.derby.client.am.DisconnectException;
int ensureSpaceForDataBuffer(int);
protected void getMoreData_() throws org.apache.derby.client.am.SqlException;
public void nullDataForGC();
private void checkAndThrowReceivedEndqryrm() throws org.apache.derby.client.am.SqlException;
private void checkAndThrowReceivedEndqryrm(int) throws org.apache.derby.client.am.SqlException;
private int completeSplitRow() throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int completeSplitRow(int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private int[] allocateColumnDataPositionArray(int);
private int[] allocateColumnDataComputedLengthArray(int);
private boolean[] allocateColumnDataIsNullArray(int);
protected int getDecimalLength(int);
public final void setAllRowsReceivedFromServer(boolean);
final void setQryclsimpEnabled(boolean);
final boolean getQryclsimpEnabled();
}
org/apache/derby/client/net/NetDatabaseMetaData.class
package org.apache.derby.client.net;
public synchronized class NetDatabaseMetaData extends org.apache.derby.client.am.DatabaseMetaData {
public void NetDatabaseMetaData(NetAgent, NetConnection);
public String getURL_() throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetDatabaseMetaData40.class
package org.apache.derby.client.net;
public synchronized class NetDatabaseMetaData40 extends NetDatabaseMetaData {
public void NetDatabaseMetaData40(NetAgent, NetConnection);
public int getJDBCMajorVersion() throws java.sql.SQLException;
public int getJDBCMinorVersion() throws java.sql.SQLException;
public java.sql.RowIdLifetime getRowIdLifetime() throws java.sql.SQLException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
}
org/apache/derby/client/net/NetIndoubtTransaction.class
package org.apache.derby.client.net;
public synchronized class NetIndoubtTransaction {
javax.transaction.xa.Xid xid_;
byte[] uowid_;
byte[] cSyncLog_;
byte[] pSyncLog_;
String ipaddr_;
int port_;
protected void NetIndoubtTransaction(javax.transaction.xa.Xid, byte[], byte[], byte[], String, int);
protected javax.transaction.xa.Xid getXid();
protected byte[] getUOWID();
protected byte[] getCSyncLog();
protected byte[] getPSyncLog();
protected String getIpAddr();
protected int getPort();
}
org/apache/derby/client/net/NetLogWriter.class
package org.apache.derby.client.net;
public synchronized class NetLogWriter extends org.apache.derby.client.am.LogWriter {
public static final int TYPE_TRACE_RECEIVE = 2;
public static final int TYPE_TRACE_SEND = 1;
private static final char[] asciiChar__;
private static final String colPosHeader__ = 0 1 2 3 4 5 6 7 8 9 A B C D E F 0123456789ABCDEF 0123456789ABCDEF;
private static final char[] ebcdicChar__;
private static final char[] hexDigit__;
private static final String receiveHeader__ = RECEIVE BUFFER: (ASCII) (EBCDIC);
private static final String sendHeader__ = SEND BUFFER: (ASCII) (EBCDIC);
private static final char spaceChar__ = 32;
private static final char zeroChar__ = 48;
private static CodePointNameTable codePointNameTable__;
public void NetLogWriter(java.io.PrintWriter, int);
public void traceConnectsExit(org.apache.derby.client.am.Connection);
public void traceConnectsResetExit(org.apache.derby.client.am.Connection);
public synchronized void traceProtocolFlow(byte[], int, int, int, String, String, int);
private static int getCodePoint(byte[], int);
private static String getHeader(int);
private static int getStartPosition(int);
private void printHeaderWithCodePointName(String, int);
private void dncnetprint(String);
private void dncnetprintln(String);
private void dncnetprintln(char[]);
static void ();
}
org/apache/derby/client/net/NetPackageReply.class
package org.apache.derby.client.net;
public synchronized class NetPackageReply extends NetConnectionReply {
void NetPackageReply(NetAgent, int);
NetSqlca parseSqlErrorCondition() throws org.apache.derby.client.am.DisconnectException;
void parseDTAMCHRM() throws org.apache.derby.client.am.DisconnectException;
protected void parseRDBUPDRM() throws org.apache.derby.client.am.DisconnectException;
void parseSQLERRRM() throws org.apache.derby.client.am.DisconnectException;
protected Object parsePKGNAMCT(boolean) throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/NetPackageRequest.class
package org.apache.derby.client.net;
public synchronized class NetPackageRequest extends NetConnectionRequest {
static final String COLLECTIONNAME = NULLID;
static final String collectionName = NULLID;
void NetPackageRequest(NetAgent, int);
void buildCommonPKGNAMinfo(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
private void buildSCLDTA(String, int) throws org.apache.derby.client.am.SqlException;
void buildPKGNAMCSN(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
private void storePKGNAMCBytes(org.apache.derby.client.am.Section);
private void writeStoredPKGNAMCBytes(org.apache.derby.client.am.Section);
private boolean canCommandUseDefaultPKGNAMCSN();
private boolean checkPKGNAMlengths(String, int, int) throws org.apache.derby.client.am.SqlException;
private byte[] getBytes(String, String) throws org.apache.derby.client.am.SqlException;
private void buildNOCMorNOCS(String) throws org.apache.derby.client.am.SqlException;
private void buildSQLSTTGRP(String) throws org.apache.derby.client.am.SqlException;
private void buildSQLSTT(String) throws org.apache.derby.client.am.SqlException;
protected void buildSQLSTTcommandData(String) throws org.apache.derby.client.am.SqlException;
protected void buildSQLATTRcommandData(String) throws org.apache.derby.client.am.SqlException;
public void encryptDataStream(int) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetPreparedStatement.class
package org.apache.derby.client.net;
public synchronized class NetPreparedStatement extends NetStatement implements org.apache.derby.client.am.MaterialPreparedStatement {
org.apache.derby.client.am.PreparedStatement preparedStatement_;
void NetPreparedStatement(org.apache.derby.client.am.PreparedStatement, NetAgent, NetConnection);
void resetNetPreparedStatement(org.apache.derby.client.am.PreparedStatement, NetAgent, NetConnection);
private void initNetPreparedStatement(org.apache.derby.client.am.PreparedStatement);
void NetPreparedStatement(NetAgent, NetConnection, String, int, int, int, int, String[], int[], org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
void resetNetPreparedStatement(NetAgent, NetConnection, String, int, int, int, int, String[], int[]) throws org.apache.derby.client.am.SqlException;
void NetPreparedStatement(NetAgent, NetConnection, String, org.apache.derby.client.am.Section, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
void resetNetPreparedStatement(NetAgent, NetConnection, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
void resetNetPreparedStatement(NetAgent, NetConnection, String, org.apache.derby.client.am.Section, org.apache.derby.client.am.ColumnMetaData, org.apache.derby.client.am.ColumnMetaData) throws org.apache.derby.client.am.SqlException;
public void writeExecute_(org.apache.derby.client.am.Section, org.apache.derby.client.am.ColumnMetaData, Object[], int, boolean, boolean) throws org.apache.derby.client.am.SqlException;
public void readExecute_() throws org.apache.derby.client.am.SqlException;
public void writeOpenQuery_(org.apache.derby.client.am.Section, int, int, int, org.apache.derby.client.am.ColumnMetaData, Object[]) throws org.apache.derby.client.am.SqlException;
public void writeDescribeInput_(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void readDescribeInput_() throws org.apache.derby.client.am.SqlException;
public void writeDescribeOutput_(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void readDescribeOutput_() throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetResultSet.class
package org.apache.derby.client.net;
public synchronized class NetResultSet extends org.apache.derby.client.am.ResultSet {
private final NetConnection netConnection_;
private final NetStatement netStatement_;
final NetCursor netCursor_;
private final NetAgent netAgent_;
private boolean isFixedRowProtocol;
public boolean firstOutovrBuilt_;
void NetResultSet(NetAgent, NetStatement, org.apache.derby.client.am.Cursor, int, int, int, int, int, long, int, int, int);
protected void parseRowset_() throws org.apache.derby.client.am.SqlException;
public void setFetchSize_(int);
void flowFetchToCompleteRowset() throws org.apache.derby.client.am.DisconnectException;
void queryDataWasReturnedOnOpen() throws org.apache.derby.client.am.DisconnectException;
public void writeFetch_(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void readFetch_() throws org.apache.derby.client.am.SqlException;
public void writeScrollableFetch_(org.apache.derby.client.am.Section, int, int, long, boolean) throws org.apache.derby.client.am.SqlException;
public void readScrollableFetch_() throws org.apache.derby.client.am.SqlException;
public void writePositioningFetch_(org.apache.derby.client.am.Section, int, long) throws org.apache.derby.client.am.SqlException;
public void readPositioningFetch_() throws org.apache.derby.client.am.SqlException;
public void writeCursorClose_(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void readCursorClose_() throws org.apache.derby.client.am.SqlException;
protected void preClose_() throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetResultSet40.class
package org.apache.derby.client.net;
public synchronized class NetResultSet40 extends NetResultSet {
void NetResultSet40(NetAgent, NetStatement, org.apache.derby.client.am.Cursor, int, int, int, int, int, long, int, int, int);
public java.io.Reader getNCharacterStream(int) throws java.sql.SQLException;
public java.io.Reader getNCharacterStream(String) throws java.sql.SQLException;
public String getNString(int) throws java.sql.SQLException;
public String getNString(String) throws java.sql.SQLException;
public java.sql.RowId getRowId(int) throws java.sql.SQLException;
public java.sql.RowId getRowId(String) throws java.sql.SQLException;
public void updateRowId(int, java.sql.RowId) throws java.sql.SQLException;
public void updateRowId(String, java.sql.RowId) throws java.sql.SQLException;
public void updateNString(int, String) throws java.sql.SQLException;
public void updateNString(String, String) throws java.sql.SQLException;
public void updateNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException;
public void updateNCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException;
public void updateNClob(int, java.sql.NClob) throws java.sql.SQLException;
public void updateNClob(String, java.sql.NClob) 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 java.sql.SQLXML getSQLXML(int) throws java.sql.SQLException;
public java.sql.SQLXML getSQLXML(String) throws java.sql.SQLException;
public void updateSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException;
public void updateSQLXML(String, java.sql.SQLXML) throws java.sql.SQLException;
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public void updateNClob(int, java.io.Reader, long) throws java.sql.SQLException;
public void updateNClob(String, java.io.InputStream, long) throws java.sql.SQLException;
public void updateNClob(String, java.io.Reader, long) throws java.sql.SQLException;
public Object getObject(int, Class) throws java.sql.SQLException;
private java.sql.SQLException mismatchException(String, int) throws java.sql.SQLException;
public Object getObject(String, Class) throws java.sql.SQLException;
}
org/apache/derby/client/net/NetResultSetReply.class
package org.apache.derby.client.net;
public synchronized class NetResultSetReply extends NetStatementReply implements ResultSetReplyInterface {
public void NetResultSetReply(NetAgent, int);
public void readFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readPositioningFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readScrollableFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readCursorClose(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseCLSQRYreply(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseCNTQRYreply(org.apache.derby.client.am.ResultSetCallbackInterface, boolean) throws org.apache.derby.client.am.DisconnectException;
void parseCloseError(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseFetchError(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseQRYNOPRM(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/NetResultSetRequest.class
package org.apache.derby.client.net;
public synchronized class NetResultSetRequest extends NetStatementRequest implements ResultSetRequestInterface {
public void NetResultSetRequest(NetAgent, int);
public void writeFetch(NetResultSet, org.apache.derby.client.am.Section, int) throws org.apache.derby.client.am.SqlException;
public void writeScrollableFetch(NetResultSet, org.apache.derby.client.am.Section, int, int, long, boolean) throws org.apache.derby.client.am.SqlException;
public void writePositioningFetch(NetResultSet, org.apache.derby.client.am.Section, int, long) throws org.apache.derby.client.am.SqlException;
public void writeCursorClose(NetResultSet, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
private void buildCLSQRY(org.apache.derby.client.am.Section, long) throws org.apache.derby.client.am.SqlException;
private void buildCNTQRY(org.apache.derby.client.am.Section, boolean, long, int, boolean) throws org.apache.derby.client.am.SqlException;
private void buildCoreCNTQRY(org.apache.derby.client.am.Section, boolean, long, int) throws org.apache.derby.client.am.SqlException;
private void buildScrollCNTQRY(int, long, org.apache.derby.client.am.Section, boolean, long, int, boolean) throws org.apache.derby.client.am.SqlException;
private void buildPositioningCNTQRY(int, long, org.apache.derby.client.am.Section, boolean, long, int) throws org.apache.derby.client.am.SqlException;
private void buildOUTOVR(NetResultSet, org.apache.derby.client.am.ColumnMetaData, boolean, boolean) throws org.apache.derby.client.am.SqlException;
private void buildRTNEXTDTA(int) throws org.apache.derby.client.am.SqlException;
private void buildQRYSCRORN(int) throws org.apache.derby.client.am.SqlException;
private void buildQRYBLKRST(int) throws org.apache.derby.client.am.SqlException;
private void buildQRYROWNBR(long) throws org.apache.derby.client.am.SqlException;
private void buildQRYRTNDTA(int) throws org.apache.derby.client.am.SqlException;
private int computePROTOCOLOrientation(int) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetSqlca.class
package org.apache.derby.client.net;
public synchronized class NetSqlca extends org.apache.derby.client.am.Sqlca {
void NetSqlca(org.apache.derby.client.am.Connection, int, String, byte[]);
void NetSqlca(org.apache.derby.client.am.Connection, int, byte[], byte[]) throws org.apache.derby.client.am.SqlException;
protected void setSqlerrd(int[]);
protected void setSqlwarnBytes(byte[]);
protected void setSqlerrmcBytes(byte[], int);
public long getRowCount(Typdef) throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/NetSqldta.class
package org.apache.derby.client.net;
public synchronized class NetSqldta extends NetCursor {
private NetConnection netConnection_;
public void NetSqldta(NetAgent);
public boolean next() throws org.apache.derby.client.am.SqlException;
protected boolean calculateColumnOffsetsForRow();
private int skipFdocaBytes(int);
private int readFdocaOneByte();
private int readFdocaTwoByteLength();
}
org/apache/derby/client/net/NetStatement.class
package org.apache.derby.client.net;
public synchronized class NetStatement implements org.apache.derby.client.am.MaterialStatement {
org.apache.derby.client.am.Statement statement_;
NetConnection netConnection_;
NetAgent netAgent_;
public boolean qryrowsetSentOnOpnqry_;
private void NetStatement();
private void resetNetStatement();
private void initNetStatement();
void NetStatement(org.apache.derby.client.am.Statement, NetAgent, NetConnection);
void resetNetStatement(org.apache.derby.client.am.Statement, NetAgent, NetConnection);
private void initNetStatement(org.apache.derby.client.am.Statement, NetAgent, NetConnection);
void NetStatement(NetAgent, NetConnection) throws org.apache.derby.client.am.SqlException;
void netReset(NetAgent, NetConnection) throws org.apache.derby.client.am.SqlException;
public void reset_();
void NetStatement(NetAgent, NetConnection, int, int, int) throws org.apache.derby.client.am.SqlException;
void resetNetStatement(NetAgent, NetConnection, int, int, int) throws org.apache.derby.client.am.SqlException;
public void writeSetSpecialRegister_(org.apache.derby.client.am.Section, java.util.ArrayList) throws org.apache.derby.client.am.SqlException;
public void readSetSpecialRegister_() throws org.apache.derby.client.am.SqlException;
public void writeExecuteImmediate_(String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void readExecuteImmediate_() throws org.apache.derby.client.am.SqlException;
public void readExecuteImmediateForBatch_(String) throws org.apache.derby.client.am.SqlException;
public void writePrepareDescribeOutput_(String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void readPrepareDescribeOutput_() throws org.apache.derby.client.am.SqlException;
public void writeOpenQuery_(org.apache.derby.client.am.Section, int, int) throws org.apache.derby.client.am.SqlException;
public void readOpenQuery_() throws org.apache.derby.client.am.SqlException;
public void writeExecuteCall_(boolean, String, org.apache.derby.client.am.Section, int, boolean, int, org.apache.derby.client.am.ColumnMetaData, Object[]) throws org.apache.derby.client.am.SqlException;
public void readExecuteCall_() throws org.apache.derby.client.am.SqlException;
public void writePrepare_(String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void readPrepare_() throws org.apache.derby.client.am.SqlException;
public void markClosedOnServer_();
}
org/apache/derby/client/net/NetStatementReply.class
package org.apache.derby.client.net;
public synchronized class NetStatementReply extends NetPackageReply implements StatementReplyInterface {
void NetStatementReply(NetAgent, int);
public void readPrepareDescribeOutput(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readExecuteImmediate(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readOpenQuery(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readExecute(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readPrepare(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readDescribeInput(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readDescribeOutput(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readExecuteCall(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parsePRPSQLSTTreply(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseDSCSQLSTTreply(org.apache.derby.client.am.PreparedStatementCallbackInterface, int) throws org.apache.derby.client.am.DisconnectException;
private void parseEXCSQLIMMreply(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseOPNQRYreply(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseEXCSQLSETreply(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseEXCSQLSTTreply(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected void parseResultSetProcedure(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected NetResultSet parseResultSetCursor(org.apache.derby.client.am.StatementCallbackInterface, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.DisconnectException;
protected void parseOpenQuery(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected void parseEndQuery(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseOpenQueryFailure(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parsePrepareError(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseExecuteImmediateError(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseDescribeError(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseOpenQueryError(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseExecuteError(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
void parseExecuteSetStatementError(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected NetResultSet parseOPNQRYRM(org.apache.derby.client.am.StatementCallbackInterface, boolean) throws org.apache.derby.client.am.DisconnectException;
protected void parseENDQRYRM(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private void parseQRYPOPRM() throws org.apache.derby.client.am.DisconnectException;
private void parseOPNQFLRM(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected java.util.ArrayList parseRSLSETRM() throws org.apache.derby.client.am.DisconnectException;
protected NetSqlca parseSQLDTARD(NetSqldta) throws org.apache.derby.client.am.DisconnectException;
protected void parseQRYDSC(NetCursor) throws org.apache.derby.client.am.DisconnectException;
private void parseFDODSC(NetCursor) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDTARDarray(NetCursor, boolean) throws org.apache.derby.client.am.DisconnectException;
private void checkPreviousSQLDTARDtriplet(int, int, int, int) throws org.apache.derby.client.am.DisconnectException;
private void checkFastRLO(int[][]) throws org.apache.derby.client.am.DisconnectException;
private void descriptorErrorDetected() throws org.apache.derby.client.am.DisconnectException;
protected void parseQRYDTA(NetResultSet) throws org.apache.derby.client.am.DisconnectException;
NetSqlca parseFDODTA(NetCursor) throws org.apache.derby.client.am.DisconnectException;
void parseFastSQLDTARDdata(NetCursor) throws org.apache.derby.client.am.DisconnectException;
void parseSQLDTARDdata(NetCursor) throws org.apache.derby.client.am.DisconnectException;
protected void copyEXTDTA(NetCursor) throws org.apache.derby.client.am.DisconnectException;
protected Object parsePKGNAMCSN(boolean) throws org.apache.derby.client.am.DisconnectException;
protected int parseQRYPRCTYP() throws org.apache.derby.client.am.DisconnectException;
protected int parseFastQRYPRCTYP() throws org.apache.derby.client.am.DisconnectException;
protected int parseSQLCSRHLD() throws org.apache.derby.client.am.DisconnectException;
protected int parseFastSQLCSRHLD() throws org.apache.derby.client.am.DisconnectException;
protected int parseQRYATTSCR() throws org.apache.derby.client.am.DisconnectException;
protected int parseFastQRYATTSCR() throws org.apache.derby.client.am.DisconnectException;
protected int parseQRYATTSET() throws org.apache.derby.client.am.DisconnectException;
protected int parseFastQRYATTSET() throws org.apache.derby.client.am.DisconnectException;
protected int parseQRYATTSNS() throws org.apache.derby.client.am.DisconnectException;
protected int parseFastQRYATTSNS() throws org.apache.derby.client.am.DisconnectException;
protected int parseQRYATTUPD() throws org.apache.derby.client.am.DisconnectException;
protected int parseFastQRYATTUPD() throws org.apache.derby.client.am.DisconnectException;
private long parseFastQRYINSID() throws org.apache.derby.client.am.DisconnectException;
protected java.util.ArrayList parsePKGSNLST() throws org.apache.derby.client.am.DisconnectException;
protected NetSqlca parseSQLDARD(org.apache.derby.client.am.ColumnMetaData, boolean) throws org.apache.derby.client.am.DisconnectException;
protected int parseSQLRSLRD(java.util.ArrayList) throws org.apache.derby.client.am.DisconnectException;
protected org.apache.derby.client.am.ColumnMetaData parseSQLCINRD() throws org.apache.derby.client.am.DisconnectException;
NetSqlca parseSQLDARDarray(org.apache.derby.client.am.ColumnMetaData, boolean) throws org.apache.derby.client.am.DisconnectException;
int parseSQLRSLRDarray(java.util.ArrayList) throws org.apache.derby.client.am.DisconnectException;
org.apache.derby.client.am.ColumnMetaData parseSQLCINRDarray() throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDAROW(org.apache.derby.client.am.ColumnMetaData, int) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDHROW(org.apache.derby.client.am.ColumnMetaData) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLRSROW(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDAGRP(org.apache.derby.client.am.ColumnMetaData, int) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLUDTGRP(org.apache.derby.client.am.ColumnMetaData, int) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDOPTGRP(org.apache.derby.client.am.ColumnMetaData, int) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDXGRP(org.apache.derby.client.am.ColumnMetaData, int) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLDHGRP(org.apache.derby.client.am.ColumnMetaData) throws org.apache.derby.client.am.DisconnectException;
private void parseSQLRSGRP(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.DisconnectException;
private String parseFastVCMorVCS() throws org.apache.derby.client.am.DisconnectException;
private String parseVCMorVCS() throws org.apache.derby.client.am.DisconnectException;
private int calculateResultSetType(int, int, int);
private int calculateResultSetConcurrency(int, int);
private int calculateResultSetHoldability(int);
private int parseSQLDTAGRPdataLabelsAndUpdateColumn(NetCursor, int, int) throws org.apache.derby.client.am.DisconnectException;
private String parseSQLSTT() throws org.apache.derby.client.am.DisconnectException;
private String parseSQLSTTGRP() throws org.apache.derby.client.am.DisconnectException;
public void readSetSpecialRegister(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/NetStatementRequest.class
package org.apache.derby.client.net;
public synchronized class NetStatementRequest extends NetPackageRequest implements StatementRequestInterface {
java.util.ArrayList extdtaPositions_;
int overrideLid_;
java.util.HashMap promototedParameters_;
void NetStatementRequest(NetAgent, int);
public void writeExecuteImmediate(NetStatement, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void writePrepareDescribeOutput(NetStatement, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void writePrepare(NetStatement, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void writeExecute(NetPreparedStatement, org.apache.derby.client.am.Section, org.apache.derby.client.am.ColumnMetaData, Object[], int, boolean, boolean) throws org.apache.derby.client.am.SqlException;
public void writeOpenQuery(NetPreparedStatement, org.apache.derby.client.am.Section, int, int, int, org.apache.derby.client.am.ColumnMetaData, Object[]) throws org.apache.derby.client.am.SqlException;
public void writeOpenQuery(NetStatement, org.apache.derby.client.am.Section, int, int) throws org.apache.derby.client.am.SqlException;
public void writeDescribeInput(NetPreparedStatement, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void writeDescribeOutput(NetPreparedStatement, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public void writeExecuteCall(NetStatement, boolean, String, org.apache.derby.client.am.Section, int, boolean, int, org.apache.derby.client.am.ColumnMetaData, Object[]) throws org.apache.derby.client.am.SqlException;
void buildOPNQRY(org.apache.derby.client.am.Section, boolean, int) throws org.apache.derby.client.am.SqlException;
void buildEXCSQLIMM(org.apache.derby.client.am.Section, boolean, long) throws org.apache.derby.client.am.SqlException;
void buildPRPSQLSTT(org.apache.derby.client.am.Section, String, boolean, boolean, int) throws org.apache.derby.client.am.SqlException;
void buildEXCSQLSET(org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
void buildEXCSQLSTT(org.apache.derby.client.am.Section, boolean, boolean, boolean, String, boolean, boolean, int, boolean, int, boolean, int, boolean, int) throws org.apache.derby.client.am.SqlException;
void buildDSCSQLSTT(org.apache.derby.client.am.Section, boolean, int) throws org.apache.derby.client.am.SqlException;
boolean buildSQLDTAcommandData(int, org.apache.derby.client.am.ColumnMetaData, Object[]) throws org.apache.derby.client.am.SqlException;
private void buildFDODSC(int, int[][], boolean, java.util.Hashtable, java.util.ArrayList) throws org.apache.derby.client.am.SqlException;
protected void buildSQLDTA(int, int[][], boolean, java.util.Hashtable, java.util.ArrayList) throws org.apache.derby.client.am.SqlException;
protected void buildSQLDTAGRP(int, int[][], boolean, java.util.Hashtable) throws org.apache.derby.client.am.SqlException;
protected void buildOUTOVR(org.apache.derby.client.am.ResultSet, org.apache.derby.client.am.ColumnMetaData) throws org.apache.derby.client.am.SqlException;
private int[][] calculateOUTOVRLidAndLengthOverrides(org.apache.derby.client.am.ResultSet, org.apache.derby.client.am.ColumnMetaData);
protected void buildSQLDTARD(int, int[][]) throws org.apache.derby.client.am.SqlException;
protected void buildSQLCADTA(int, int[][]) throws org.apache.derby.client.am.SqlException;
private void buildFDODTA(int, int[][], Object[]) throws org.apache.derby.client.am.SqlException;
private void buildEXTDTA(org.apache.derby.client.am.ColumnMetaData, Object[], boolean) throws org.apache.derby.client.am.SqlException;
private Object retrievePromotedParameterIfExists(int);
private int calculateColumnsInSQLDTAGRPtriplet(int);
private java.util.Hashtable computeProtocolTypesAndLengths(Object[], org.apache.derby.client.am.ColumnMetaData, int[][], java.util.Hashtable) throws org.apache.derby.client.am.SqlException;
private int buildPlaceholderLength(long);
private void buildOUTEXP(boolean) throws org.apache.derby.client.am.SqlException;
void buildMAXBLKEXT(int) throws org.apache.derby.client.am.SqlException;
void buildQRYROWSET(int) throws org.apache.derby.client.am.SqlException;
private void buildPRCNAM(String) throws org.apache.derby.client.am.SqlException;
void buildQRYBLKSZ() throws org.apache.derby.client.am.SqlException;
private void buildMAXRSLCNT(int) throws org.apache.derby.client.am.SqlException;
private void buildRDBCMTOK() throws org.apache.derby.client.am.SqlException;
private void buildRSLSETFLG(int) throws org.apache.derby.client.am.SqlException;
void buildQRYINSID(long) throws org.apache.derby.client.am.SqlException;
private void buildRTNSQLDA() throws org.apache.derby.client.am.SqlException;
private void buildTYPSQLDA(int) throws org.apache.derby.client.am.SqlException;
private void buildQRYCLSIMP();
private void setFDODTALobLength(int[][], int, long) throws org.apache.derby.client.am.SqlException;
private void setFDODTALobLengthUnknown(int) throws org.apache.derby.client.am.SqlException;
private boolean checkSendQryrowset(int, int);
private int checkFetchsize(int, int);
private int calculateResultSetFlags();
public void writeSetSpecialRegister(org.apache.derby.client.am.Section, java.util.ArrayList) throws org.apache.derby.client.am.SqlException;
private int[][] allocateLidAndLengthsArray(org.apache.derby.client.am.ColumnMetaData);
private void buildMddOverrides(java.util.ArrayList) throws org.apache.derby.client.am.SqlException;
private int getNextOverrideLid();
private void setFDODTALob(int, org.apache.derby.client.am.Lob, int[][], int) throws org.apache.derby.client.am.SqlException, java.sql.SQLException;
}
org/apache/derby/client/net/NetXACallInfo.class
package org.apache.derby.client.net;
public synchronized class NetXACallInfo {
javax.transaction.xa.Xid xid_;
int xaFlags_;
long xaTimeoutMillis_;
int xaFunction_;
int xaRetVal_;
boolean xaInProgress_;
boolean xaWasSuspended;
boolean currConnection_;
boolean freeEntry_;
boolean convReleased_;
NetXAResource xaResource_;
NetXAConnection actualConn_;
private byte[] crrtkn_;
private java.io.InputStream in_;
private java.io.OutputStream out_;
private byte[] uowid_;
private boolean readOnlyTransaction_;
public void NetXACallInfo();
public void NetXACallInfo(javax.transaction.xa.Xid, int, NetXAResource, NetXAConnection);
public void saveConnectionVariables();
public java.io.InputStream getInputStream();
public java.io.OutputStream getOutputStream();
public byte[] getCorrelatorToken();
protected void setUOWID(byte[]);
protected byte[] getUOWID();
protected void setReadOnlyTransactionFlag(boolean);
protected boolean getReadOnlyTransactionFlag();
}
org/apache/derby/client/net/NetXAConnection.class
package org.apache.derby.client.net;
public synchronized class NetXAConnection {
private NetConnection netCon;
public void NetXAConnection(NetLogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
protected void finalize() throws Throwable;
public void setCorrelatorToken(byte[]);
public byte[] getCorrelatorToken();
void setNetXAResource(NetXAResource);
public void writeLocalXAStart_() throws org.apache.derby.client.am.SqlException;
public void readLocalXAStart_() throws org.apache.derby.client.am.SqlException;
public void writeLocalXACommit_() throws org.apache.derby.client.am.SqlException;
public void readLocalXACommit_() throws org.apache.derby.client.am.SqlException;
public void writeLocalXARollback_() throws org.apache.derby.client.am.SqlException;
public void readLocalXARollback_() throws org.apache.derby.client.am.SqlException;
public void writeTransactionStart(org.apache.derby.client.am.Statement) throws org.apache.derby.client.am.SqlException;
public byte[] getUOWID(javax.transaction.xa.Xid);
public int getPort(javax.transaction.xa.Xid);
public void writeCommit() throws org.apache.derby.client.am.SqlException;
public void readCommit() throws org.apache.derby.client.am.SqlException;
public void writeRollback() throws org.apache.derby.client.am.SqlException;
public void readRollback() throws org.apache.derby.client.am.SqlException;
public NetConnection getNetConnection();
private void checkPlatformVersion() throws org.apache.derby.client.am.SqlException;
protected NetConnection createNetConnection(NetLogWriter, String, String, org.apache.derby.jdbc.ClientBaseDataSource, int, boolean, org.apache.derby.client.ClientPooledConnection) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetXAConnectionReply.class
package org.apache.derby.client.net;
public synchronized class NetXAConnectionReply extends NetResultSetReply {
void NetXAConnectionReply(NetAgent, int);
public void readLocalXAStart(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readLocalXACommit(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public void readLocalXARollback(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected void readXaStartUnitOfWork(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected int readXaEndUnitOfWork(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected int readXaPrepare(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected void readXaCommit(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected int readXaRollback(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected void readXaRecover(NetConnection) throws org.apache.derby.client.am.DisconnectException;
protected void readXaForget(NetConnection) throws org.apache.derby.client.am.DisconnectException;
int parseSYNCCRD(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
protected int parseXARETVAL() throws org.apache.derby.client.am.DisconnectException;
protected byte parseSYNCTYPE() throws org.apache.derby.client.am.DisconnectException;
protected int parseSYNCCTLreply(org.apache.derby.client.am.ConnectionCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
private String parseSQLSTT() throws org.apache.derby.client.am.DisconnectException;
private String parseSQLSTTGRPNOCMorNOCS() throws org.apache.derby.client.am.DisconnectException;
protected int parseXIDCNT() throws org.apache.derby.client.am.DisconnectException;
protected javax.transaction.xa.Xid parseXID() throws org.apache.derby.client.am.DisconnectException;
protected java.util.Hashtable parseIndoubtList() throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/NetXAConnectionRequest.class
package org.apache.derby.client.net;
public synchronized class NetXAConnectionRequest extends NetResultSetRequest {
void NetXAConnectionRequest(NetAgent, int);
public void writeLocalXACommit(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeLocalXARollback(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeXaStartUnitOfWork(NetConnection) throws org.apache.derby.client.am.SqlException;
public void writeXaEndUnitOfWork(NetConnection) throws org.apache.derby.client.am.SqlException;
protected void writeXaPrepare(NetConnection) throws org.apache.derby.client.am.SqlException;
protected void writeXaCommit(NetConnection, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
protected void writeXaRollback(NetConnection, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
protected void writeXaRecover(NetConnection, int) throws org.apache.derby.client.am.SqlException;
protected void writeXaForget(NetConnection, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
public void writeSYNCType(int, int);
public void writeForget(int, int);
public void writeReleaseConversation(int, int);
void writeNullXID(int);
void writeXID(int, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
void writeXAFlags(int, int);
void writeXATimeout(int, long);
void buildSYNCCTLMigrate() throws org.apache.derby.client.am.SqlException;
void buildSYNCCTLCommit(int, javax.transaction.xa.Xid) throws org.apache.derby.client.am.SqlException;
void buildSYNCCTLRollback(int) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/NetXAResource.class
package org.apache.derby.client.net;
public synchronized class NetXAResource implements javax.transaction.xa.XAResource {
public static final int TMTIMEOUT = 256;
public static final int ACTIVE_ONLY = -1;
public static final int XA_NULL_XID = -1;
public static final int INITIAL_CALLINFO_ELEMENTS = 1;
public static final int RECOVER_XID_ARRAY_LENGTH = 10;
public static final org.apache.derby.client.ClientXid nullXid;
public static final int XAFUNC_NONE = 0;
public static final int XAFUNC_COMMIT = 1;
public static final int XAFUNC_END = 2;
public static final int XAFUNC_FORGET = 3;
public static final int XAFUNC_PREPARE = 4;
public static final int XAFUNC_RECOVER = 5;
public static final int XAFUNC_ROLLBACK = 6;
public static final int XAFUNC_START = 7;
public static final String XAFUNCSTR_NONE = No XA Function;
public static final String XAFUNCSTR_COMMIT = XAResource.commit();
public static final String XAFUNCSTR_END = XAResource.end();
public static final String XAFUNCSTR_FORGET = XAResource.forget();
public static final String XAFUNCSTR_PREPARE = XAResource.prepare();
public static final String XAFUNCSTR_RECOVER = XAResource.recover();
public static final String XAFUNCSTR_ROLLBACK = XAResource.rollback();
public static final String XAFUNCSTR_START = XAResource.start();
public org.apache.derby.client.am.SqlException exceptionsOnXA;
javax.sql.XAConnection xaconn_;
NetXAConnection netXAConn_;
NetConnection conn_;
private boolean keepIsolationLevel;
int rmId_;
NetXACallInfo[] callInfoArray_;
int numXACallInfo_;
int connectionCount_;
int activeXATransCount_;
String rmIdx_;
String rmIdy_;
int port_;
String ipaddr_;
private java.util.List specialRegisters_;
private int timeoutSeconds;
public void NetXAResource(javax.sql.XAConnection, int, String, String, NetXAConnection);
public void commit(javax.transaction.xa.Xid, boolean) throws javax.transaction.xa.XAException;
private int getSqlExceptionXAErrorCode(org.apache.derby.client.am.SqlException);
public void end(javax.transaction.xa.Xid, int) throws javax.transaction.xa.XAException;
public void forget(javax.transaction.xa.Xid) throws javax.transaction.xa.XAException;
public int getTransactionTimeout() throws javax.transaction.xa.XAException;
public int prepare(javax.transaction.xa.Xid) throws javax.transaction.xa.XAException;
public javax.transaction.xa.Xid[] recover(int) throws javax.transaction.xa.XAException;
public void rollback(javax.transaction.xa.Xid) throws javax.transaction.xa.XAException;
public boolean setTransactionTimeout(int) throws javax.transaction.xa.XAException;
public void setKeepCurrentIsolationLevel(boolean);
public boolean keepCurrentIsolationLevel();
public synchronized void start(javax.transaction.xa.Xid, int) throws javax.transaction.xa.XAException;
protected void throwXAException(int) throws javax.transaction.xa.XAException;
private String getXAExceptionText(int);
protected void throwXAException(int, boolean) throws javax.transaction.xa.XAException;
private void setXaStateForXAException(int);
public boolean isSameRM(javax.transaction.xa.XAResource) throws javax.transaction.xa.XAException;
public static boolean xidsEqual(javax.transaction.xa.Xid, javax.transaction.xa.Xid);
public java.util.List getSpecialRegisters();
public void addSpecialRegisters(String);
private void connectionClosedFailure() throws javax.transaction.xa.XAException;
private String getXAFuncStr(int);
protected int xaRetValErrorAccumSQL(NetXACallInfo, int);
private String processLocalHost(String);
static void ();
}
org/apache/derby/client/net/OpenSocketAction.class
package org.apache.derby.client.net;
public synchronized class OpenSocketAction implements java.security.PrivilegedExceptionAction {
private String server_;
private int port_;
private int clientSSLMode_;
public void OpenSocketAction(String, int, int);
public Object run() throws java.net.UnknownHostException, java.io.IOException, java.security.NoSuchAlgorithmException, java.security.KeyManagementException, java.security.NoSuchProviderException, java.security.KeyStoreException, java.security.UnrecoverableKeyException, java.security.cert.CertificateException;
}
org/apache/derby/client/net/Reply.class
package org.apache.derby.client.net;
public synchronized class Reply {
protected org.apache.derby.client.am.Agent agent_;
protected NetAgent netAgent_;
protected static final int DEFAULT_BUFFER_SIZE = 32767;
protected byte[] buffer_;
protected int pos_;
protected int count_;
private int topDdmCollectionStack_;
private static final int MAX_MARKS_NESTING = 10;
private int[] ddmCollectionLenStack_;
private int ddmScalarLen_;
private static final int EMPTY_STACK = -1;
protected boolean ensuredLengthForDecryption_;
protected byte[] longBufferForDecryption_;
protected int longPosForDecryption_;
protected byte[] longValueForDecryption_;
protected int longCountForDecryption_;
protected int dssLength_;
protected boolean dssIsContinued_;
private boolean dssIsChainedWithSameID_;
private boolean dssIsChainedWithDiffID_;
protected int dssCorrelationID_;
protected int peekedLength_;
protected int peekedCodePoint_;
private int peekedNumOfExtendedLenBytes_;
private int currentPos_;
public static final int END_OF_COLLECTION = -1;
public static final int END_OF_SAME_ID_CHAIN = -2;
void Reply(NetAgent, int);
final void initialize();
final int getDdmLength();
private final void shiftBuffer(byte[]);
protected final void ensureSpaceInBufferForFill(int);
protected int fill(int) throws org.apache.derby.client.am.DisconnectException;
protected final int ensureALayerDataInBuffer(int) throws org.apache.derby.client.am.DisconnectException;
protected final void ensureBLayerDataInBuffer(int) throws org.apache.derby.client.am.DisconnectException;
private final void compressBLayerData(int) throws org.apache.derby.client.am.DisconnectException;
protected final void readDssHeader() throws org.apache.derby.client.am.DisconnectException;
private final void decryptData(int, int) throws org.apache.derby.client.am.DisconnectException;
final int readUnsignedShort() throws org.apache.derby.client.am.DisconnectException;
final short readShort() throws org.apache.derby.client.am.DisconnectException;
final int readInt() throws org.apache.derby.client.am.DisconnectException;
final void readIntArray(int[]) throws org.apache.derby.client.am.DisconnectException;
final long readLong() throws org.apache.derby.client.am.DisconnectException;
final int[] readUnsignedShortList() throws org.apache.derby.client.am.DisconnectException;
final int readUnsignedByte() throws org.apache.derby.client.am.DisconnectException;
final byte readByte() throws org.apache.derby.client.am.DisconnectException;
final boolean readBoolean() throws org.apache.derby.client.am.DisconnectException;
final String readString(int) throws org.apache.derby.client.am.DisconnectException;
final String readString(int, String) throws org.apache.derby.client.am.DisconnectException;
final String readString() throws org.apache.derby.client.am.DisconnectException;
final byte[] readBytes(int) throws org.apache.derby.client.am.DisconnectException;
final byte[] readBytes() throws org.apache.derby.client.am.DisconnectException;
final byte[] readLDBytes() throws org.apache.derby.client.am.DisconnectException;
final void skipBytes(int) throws org.apache.derby.client.am.DisconnectException;
final void skipBytes() throws org.apache.derby.client.am.DisconnectException;
final java.io.ByteArrayOutputStream getData(java.io.ByteArrayOutputStream) throws org.apache.derby.client.am.DisconnectException;
protected final void readDSSContinuationHeader() throws org.apache.derby.client.am.DisconnectException;
final void doSyntaxrmSemantics(int) throws org.apache.derby.client.am.DisconnectException;
protected final void pushLengthOnCollectionStack();
protected final void adjustLengths(int);
protected int adjustDdmLength(int, int);
protected final void popCollectionStack();
protected final int peekCodePoint() throws org.apache.derby.client.am.DisconnectException;
protected final int peekLength() throws org.apache.derby.client.am.DisconnectException;
protected final int peekFastBytes(byte[], int, int) throws org.apache.derby.client.am.DisconnectException;
protected final void parseLengthAndMatchCodePoint(int) throws org.apache.derby.client.am.DisconnectException;
protected final int readLengthAndCodePoint() throws org.apache.derby.client.am.DisconnectException;
private final void readExtendedLength() throws org.apache.derby.client.am.DisconnectException;
private final void adjustCollectionAndDssLengths(int);
protected final void startSameIdChainParse() throws org.apache.derby.client.am.DisconnectException;
protected final void endOfSameIdChainData() throws org.apache.derby.client.am.DisconnectException;
protected final int peekTotalColumnCount(int) throws org.apache.derby.client.am.DisconnectException;
private final void peekExtendedLength() throws org.apache.derby.client.am.DisconnectException;
final int readFastUnsignedByte() throws org.apache.derby.client.am.DisconnectException;
final short readFastShort() throws org.apache.derby.client.am.DisconnectException;
final int readFastUnsignedShort() throws org.apache.derby.client.am.DisconnectException;
final int readFastInt() throws org.apache.derby.client.am.DisconnectException;
final String readFastString(int) throws org.apache.derby.client.am.DisconnectException;
final byte[] readFastBytes(int) throws org.apache.derby.client.am.DisconnectException;
protected final int peekFastLength() throws org.apache.derby.client.am.DisconnectException;
final void skipFastBytes(int) throws org.apache.derby.client.am.DisconnectException;
final void readFastIntArray(int[]) throws org.apache.derby.client.am.DisconnectException;
final String readFastString(int, String) throws org.apache.derby.client.am.DisconnectException;
final byte[] readFastLDBytes() throws org.apache.derby.client.am.DisconnectException;
final long readFastLong() throws org.apache.derby.client.am.DisconnectException;
final byte readFastByte() throws org.apache.derby.client.am.DisconnectException;
final void mark();
final int popMark();
final int getFastSkipSQLCARDrowLength();
final java.io.ByteArrayOutputStream getFastData(java.io.ByteArrayOutputStream) throws org.apache.derby.client.am.DisconnectException;
protected final void matchCodePoint(int) throws org.apache.derby.client.am.DisconnectException;
protected final int peekNumOfColumns() throws org.apache.derby.client.am.DisconnectException;
protected final boolean peekForNullSqlcagrp();
private final int skipSQLDHROW(int);
}
org/apache/derby/client/net/Request.class
package org.apache.derby.client.net;
public synchronized class Request {
protected byte[] bytes_;
protected int offset_;
private static final int MAX_MARKS_NESTING = 10;
private int[] markStack_;
private int top_;
private int dssLengthLocation_;
private int correlationID_;
private boolean simpleDssFinalize;
protected boolean passwordIncluded_;
protected int passwordStart_;
protected int passwordLength_;
protected NetAgent netAgent_;
void Request(NetAgent, int);
protected final void clearBuffer();
final void initialize();
protected final void ensureLength(int);
protected final void createCommand();
protected void createXACommand();
final void createCommandData();
final void createEncryptedCommandData();
private final void buildDss(boolean, boolean, boolean, int, int, boolean);
final void writeScalarStream(boolean, boolean, int, java.io.InputStream, boolean, int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
final void writeScalarStream(boolean, boolean, int, long, java.io.InputStream, boolean, int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private final void writePlainScalarStream(boolean, boolean, int, long, java.io.InputStream, boolean, int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
private final void writePlainScalarStream(boolean, boolean, int, java.io.InputStream, boolean, int) throws org.apache.derby.client.am.DisconnectException;
final void writeScalarStream(boolean, boolean, int, int, java.io.Reader, boolean, int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
final void writeScalarStream(boolean, boolean, int, java.io.Reader, boolean, int) throws org.apache.derby.client.am.DisconnectException, org.apache.derby.client.am.SqlException;
protected final int prepScalarStream(boolean, boolean, boolean, long) throws org.apache.derby.client.am.DisconnectException;
protected final void flushExistingDSS() throws org.apache.derby.client.am.DisconnectException;
protected final int flushScalarStreamSegment(long, int) throws org.apache.derby.client.am.DisconnectException;
protected final int flushScalarStreamSegment() throws org.apache.derby.client.am.DisconnectException;
protected final void padScalarStreamForError(long, int, boolean, byte) throws org.apache.derby.client.am.DisconnectException;
private final void writeExtendedLengthBytes(int, long);
protected final void finalizePreviousChainedDss(boolean);
protected final boolean doesRequestContainData();
protected final void finalizeDssLength();
protected final void markLengthBytes(int);
private final void mark();
private final int popMark();
protected final void markForCachingPKGNAMCSN();
protected final int popMarkForCachingPKGNAMCSN();
protected final void updateLengthBytes() throws org.apache.derby.client.am.SqlException;
private final int calculateExtendedLengthByteCount(long);
final void padBytes(byte, int);
final void write1Byte(int);
final void buildTripletHeader(int, int, int);
final void writeLidAndLengths(int[][], int, int);
final void writeLidAndLengths(int[][], int, int, boolean, java.util.Hashtable);
final void write2Bytes(int);
final void write4Bytes(long);
final void writeBytes(byte[], int);
final void writeBytes(byte[]);
final void writeCodePoint4Bytes(int, int);
protected final void writeScalar1Byte(int, int);
final void writeScalar2Bytes(int, int);
protected final void writeScalar4Bytes(int, long);
final void writeScalar8Bytes(int, long);
final void writeLengthCodePoint(int, int);
final void writeScalarBytes(int, byte[], int);
final void writeScalarHeader(int, int);
final void writeScalarString(int, String) throws org.apache.derby.client.am.SqlException;
final void writeScalarString(int, String, int, int, String) throws org.apache.derby.client.am.SqlException;
final void writeScalarPaddedString(String, int) throws org.apache.derby.client.am.SqlException;
final void writeScalarBytes(int, byte[]);
final void writeScalarBytes(int, byte[], int, int);
final void writeScalarPaddedBytes(int, byte[], int, byte);
final void writeScalarPaddedBytes(byte[], int, byte);
protected void flush(java.io.OutputStream) throws java.io.IOException;
protected void sendBytes(java.io.OutputStream) throws java.io.IOException;
final void maskOutPassword();
final void writeByte(byte);
final void writeShort(short);
void writeInt(int);
final void writeLong6Bytes(long);
final void writeLong(long);
protected void writeShortFdocaData(short);
protected void writeIntFdocaData(int);
protected void writeLongFdocaData(long);
protected void writeFloat(float);
protected void writeDouble(double);
final void writeBigDecimal(java.math.BigDecimal, int, int) throws org.apache.derby.client.am.SqlException;
final void writeDate(org.apache.derby.client.am.DateTimeValue) throws org.apache.derby.client.am.SqlException;
final void writeTime(org.apache.derby.client.am.DateTimeValue) throws org.apache.derby.client.am.SqlException;
final void writeTimestamp(org.apache.derby.client.am.DateTimeValue) throws org.apache.derby.client.am.SqlException;
final void writeBoolean(boolean);
final void writeSingleorMixedCcsidLDString(String, String) throws org.apache.derby.client.am.SqlException;
final void writeLDBytes(byte[]);
private final void writeLDBytesX(int, byte[]);
private final void writeLDBytesXSubset(int, int, byte[]);
final void writeUDT(Object) throws org.apache.derby.client.am.SqlException;
final void writeDDMString(String) throws org.apache.derby.client.am.SqlException;
private void buildLengthAndCodePointForLob(int, long, boolean, int) throws org.apache.derby.client.am.DisconnectException;
private void buildLengthAndCodePointForLob(int, boolean) throws org.apache.derby.client.am.DisconnectException;
private void writeEXTDTAStatus(byte) throws org.apache.derby.client.am.DisconnectException;
public void setDssLengthLocation(int);
public void setCorrelationID(int);
private static boolean peekStream(java.io.BufferedInputStream) throws java.io.IOException;
}
org/apache/derby/client/net/ResultSetReply.class
package org.apache.derby.client.net;
public synchronized class ResultSetReply extends StatementReply {
private ResultSetReplyInterface materialResultSetReply_;
public void ResultSetReply(org.apache.derby.client.am.Agent, ResultSetReplyInterface, StatementReplyInterface, ConnectionReplyInterface);
public void readFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readScrollableFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readPositioningFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readCursorClose(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/ResultSetReplyInterface.class
package org.apache.derby.client.net;
public abstract interface ResultSetReplyInterface {
public abstract void readFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readScrollableFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readPositioningFetch(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readCursorClose(org.apache.derby.client.am.ResultSetCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/ResultSetRequestInterface.class
package org.apache.derby.client.net;
public abstract interface ResultSetRequestInterface {
public abstract void writeFetch(NetResultSet, org.apache.derby.client.am.Section, int) throws org.apache.derby.client.am.SqlException;
public abstract void writeScrollableFetch(NetResultSet, org.apache.derby.client.am.Section, int, int, long, boolean) throws org.apache.derby.client.am.SqlException;
public abstract void writePositioningFetch(NetResultSet, org.apache.derby.client.am.Section, int, long) throws org.apache.derby.client.am.SqlException;
public abstract void writeCursorClose(NetResultSet, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/StatementReply.class
package org.apache.derby.client.net;
public synchronized class StatementReply extends ConnectionReply {
private StatementReplyInterface materialStatementReply_;
void StatementReply(org.apache.derby.client.am.Agent, StatementReplyInterface, ConnectionReplyInterface);
public void readPrepareDescribeOutput(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readExecuteImmediate(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readOpenQuery(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readExecute(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readPrepare(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readDescribeInput(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readDescribeOutput(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readExecuteCall(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
public void readSetSpecialRegister(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/StatementReplyInterface.class
package org.apache.derby.client.net;
public abstract interface StatementReplyInterface {
public abstract void readPrepareDescribeOutput(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readExecuteImmediate(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readOpenQuery(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readExecute(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readPrepare(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readDescribeInput(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readDescribeOutput(org.apache.derby.client.am.PreparedStatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readExecuteCall(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
public abstract void readSetSpecialRegister(org.apache.derby.client.am.StatementCallbackInterface) throws org.apache.derby.client.am.DisconnectException;
}
org/apache/derby/client/net/StatementRequestInterface.class
package org.apache.derby.client.net;
public abstract interface StatementRequestInterface {
public abstract void writeExecuteImmediate(NetStatement, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public abstract void writePrepareDescribeOutput(NetStatement, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public abstract void writePrepare(NetStatement, String, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public abstract void writeOpenQuery(NetStatement, org.apache.derby.client.am.Section, int, int) throws org.apache.derby.client.am.SqlException;
public abstract void writeExecute(NetPreparedStatement, org.apache.derby.client.am.Section, org.apache.derby.client.am.ColumnMetaData, Object[], int, boolean, boolean) throws org.apache.derby.client.am.SqlException;
public abstract void writeOpenQuery(NetPreparedStatement, org.apache.derby.client.am.Section, int, int, int, org.apache.derby.client.am.ColumnMetaData, Object[]) throws org.apache.derby.client.am.SqlException;
public abstract void writeDescribeInput(NetPreparedStatement, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public abstract void writeDescribeOutput(NetPreparedStatement, org.apache.derby.client.am.Section) throws org.apache.derby.client.am.SqlException;
public abstract void writeExecuteCall(NetStatement, boolean, String, org.apache.derby.client.am.Section, int, boolean, int, org.apache.derby.client.am.ColumnMetaData, Object[]) throws org.apache.derby.client.am.SqlException;
public abstract void writeSetSpecialRegister(org.apache.derby.client.am.Section, java.util.ArrayList) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/client/net/Typdef.class
package org.apache.derby.client.net;
public synchronized class Typdef implements Cloneable {
static final short CCSIDDBC = 1;
static final short CCSIDMBC = 2;
static final short CCSIDSBC = 3;
static final short NOCCSID = 0;
static final short FIXEDLENGTH = 0;
static final short TWOBYTELENGTH = 1;
static final short ONEBYTELENGTH = 2;
static final short DECIMALLENGTH = 3;
static final short LOBLENGTH = 4;
public static final String UTF8ENCODING = UTF8;
private static final int OVERRIDE_TABLE_SIZE = 255;
private static final int[] fdocaTypeToRepresentationMap_;
protected static final FdocaSimpleDataArray[] environmentTables_;
private static final int[] protocolToJdbcTypes_;
private NetAgent netAgent_;
private String typdefnam_;
private int ccsidSbc_;
private boolean ccsidSbcSet_;
private String ccsidSbcEncoding_;
private int ccsidDbc_;
private boolean ccsidDbcSet_;
private String ccsidDbcEncoding_;
private int ccsidMbc_;
private boolean ccsidMbcSet_;
private String ccsidMbcEncoding_;
protected int environment_;
private boolean mddOverride_;
private FdocaSimpleDataArray[] overrideTable_;
void Typdef(NetAgent) throws org.apache.derby.client.am.DisconnectException;
void Typdef(NetAgent, int, String) throws org.apache.derby.client.am.DisconnectException;
public void Typdef(NetAgent, int, String, int, int) throws org.apache.derby.client.am.DisconnectException;
private void initialize(NetAgent, int, boolean, int, boolean, int, boolean, String) throws org.apache.derby.client.am.DisconnectException;
String getTypdefnam();
void setTypdefnam(String) throws org.apache.derby.client.am.DisconnectException;
int getCcsidSbc();
void setCcsidSbc(int);
void clearCcsidSbc();
boolean isCcsidSbcSet();
String getCcsidSbcEncoding() throws org.apache.derby.client.am.DisconnectException;
int getCcsidDbc();
void setCcsidDbc(int);
void clearCcsidDbc();
boolean isCcsidDbcSet();
String getCcsidDbcEncoding() throws org.apache.derby.client.am.DisconnectException;
int getCcsidMbc();
void setCcsidMbc(int);
void clearCcsidMbc();
boolean isCcsidMbcSet();
String getCcsidMbcEncoding() throws org.apache.derby.client.am.DisconnectException;
int getByteOrder();
public Object clone();
void updateColumn(NetCursor, int, int, int) throws org.apache.derby.client.am.DisconnectException;
void clearMddOverrides();
void setMddOverride(int, int, int, int, int, int, int);
private int mapFdocaTypeToTypeToUseForComputingDataLength(int);
static void ();
}
org/apache/derby/client/net/Utf8CcsidManager.class
package org.apache.derby.client.net;
public synchronized class Utf8CcsidManager extends CcsidManager {
public void Utf8CcsidManager();
public byte[] convertFromJavaString(String, org.apache.derby.client.am.Agent) throws org.apache.derby.client.am.SqlException;
public String convertToJavaString(byte[]);
public String convertToJavaString(byte[], int, int);
public int convertFromJavaString(String, byte[], int, org.apache.derby.client.am.Agent) throws org.apache.derby.client.am.SqlException;
int maxBytesPerChar();
public int getByteLength(String);
}
org/apache/derby/iapi/services/info/JVMInfo$1.class
package org.apache.derby.iapi.services.info;
final synchronized class JVMInfo$1 implements java.security.PrivilegedAction {
void JVMInfo$1(String);
public Object run();
}
org/apache/derby/iapi/services/info/JVMInfo$2.class
package org.apache.derby.iapi.services.info;
final synchronized class JVMInfo$2 implements java.security.PrivilegedExceptionAction {
void JVMInfo$2(reflect.Method);
public Object run() throws IllegalAccessException, java.net.MalformedURLException, InstantiationException, reflect.InvocationTargetException;
}
org/apache/derby/iapi/services/info/JVMInfo.class
package org.apache.derby.iapi.services.info;
public abstract synchronized class JVMInfo {
public static final int JDK_ID;
public static final int J2SE_14 = 4;
public static final int J2SE_142 = 5;
public static final int J2SE_15 = 6;
public static final int J2SE_16 = 7;
public static final boolean J2ME;
public void JVMInfo();
private static boolean vmCheck(String, String);
public static String derbyVMLevel();
private static String getSystemProperty(String);
public static final boolean isSunJVM();
public static final boolean isIBMJVM();
public static void javaDump();
static void ();
}
org/apache/derby/iapi/services/info/ProductVersionHolder.class
package org.apache.derby.iapi.services.info;
public final synchronized class ProductVersionHolder implements java.security.PrivilegedAction {
private static final int BAD_NUMBER = -1;
private static final String ALPHA = alpha;
private static final String BETA = beta;
public static final int MAINT_ENCODING = 1000000;
private String productVendorName;
private String productName;
private String productTechnologyName;
private int majorVersion;
private int minorVersion;
private int maintVersion;
private int drdaMaintVersion;
private String buildNumber;
private Boolean isBeta;
private String productGenus;
private void ProductVersionHolder();
private void ProductVersionHolder(String, String, String, int, int, int, int, String, Boolean);
public static ProductVersionHolder getProductVersionHolder(String, String, String, int, int, int, int, String, Boolean);
public static ProductVersionHolder getProductVersionHolderFromMyEnv(String);
public static ProductVersionHolder getProductVersionHolderFromMyEnv(java.io.InputStream);
public static ProductVersionHolder getProductVersionHolder(java.util.Properties);
public String getProductVendorName();
public String getProductName();
public String getProductTechnologyName();
public int getMajorVersion();
public int getMinorVersion();
public int getMaintVersion();
public int getDrdaMaintVersion();
public int getFixPackVersion();
public boolean isBeta();
public boolean isAlpha();
public String getBuildNumber();
public int getBuildNumberAsInt();
private static int parseInt(String);
public String toString();
public String getSimpleVersionString();
public static String simpleVersionString(int, int, boolean);
public static String fullVersionString(int, int, int, boolean, String);
public String getVersionBuildString(boolean);
public final Object run();
private java.util.Properties loadProperties(String);
}
org/apache/derby/iapi/tools/i18n/LocalizedInput.class
package org.apache.derby.iapi.tools.i18n;
public synchronized class LocalizedInput extends java.io.BufferedReader {
private java.io.InputStream in;
public void LocalizedInput(java.io.InputStream);
void LocalizedInput(java.io.InputStream, String) throws java.io.UnsupportedEncodingException;
public boolean isStandardInput();
public void close() throws java.io.IOException;
}
org/apache/derby/iapi/tools/i18n/LocalizedOutput.class
package org.apache.derby.iapi.tools.i18n;
public synchronized class LocalizedOutput extends java.io.PrintWriter {
private java.io.OutputStream out;
public void LocalizedOutput(java.io.OutputStream);
void LocalizedOutput(java.io.OutputStream, String) throws java.io.UnsupportedEncodingException;
public boolean isStandardOutput();
public void close();
}
org/apache/derby/iapi/tools/i18n/LocalizedResource.class
package org.apache.derby.iapi.tools.i18n;
public final synchronized class LocalizedResource implements java.security.PrivilegedAction {
private static final boolean SUPPORTS_BIG_DECIMAL_CALLS;
private java.util.ResourceBundle res;
private java.util.Locale locale;
private String encode;
private static final String MESSAGE_FILE = org.apache.derby.loc.toolsmessages;
private static final String ENV_CODESET = derby.ui.codeset;
private static final String ENV_LOCALE = derby.ui.locale;
private String messageFileName;
private String resourceKey;
private LocalizedOutput out;
private LocalizedInput in;
private boolean enableLocalized;
private boolean unicodeEscape;
private static LocalizedResource local;
private int dateSize;
private int timeSize;
private int timestampSize;
private java.text.DateFormat formatDate;
private java.text.DateFormat formatTime;
private java.text.DateFormat formatTimestamp;
private java.text.NumberFormat formatNumber;
private java.text.DecimalFormat formatDecimal;
public void LocalizedResource();
public void LocalizedResource(String, String, String);
public static LocalizedResource getInstance();
public static void resetLocalizedResourceCache();
public void init();
public void init(String, String, String);
private void setResource();
private void initMaxSizes2();
public LocalizedInput getNewInput(java.io.InputStream);
public LocalizedInput getNewEncodedInput(java.io.InputStream, String);
public LocalizedOutput getNewOutput(java.io.OutputStream);
public LocalizedOutput getNewEncodedOutput(java.io.OutputStream, String) throws java.io.UnsupportedEncodingException;
public String getTextMessage(String);
public String getTextMessage(String, Object);
public String getTextMessage(String, Object, Object);
public String getTextMessage(String, Object, Object, Object);
public String getTextMessage(String, Object, Object, Object, Object);
private java.util.Locale getNewLocale(String);
public String getTextMessage(String, Object[]);
public String getLocalizedString(java.sql.ResultSet, java.sql.ResultSetMetaData, int) throws java.sql.SQLException;
public String getDateAsString(java.util.Date);
public String getTimeAsString(java.util.Date);
public String getNumberAsString(int);
public String getNumberAsString(long);
public String getNumberAsString(Object);
public String getNumberAsString(double);
public String getTimestampAsString(java.sql.Timestamp);
public int getColumnDisplaySize(java.sql.ResultSetMetaData, int) throws java.sql.SQLException;
public String getStringFromDate(String) throws java.text.ParseException;
public String getStringFromTime(String) throws java.text.ParseException;
public String getStringFromValue(String) throws java.text.ParseException;
public String getStringFromTimestamp(String) throws java.text.ParseException;
public java.util.Locale getLocale();
private final synchronized String getEnvProperty(String);
public final Object run();
public static boolean enableLocalization(boolean);
public boolean isLocalized();
public static String getMessage(String);
public static String getMessage(String, Object);
public static String getMessage(String, Object, Object);
public static String getMessage(String, Object, Object, Object);
public static String getMessage(String, Object, Object, Object, Object);
public static LocalizedOutput OutputWriter();
public static LocalizedInput InputReader();
public static String getNumber(long);
public static String getNumber(int);
public String toString();
static void ();
}
org/apache/derby/impl/tools/sysinfo/Main$1.class
package org.apache.derby.impl.tools.sysinfo;
final synchronized class Main$1 implements java.security.PrivilegedAction {
void Main$1();
public Object run();
}
org/apache/derby/impl/tools/sysinfo/Main$2.class
package org.apache.derby.impl.tools.sysinfo;
final synchronized class Main$2 implements java.security.PrivilegedAction {
void Main$2(String, String);
public Object run();
}
org/apache/derby/impl/tools/sysinfo/Main$3.class
package org.apache.derby.impl.tools.sysinfo;
final synchronized class Main$3 implements java.security.PrivilegedAction {
void Main$3(java.util.Properties, String);
public Object run();
}
org/apache/derby/impl/tools/sysinfo/Main$4.class
package org.apache.derby.impl.tools.sysinfo;
final synchronized class Main$4 implements java.security.PrivilegedAction {
void Main$4(String);
public Object run();
}
org/apache/derby/impl/tools/sysinfo/Main$5.class
package org.apache.derby.impl.tools.sysinfo;
final synchronized class Main$5 implements java.security.PrivilegedAction {
void Main$5(String);
public Object run();
}
org/apache/derby/impl/tools/sysinfo/Main$6.class
package org.apache.derby.impl.tools.sysinfo;
final synchronized class Main$6 implements java.security.PrivilegedAction {
void Main$6(String);
public Object run();
}
org/apache/derby/impl/tools/sysinfo/Main$7.class
package org.apache.derby.impl.tools.sysinfo;
final synchronized class Main$7 implements java.security.PrivilegedAction {
void Main$7(Class);
public Object run();
}
org/apache/derby/impl/tools/sysinfo/Main.class
package org.apache.derby.impl.tools.sysinfo;
public final synchronized class Main {
private static final String MESSAGE_FILE = org.apache.derby.loc.sysinfoMessages;
private static final org.apache.derby.iapi.tools.i18n.LocalizedResource LOCALIZED_RESOURCE;
private static boolean setPause;
private static boolean setLicense;
private static boolean cptester;
private static final String sep = ------------------------------------------------------;
private static final String javaSep;
private static final String jbmsSep;
private static final String licSep;
private static final String locSep;
private static final String curLoc;
private static final String failureTag;
private static final String EMBEDDED = embedded;
private static final String TOOLS = tools;
private static final String NET = server;
private static final String CLIENT = client;
private static final String MAINUSAGESTRING = java org.apache.derby.tools.sysinfo -cp;
private static final String USAGESTRINGPARTA = java org.apache.derby.tools.sysinfo -cp [ [ embedded ][ server ][ client] [ tools ] [;
private static final String USAGESTRINGPARTB = .class ] ];
private static final String[] infoNames;
public void Main();
public static void main(String[]);
public static void getMainInfo(java.io.PrintWriter, boolean);
private static void parseArgs(String[]);
private static void pause();
private static void reportDerby(java.io.PrintWriter);
private static void reportJavaInfo(java.io.PrintWriter);
private static void printPropertyIfNotNull(java.io.PrintWriter, String);
private static String getJavaProperty(String);
private static String getJavaProperty(String, boolean);
private static void getClasspathInfo(String[], java.io.PrintWriter);
private static void reportLocales(java.io.PrintWriter);
static void useMe(String[], java.io.PrintWriter);
private static void tryAllClasspaths(java.io.PrintWriter) throws Throwable;
private static void trySomeClasspaths(String[], java.io.PrintWriter) throws Throwable;
private static void tryCoreClasspath(StringBuffer, StringBuffer);
private static void tryNetClasspath(StringBuffer, StringBuffer);
private static void tryClientClasspath(StringBuffer, StringBuffer);
private static void tryUtilsClasspath(StringBuffer, StringBuffer);
private static void tryMyClasspath(String, String, StringBuffer, StringBuffer);
private static void tryAsResource(String, String, StringBuffer, StringBuffer);
private static String found(String, String, String);
private static String notFound(String, String);
private static String crLf();
private static String lookForMainArg(String[], java.io.PrintWriter);
private static boolean argumentsContain(String[], String);
private static String argumentMatches(String[], String);
public static ZipInfoProperties[] getAllInfo(String);
private static ZipInfoProperties[] loadZipFromResource();
private static String[] parseClasspath(String);
private static ZipInfoProperties checkForInfo(String);
private static ZipInfoProperties checkDirectory(String);
private static ZipInfoProperties checkFile(String);
public static String getTextMessage(String);
public static String getTextMessage(String, Object);
public static String getTextMessage(String, Object, Object);
public static String getTextMessage(String, Object, Object, Object);
public static String getTextMessage(String, Object, Object, Object, Object);
public static String getCompleteMessage(String, Object[]);
private static String getFileWhichLoadedClass(Class);
private static ZipInfoProperties[] mergeZips(ZipInfoProperties[], ZipInfoProperties[]);
private static String formatURL(java.net.URL);
static void ();
}
org/apache/derby/impl/tools/sysinfo/ZipInfoProperties.class
package org.apache.derby.impl.tools.sysinfo;
public synchronized class ZipInfoProperties {
private final org.apache.derby.iapi.services.info.ProductVersionHolder version;
private String location;
void ZipInfoProperties(org.apache.derby.iapi.services.info.ProductVersionHolder);
public String getVersionBuildInfo();
public String getLocation();
void setLocation(String);
}
org/apache/derby/jdbc/ClientBaseDataSource$1.class
package org.apache.derby.jdbc;
final synchronized class ClientBaseDataSource$1 implements java.security.PrivilegedAction {
void ClientBaseDataSource$1(String);
public Object run();
}
org/apache/derby/jdbc/ClientBaseDataSource.class
package org.apache.derby.jdbc;
public abstract synchronized class ClientBaseDataSource implements java.io.Serializable, javax.naming.Referenceable {
private static final long serialVersionUID = -7660172643035173692;
static final boolean SUPPORTS_EUSRIDPWD;
private int loginTimeout;
private transient java.io.PrintWriter logWriter;
private String databaseName;
private String description;
private String dataSourceName;
private int portNumber;
public static final int propertyDefault_portNumber = 1527;
private String serverName;
public static final String propertyDefault_serverName = localhost;
public static final int SSL_OFF = 0;
private static final String SSL_OFF_STR = off;
public static final int SSL_BASIC = 1;
private static final String SSL_BASIC_STR = basic;
public static final int SSL_PEER_AUTHENTICATION = 2;
private static final String SSL_PEER_AUTHENTICATION_STR = peerAuthentication;
private String user;
public static final String propertyDefault_user = APP;
private static final short SECMEC_HAS_NOT_EXPLICITLY_SET = 0;
protected short securityMechanism;
public static final short propertyDefault_securityMechanism = 4;
private boolean retrieveMessageText;
public static final boolean propertyDefault_retrieveMessageText = 1;
private String traceFile;
private transient int traceFileSuffixIndex_;
private String traceDirectory;
private boolean traceFileAppend;
public static final boolean propertyDefault_traceFileAppend = 0;
private String password;
public static final short USER_ONLY_SECURITY = 4;
public static final short CLEAR_TEXT_PASSWORD_SECURITY = 3;
public static final short ENCRYPTED_PASSWORD_SECURITY = 7;
public static final short ENCRYPTED_USER_AND_PASSWORD_SECURITY = 9;
public static final short STRONG_PASSWORD_SUBSTITUTE_SECURITY = 8;
private int sslMode;
private boolean createDatabase;
private boolean shutdownDatabase;
protected String connectionAttributes;
public static final int TRACE_NONE = 0;
public static final int TRACE_CONNECTION_CALLS = 1;
public static final int TRACE_STATEMENT_CALLS = 2;
public static final int TRACE_RESULT_SET_CALLS = 4;
public static final int TRACE_DRIVER_CONFIGURATION = 16;
public static final int TRACE_CONNECTS = 32;
public static final int TRACE_PROTOCOL_FLOWS = 64;
public static final int TRACE_RESULT_SET_META_DATA = 128;
public static final int TRACE_PARAMETER_META_DATA = 256;
public static final int TRACE_DIAGNOSTICS = 512;
public static final int TRACE_XA_CALLS = 2048;
public static final int TRACE_ALL = -1;
public static final int propertyDefault_traceLevel = -1;
protected int traceLevel;
void ClientBaseDataSource();
public synchronized void setLoginTimeout(int);
public int getLoginTimeout();
public synchronized void setLogWriter(java.io.PrintWriter);
public java.io.PrintWriter getLogWriter();
public static final int getSSLModeFromString(String) throws org.apache.derby.client.am.SqlException;
public static final int getClientSSLMode(java.util.Properties) throws org.apache.derby.client.am.SqlException;
public static String getUser(java.util.Properties);
public static short getSecurityMechanism(java.util.Properties);
public static short getUpgradedSecurityMechanism(String);
public static boolean getRetrieveMessageText(java.util.Properties);
public static String getTraceFile(java.util.Properties);
public static String getTraceDirectory(java.util.Properties);
private static String readSystemProperty(String);
public static boolean getTraceFileAppend(java.util.Properties);
public static String getPassword(java.util.Properties);
public final synchronized void setPassword(String);
public final String getPassword();
public javax.naming.Reference getReference() throws javax.naming.NamingException;
private void addBeanProperties(javax.naming.Reference);
org.apache.derby.client.am.LogWriter computeDncLogWriterForNewConnection(String) throws org.apache.derby.client.am.SqlException;
static org.apache.derby.client.am.LogWriter computeDncLogWriterForNewConnection(java.io.PrintWriter, String, String, boolean, int, String, int) throws org.apache.derby.client.am.SqlException;
static org.apache.derby.client.am.LogWriter computeDncLogWriter(java.io.PrintWriter, String, String, boolean, String, int, int) throws org.apache.derby.client.am.SqlException;
public static org.apache.derby.client.am.LogWriter computeDncLogWriter(org.apache.derby.client.am.Connection, java.io.PrintWriter, String, String, boolean, String, int, int) throws org.apache.derby.client.am.SqlException;
static java.io.PrintWriter computePrintWriter(java.io.PrintWriter, String, String, boolean, String, int) throws org.apache.derby.client.am.SqlException;
private static boolean parseBoolean(String, boolean);
private static String parseString(String, String);
private static short parseShort(String, short);
private static int parseInt(String, int);
static java.util.Properties tokenizeAttributes(String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
private static void checkBoolean(java.util.Properties, String) throws org.apache.derby.client.am.SqlException;
private static void checkEnumeration(java.util.Properties, String, String[]) throws org.apache.derby.client.am.SqlException;
public synchronized void setDatabaseName(String);
public String getDatabaseName();
public synchronized void setDataSourceName(String);
public String getDataSourceName();
public synchronized void setDescription(String);
public String getDescription();
public synchronized void setPortNumber(int);
public int getPortNumber();
public synchronized void setServerName(String);
public String getServerName();
public synchronized void setUser(String);
public String getUser();
public synchronized void setRetrieveMessageText(boolean);
public boolean getRetrieveMessageText();
public synchronized void setSecurityMechanism(short);
public short getSecurityMechanism();
public short getSecurityMechanism(String);
public void setSsl(String) throws org.apache.derby.client.am.SqlException;
public String getSsl();
public final void setCreateDatabase(String);
public final String getCreateDatabase();
public final void setShutdownDatabase(String);
public final String getShutdownDatabase();
public final void setConnectionAttributes(String);
public final String getConnectionAttributes();
public static int getTraceLevel(java.util.Properties);
public synchronized void setTraceLevel(int);
public int getTraceLevel();
public synchronized void setTraceFile(String);
public String getTraceFile();
public synchronized void setTraceDirectory(String);
public String getTraceDirectory();
public synchronized void setTraceFileAppend(boolean);
public boolean getTraceFileAppend();
public int maxStatementsToPool();
void updateDataSourceValues(java.util.Properties) throws org.apache.derby.client.am.SqlException;
protected final void handleConnectionException(org.apache.derby.client.am.LogWriter, org.apache.derby.client.am.SqlException) throws java.sql.SQLException;
private String constructUrl();
static void ();
}
org/apache/derby/jdbc/ClientConnectionPoolDataSource.class
package org.apache.derby.jdbc;
public synchronized class ClientConnectionPoolDataSource extends ClientDataSource implements javax.sql.ConnectionPoolDataSource {
private static final long serialVersionUID = -539234282156481377;
private static final org.apache.derby.shared.common.i18n.MessageUtil msgUtil;
public static final String className__ = org.apache.derby.jdbc.ClientConnectionPoolDataSource;
private int maxStatements;
public void ClientConnectionPoolDataSource();
public javax.sql.PooledConnection getPooledConnection() throws java.sql.SQLException;
public javax.sql.PooledConnection getPooledConnection(String, String) throws java.sql.SQLException;
private javax.sql.PooledConnection getPooledConnectionX(org.apache.derby.client.am.LogWriter, ClientBaseDataSource, String, String) throws java.sql.SQLException;
public void setMaxStatements(int);
public int getMaxStatements();
public int maxStatementsToPool();
private final void validateState();
private void readObject(java.io.ObjectInputStream) throws ClassNotFoundException, java.io.IOException;
static void ();
}
org/apache/derby/jdbc/ClientConnectionPoolDataSource40.class
package org.apache.derby.jdbc;
public synchronized class ClientConnectionPoolDataSource40 extends ClientConnectionPoolDataSource {
public void ClientConnectionPoolDataSource40();
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException;
}
org/apache/derby/jdbc/ClientDataSource.class
package org.apache.derby.jdbc;
public synchronized class ClientDataSource extends ClientBaseDataSource implements javax.sql.DataSource {
private static final long serialVersionUID = 1894299584216955553;
public static final String className__ = org.apache.derby.jdbc.ClientDataSource;
public void ClientDataSource();
public java.sql.Connection getConnection() throws java.sql.SQLException;
public java.sql.Connection getConnection(String, String) throws java.sql.SQLException;
private java.sql.Connection getConnectionX(org.apache.derby.client.am.LogWriter, String, String) throws org.apache.derby.client.am.SqlException;
}
org/apache/derby/jdbc/ClientDataSource40.class
package org.apache.derby.jdbc;
public synchronized class ClientDataSource40 extends ClientDataSource {
public void ClientDataSource40();
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException;
}
org/apache/derby/jdbc/ClientDriver.class
package org.apache.derby.jdbc;
public synchronized class ClientDriver implements java.sql.Driver {
private transient int traceFileSuffixIndex_;
private static final int DERBY_REMOTE_PROTOCOL = 1;
private static org.apache.derby.client.am.ClientJDBCObjectFactory factoryObject;
private static java.sql.SQLException exceptionsOnLoadDriver__;
private static ClientDriver registeredDriver__;
protected static void registerMe(ClientDriver);
public void ClientDriver();
public java.sql.Connection connect(String, java.util.Properties) throws java.sql.SQLException;
private String appendDatabaseAttributes(String, java.util.Properties);
public boolean acceptsURL(String) throws java.sql.SQLException;
public java.sql.DriverPropertyInfo[] getPropertyInfo(String, java.util.Properties) throws java.sql.SQLException;
public int getMajorVersion();
public int getMinorVersion();
public boolean jdbcCompliant();
private static int tokenizeProtocol(String, java.util.StringTokenizer) throws org.apache.derby.client.am.SqlException;
private static String tokenizeServerName(java.util.StringTokenizer, String) throws org.apache.derby.client.am.SqlException;
private static int tokenizeOptionalPortNumber(java.util.StringTokenizer, String) throws org.apache.derby.client.am.SqlException;
private static String tokenizeDatabase(java.util.StringTokenizer, String) throws org.apache.derby.client.am.SqlException;
private static java.util.Properties tokenizeURLProperties(String, java.util.Properties) throws org.apache.derby.client.am.SqlException;
public static org.apache.derby.client.am.ClientJDBCObjectFactory getFactory();
private static org.apache.derby.client.am.ClientJDBCObjectFactory createDefaultFactoryImpl();
private static org.apache.derby.client.am.ClientJDBCObjectFactory createJDBC40FactoryImpl();
static void ();
}
org/apache/derby/jdbc/ClientDriver40.class
package org.apache.derby.jdbc;
public synchronized class ClientDriver40 extends ClientDriver {
public void ClientDriver40();
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException;
static void ();
}
org/apache/derby/jdbc/ClientXADataSource.class
package org.apache.derby.jdbc;
public synchronized class ClientXADataSource extends ClientDataSource implements javax.sql.XADataSource {
public static final String className__ = org.apache.derby.jdbc.ClientXADataSource;
private static final long serialVersionUID = 7057075094707674880;
public void ClientXADataSource();
public javax.sql.XAConnection getXAConnection() throws java.sql.SQLException;
public javax.sql.XAConnection getXAConnection(String, String) throws java.sql.SQLException;
private javax.sql.XAConnection getXAConnectionX(org.apache.derby.client.am.LogWriter, ClientBaseDataSource, String, String) throws java.sql.SQLException;
}
org/apache/derby/jdbc/ClientXADataSource40.class
package org.apache.derby.jdbc;
public synchronized class ClientXADataSource40 extends ClientXADataSource {
public void ClientXADataSource40();
public boolean isWrapperFor(Class) throws java.sql.SQLException;
public Object unwrap(Class) throws java.sql.SQLException;
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException;
}
org/apache/derby/shared/common/error/ExceptionUtil.class
package org.apache.derby.shared.common.error;
public synchronized class ExceptionUtil {
public void ExceptionUtil();
public static String getSQLStateFromIdentifier(String);
public static int getSeverityFromIdentifier(String);
}
org/apache/derby/shared/common/i18n/MessageUtil.class
package org.apache.derby.shared.common.i18n;
public synchronized class MessageUtil {
public static final java.util.Locale US;
private String resourceBundleName;
public void MessageUtil(String);
public String getTextMessage(String);
public String getTextMessage(String, Object);
public String getTextMessage(String, Object, Object);
public String getTextMessage(String, Object, Object, Object);
public String getTextMessage(String, Object, Object, Object, Object);
public String getCompleteMessage(String, Object[]);
public static String getCompleteMessage(java.util.Locale, String, String, Object[], boolean) throws java.util.MissingResourceException;
public static String getCompleteMessage(String, String, Object[]) throws java.util.MissingResourceException;
public static String formatMessage(java.util.ResourceBundle, String, Object[], boolean);
private static int countParams(String);
public static String composeDefaultMessage(String, Object[]);
static void ();
}
org/apache/derby/shared/common/sanity/ThreadDump.class
package org.apache.derby.shared.common.sanity;
public synchronized class ThreadDump {
public void ThreadDump();
public static String getStackDumpString();
}
org/apache/derby/tools/sysinfo.class
package org.apache.derby.tools;
public synchronized class sysinfo {
public static final String DBMS = DBMS;
public static final String TOOLS = tools;
public static final String NET = net;
public static final String CLIENT = dnc;
public static void main(String[]);
private void sysinfo();
public static int getMajorVersion();
public static int getMajorVersion(String);
public static int getMinorVersion();
public static int getMinorVersion(String);
public static String getBuildNumber();
public static String getBuildNumber(String);
public static String getProductName();
public static String getProductName(String);
public static String getVersionString();
public static String getVersionString(String);
public static void getInfo(java.io.PrintWriter);
}
org/apache/derby/info/dnc.properties
#Copyright 1997, 2011 The Apache Software Foundation or its licensors, as applicable.
#Tue Apr 19 06:14:38 PDT 2011
derby.version.beta=false
derby.product.file=codeline
derby.version.minor=8
derby.version.drdamaint=0
derby.version.major=10
derby.version.maint=1000002
derby.product.external.name=Apache Derby
derby.build.number=1095077
derby.product.external.version=10.8
derby.product.technology.name=Apache Derby Network Client
derby.product.vendor=The Apache Software Foundation
org/apache/derby/loc/clientmessages.properties
#Tue Apr 19 06:13:09 PDT 2011
XJ022.S=Unable to set stream\: ''{0}''.
XN017.S=End of stream prematurely reached while reading the stream specified by parameter \#{0}. The remaining data expected by the server has been filled with 0x0.
XJ115.S=Unable to open resultSet with requested holdability {0}.
XJ04C.S=CallableStatement batch cannot contain output parameters.
XN013.S=Invalid scroll orientation.
XJ079.S=The length specified ''{0}'' exceeds the size of the BLOB/CLOB.
XJ111.S=Foreign table name can not be null
XJ208.S=Non-atomic batch failure. The batch was submitted, but at least one exception occurred on an individual member of the batch. Use getNextException() to retrieve the exceptions for specific batched elements.
XJ204.S=Unable to open result set with requested holdability {0}.
XJ071.S=Negative length argument ''{0}'' passed in a BLOB or CLOB method.
XJ200.S=Exceeded maximum number of sections {0}
22005.S.6=Unrecognized Java SQL type {0}.
22005.S.5=Invalid JDBC type for parameter {0}.
22005.S.4=Unrecognized JDBC type. Type\: {0}, columnCount\: {1}, columnIndex\: {2}.
22005.S.3=Unicode string cannot convert to Ebcdic string
22005.S.2=The required character converter is not available.
X0X0D.S=Invalid column array length ''{0}''. To return generated keys, column array must be of length 1 and contain only the identity column.
22005.S.1=Unable to convert a value of type ''{0}'' to type ''{1}'' \: the encoding is not supported.
58016.C=The DDM parameter 0x{0} is not supported. The connection has been terminated.
08006.C.6=Attempt to fully materialize lob data that is too large for the JVM. The connection has been terminated.
08006.C.5=Insufficient data while reading from the network - expected a minimum of {0} bytes and received only {1} bytes. The connection has been terminated.
08006.C.4=An error occurred during a deferred connect reset and the connection has been terminated. See chained exceptions for details.
08006.C.3=A communications error has been detected\: {0}.
08006.C.2=SocketException\: ''{0}''
08006.C.1=An error occurred during connect reset and the connection has been terminated. See chained exceptions for details.
0A000.S.7=The data type ''{0}'' is not supported.
0A000.S.5=Security mechanism ''{0}'' is not supported.
0A000.S.4=cancel() not supported by the server.
XJ015.M=Derby system shutdown.
0A000.S.3=resultSetHoldability property {0} not supported
0A000.S.2=JDBC method {0} is not supported by the server. Please upgrade the server.
XJ011.S=Cannot pass null for savepoint name.
08001.C.14=A connection could not be established because the server name (SRVNAM) has a length of zero or is larger than the maximum allowed by the network protocol.
0A000.S.1=JDBC method is not yet implemented.
08001.C.13=A connection could not be established because the external name (EXTNAM) has a length of zero or is larger than the maximum allowed by the network protocol.
XJ108.S=Illegal Block Size
08001.C.12=A connection could not be established because the password has a length of zero or is larger than the maximum allowed by the network protocol.
08001.C.11=A connection could not be established because the user id has a length of zero or is larger than the maximum allowed by the network protocol.
08001.C.10=A connection could not be established because the security token is larger than the maximum allowed by the network protocol.
XJ096.S=A resource bundle could not be found in the {0} package for {1}
XJ104.S=Shared key length is invalid\: {0}.
XN002.U=SECTKN was not returned.
XJ068.S=Only executeBatch and clearBatch allowed in the middle of a batch.
XJ100.S=The scale supplied by the registerOutParameter method does not match with the setter method. Possible loss of precision\!
XJ064.S=Invalid parameter value ''{0}'' for setFetchDirection(int direction).
0A000.C.6=The DRDA command {0} is not currently implemented. The connection has been terminated.
XJ008.S=Cannot rollback or release a savepoint when in auto-commit mode.
XJ125.S=This method should only be called on ResultSet objects that are scrollable (type TYPE_SCROLL_INSENSITIVE).
XJ05C.S=Cannot set holdability ResultSet.HOLD_CURSORS_OVER_COMMIT for a global transaction.
XJ121.S=Invalid operation at current cursor position.
XJ085.S=Stream has already been read and end-of-file reached and cannot be re-used.
XJ004.C=Database ''{0}'' not found.
XJ214.S=An IO Error occurred when calling free() on a CLOB or BLOB.
22003.S.3=Overflow occurred during numeric data type conversion of ''{0}'' to {1}.
08004.C.9=Missing permission for user ''{0}'' to shutdown system [{1}].
22003.S.2=Decimal may only be up to 31 digits.
08004.C.8=User ''{0}'' cannot issue a replication operation on database ''{1}''. Only the database owner can perform this operation.
22003.S.1=Year ({0}) exceeds the maximum ''{1}''.
08004.C.7=Connection refused to database ''{0}'' because it is in replication slave mode.
08004.C.6=User ''{0}'' cannot hard upgrade database ''{1}''. Only the database owner can perform this operation.
08004.C.5=User ''{0}'' cannot (re)encrypt database ''{1}''. Only the database owner can perform this operation.
08004.C.4=User ''{0}'' cannot shut down database ''{1}''. Only the database owner can perform this operation.
08004.C.3=Database connection refused.
08004.C.2=The connection was refused because the database {0} was not found.
XJ081.S=Invalid value ''{0}'' passed as parameter ''{1}'' to method ''{2}''
08004.C.1=Connection authentication failure occurred. Reason\: {0}.
XJ210.S=The load module name for the stored procedure on the server is not found.
XJ057.S=Cannot commit a global transaction using the Connection, commit processing must go thru XAResource interface.
22015.S.1=Invalid data conversion\: requested conversion would result in a loss of precision of {0}
XCL08.S=Cursor ''{0}'' is not on a row.
XJ081.C=Conflicting create/restore/recovery attributes specified.
J136=There was an XA transaction associated with the connection being closed. The transaction is going to be rolled back. The transaction Xid is {0}.
23502=Column ''{0}'' cannot accept a NULL value.
J135=The XA transaction timed out and is going to be rolled back. The transaction Xid is {0}.
J134=Negative values for the maxStatements property are not allowed\: {0}
J133=The user''s password for the connection
J132=The user name for the connection
J131=A PROTOCOL Data Stream Syntax Error was detected. Reason\: 0x{0}. Plaintext connection attempt to an SSL enabled server?
J130=A PROTOCOL Invalid FDOCA Description Error was detected
22007.S.181=The syntax of the string representation of a datetime value is incorrect.
XJ025.S=Input stream cannot have negative length.
2D521.S.2=COMMIT or ROLLBACK invalid for application execution environment.
2D521.S.1=setAutoCommit(true) invalid during global transaction.
22028=The string exceeds the maximum length of {0}.
XJ021.S=Type is not supported.
XJ118.S=Query batch requested on a non-query statement.
58009.C.9=Network protocol exception\: PKGNAMCSN length, {0}, is invalid at SQLAM {1}. The connection has been terminated.
XN016.S=Encountered an Exception while trying to verify the length of the stream specified by parameter \#{0}. The Exception had this message\: {1}.
58009.C.8=Network protocol exception\: SCLDTA length, {0}, is invalid for PKGID. The connection has been terminated.
58009.C.7=Network protocol exception\: SCLDTA length, {0}, is invalid for RDBCOLID. The connection has been terminated.
J129=an Open Query command was issued for a query which was already open
XJ114.S=Invalid cursor name ''{0}''
J128=the cursor is not open
J127=parseSQLDIAGGRP is not yet implemented
J126=a conversational protocol error was detected. Reason\: 0x{0}.
J125=a Data Descriptor Mismatch Error was detected.
XJ04B.S=Batch cannot contain a command that attempts to return a result set.
07000=At least one parameter to the current statement is uninitialized.
J124=the access relational database (ACCRDB) command cannot be issued because the database is already currently accessed
XN012.S=On {0} platforms, XA supports version {1} and above, this is version {2}
J123=the requested command encountered an unarchitected and implementation-specific condition for which there was no architected message (additional information may be available in the derby.log file on the server)
08003.C.3=The underlying physical connection is stale or closed.
J122=a command requesting services of the database was issued prior to the command requesting access to database (ACCRDB)
08003.C.2=Lob method called after connection was closed
J121=the user is not authorized to access the database
08003.C.1=getConnection() is not valid on a closed PooledConnection.
J120=not specified
XJ110.S=Primary table name can not be null
XJ078.S=Offset ''{0}'' is either less than zero or is too large for the current BLOB/CLOB.
XJ207.S=executeQuery method can not be used for update.
24501.S=The identified cursor is not open.
X0X95.S=Operation ''{0}'' cannot be performed on object ''{1}'' because there is an open ResultSet dependent on that object.
22018=Invalid character string format for type {0}.
XJ074.S=Invalid parameter value ''{0}'' for Statement.setQueryTimeout(int seconds).
XJ203.S=Cursor name ''{0}'' is already in use
XJ070.S=Negative or zero position argument ''{0}'' passed in a Blob or Clob method.
J118=password expired
J117=SECTKN missing on ACCSEC when it is required or it is invalid
J116=local security service non-retryable error
J115=new password invalid
J114=userid revoked
J113=userid or password invalid
J112=userid missing
58015.C=The DDM object 0x{0} is not supported. The connection has been terminated.
J111=password missing
J110=security mechanism not supported
XJ042.S=''{0}'' is not a valid value for property ''{1}''.
XJ018.S=Column name cannot be null.
08006.D=Database ''{0}'' shutdown.
08006.C=A network protocol error was encountered and the connection has been terminated\: {0}
22005=An attempt was made to get a data value of type ''{0}'' from a data value of type ''{1}''.
XJ014.S=No name for un-named savepoints.
22003=The resulting value is outside the range for the data type {0}.
XJ099.S=The Reader/Stream object does not contain length characters
XN009.S=Error obtaining length of BLOB/CLOB object, exception follows.
XJ010.S=Cannot issue savepoint when autoCommit is on.
J109=Detected an improper TCP/IP client configuration. Unable to determine the IP address of your local host\: ''{0}''. Make sure your client machine has a properly configured IP address.
XJ107.S=Bad Padding
J108=Security manager does not permit access to system property {0}.
XCY00.S=Invalid value for property ''{0}''\=''{1}''.
J107=Error for batch element \#
J105=Precision exceeds 31 digits\!
J104=The object is already closed.
XJ095.S=An attempt to execute a privileged action failed.
J103=An exception was thrown during network server shutdown. {0}
J102=An exception was thrown during network server startup. {0}
J101=Cannot load the network server class, {0}. {1} Check the integrity of your derbynet.jar file.
J100=Cannot find the network server class, {0}. Your class path should contain derbynet.jar.
XJ103.S=Table name can not be null
XN001.S=Connection reset is not allowed when inside a unit of work.
XJ091.S=Invalid argument\: parameter index {0} is not an OUT or INOUT parameter.
XJ067.S=SQL text pointer is null.
XJ063.S=Invalid parameter value ''{0}'' for Statement.setMaxRows(int maxRows). Parameter value must be >\= 0.
XCL18.S=Stream or LOB value cannot be retrieved more than once
XCL14.S=The column position ''{0}'' is out of range. The number of columns for this ResultSet is ''{1}''.
08001.C.9=A connection could not be established because the database name ''{0}'' is larger than the maximum length allowed by the network protocol.
08001.C.8=Password can not be null.
08001.C.7=User id can not be null.
08001.C.6=Password length ({0}) is outside the range of 1 to {1}.
08001.C.5=User id length ({0}) is outside the range of 1 to {1}.
08001.C.4=Unable to open stream on socket\: ''{0}''.
08001.C.3=SocketException\: ''{0}''
08001.C.2={0} \: Error connecting to server {1} on port {2} with message {3}.
XJ128.S=Unable to unwrap for ''{0}''
08001.C.1=Required Derby DataSource property {0} not set.
XJ124.S=Column not updatable.
08004=Connection refused \: {0}
08003=No current connection.
08000=Connection closed by unknown interrupt.
XJ088.S=Invalid operation\: wasNull() called with no data retrieved.
XJ217.S=The locator that was supplied for this CLOB/BLOB is invalid
XJ084.U=Column does not correspond to a column in the base table. Cannot issue ''{0}'' on this column.
XJ05B.C=JDBC attribute ''{0}'' has an invalid value ''{1}'', valid values are ''{2}''.
XJ080.S=USING execute statement passed {0} parameters rather than {1}.
XJ056.S=Cannot set AUTOCOMMIT ON when in an XA connection.
XJ213.C=The traceLevel connection property does not have a valid format for a number.
XCL31.S=Statement closed.
J031=collation for chararcter datatypes
J030=backup path for restoring database from backup
22011.S.1=The range specified for the substring with offset {0} and len {1} is out of range for the String\: {2}.
XN019.S=Error executing a {0}, server returned {1}.
XJ028.C=The URL ''{0}'' is not properly formed.
XJ020.S=Object type not convertible to TYPE ''{0}'', invalid java.sql.Types value, or object was null.
XJ117.S=Batching of queries not allowed by J2EE compliance.
XN015.S=Network protocol error\: the specified size of the InputStream, parameter \#{0}, is less than the actual InputStream length.
XJ113.S=Unable to open file {0} \: {1}
J029=backup path for creating database from backup
J028=backup path for rollforward recovery
J025=log directory path
XN011.S=Procedure name length {0} is not within the valid range of 1 to {1}.
J023=user password
J022=user name
J021=territory for the database
XJ077.S=Got an exception when trying to read the first byte/character of the BLOB/CLOB pattern using getBytes/getSubString.
J020=secret cryptographic key
XJ206.S=SQL text ''{0}'' has no tokens.
XJ073.S=The data in this BLOB or CLOB is no longer available. The BLOB/CLOB''s transaction may be committed, its connection closed or it has been freed.
XJ202.S=Invalid cursor name ''{0}''.
0A000.S=Feature not implemented\: {0}.
XJ045.S=Invalid or (currently) unsupported isolation level, ''{0}'', passed to Connection.setTransactionIsolation(). The currently supported values are java.sql.Connection.TRANSACTION_SERIALIZABLE, java.sql.Connection.TRANSACTION_REPEATABLE_READ, java.sql.Connection.TRANSACTION_READ_COMMITTED, and java.sql.Connection.TRANSACTION_READ_UNCOMMITTED.
J019=external cryptographic key
J018=cryptographic key length
J017=cryptographic algorithm
J016=cryptographic service provider
J013=upgrade database
58014.C=The DDM command 0x{0} is not supported. The connection has been terminated.
XJ049.C=Conflicting create attributes specified.
J010=encrypt database on disk
XJ017.S=No savepoint command allowed inside the trigger code.
58010.C=A network protocol error was encountered. A connection could not be established because the manager {0} at level {1} is not supported by the server.
XJ013.S=No ID for named savepoints.
XJ041.C=Failed to create database ''{0}'', see the next exception for details.
XN008.S=Query processing has been terminated due to an error on the server.
XJ098.S=The auto-generated keys value {0} is invalid
42622=The name ''{0}'' is too long. The maximum length is ''{1}''.
J008=no details
XJ106.S=No such padding
J007=create database
J006=deregister AutoloadedDriver
J005=shut down Derby
J004=database identity
J003={0}\: Shutting down Derby engine
XJ094.S=This object is already closed.
XJ090.S=Invalid parameter\: calendar is null.
XJ066.S=Invalid parameter value ''{0}'' for Statement.setMaxFieldSize(int max).
3B502.S=A RELEASE or ROLLBACK TO SAVEPOINT was specified, but the savepoint does not exist.
XJ062.S=Invalid parameter value ''{0}'' for ResultSet.setFetchSize(int rows).
XCL13.S=The parameter position ''{0}'' is out of range. The number of parameters for this prepared statement is ''{1}''.
24000=Invalid cursor state - no current row.
XJ030.S=Cannot set AUTOCOMMIT ON when in a nested connection.
08004.C.12=Connection authentication failure occurred. Either the supplied credentials were invalid, or the database uses a password encryption scheme not compatible with the strong password substitution security mechanism. If this error started after upgrade, refer to the release note for DERBY-4483 for options.
08004.C.11=Missing permission for user ''{0}'' to create database ''{1}'' [{2}].
08004.C.10=Cannot check system permission to create database ''{0}'' [{1}].
XJ123.S=This method must be called to update values in the current row or the insert row.
XN021.S=An object of type {0} cannot be cast to an object of type {1}.
XJ087.S=Sum of position(''{0}'') and length(''{1}'') is greater than the size of the LOB plus one.
XJ216.S=The length of this BLOB/CLOB is not available yet. When a BLOB or CLOB is accessed as a stream, the length is not available until the entire stream has been processed.
01J13=Number of rows returned ({0}) is too large to fit in an integer; the value returned will be truncated.
XJ083.U=''{0}'' not allowed because the ResultSet is not an updatable ResultSet.
01J12=Unable to obtain message text from server. See the next exception. The stored procedure SYSIBM.SQLCAMESSAGE is not installed on the server. Please contact your database administrator.
01J10=Scroll sensitive result sets are not supported by server; remapping to forward-only cursor
XJ212.S=Invalid attribute syntax\: {0}
XJ059.S=Cannot close a connection while a global transaction is still active.
01J08=Unable to open resultSet type {0}. ResultSet type {1} opened.
01J07=ResultSetHoldability restricted to ResultSet.CLOSE_CURSORS_AT_COMMIT for a global transaction.
01J06=ResultSet not updatable. Query does not qualify to generate an updatable ResultSet.
XJ023.S=Input stream did not have exact amount of data as the requested length.
XBM0N.D=JDBC Driver registration with java.sql.DriverManager failed. See next exception for details.
XN018.S=Network protocol error\: the specified size of the Reader, parameter \#{0}, is less than the actual InputStream length.
58009.C.21=Network protocol exception\: SCLDTA length, {0}, is invalid for RDBNAM. The connection has been terminated.
58009.C.20=Network protocol exception\: only one of NVCM, NVCS can be non-null. The connection has been terminated.
XJ116.S=No more than {0} commands may be added to a single batch.
XN014.S=Encountered an Exception while reading from the stream specified by parameter \#{0}. The remaining data expected by the server has been filled with 0x0. The Exception had this message\: {1}.
X0Y78.S.2={0}.executeQuery() was called but no result set was returned. Use {1}.executeUpdate() for non-queries.
XJ112.S=Security exception encountered, see next exception for details.
X0Y78.S.1={0}.executeQuery() cannot be called because multiple result sets were returned. Use {1}.execute() to obtain multiple results.
XJ209.S=The required stored procedure is not installed on the server.
XN010.S=Procedure name can not be null.
XJ076.S=The position argument ''{0}'' exceeds the size of the BLOB/CLOB.
58009.C.19=Network protocol exception\: SECTKN was not returned. The connection has been terminated.
58009.C.18=Network protocol exception\: invalid FDOCA LID. The connection has been terminated.
58009.C.17=Network protocol exception\: end of stream prematurely reached while reading InputStream, parameter \#{0}. The connection has been terminated.
58009.C.16=Network protocol exception\: DSS chained with same id at end of same id chain parse. The connection has been terminated.
58009.C.15=Network protocol exception\: DSS length not 0 at end of same id chain parse. The connection has been terminated.
58009.C.14=Network protocol exception\: collection stack not empty at end of same id chain parse. The connection has been terminated.
58009.C.13=Network protocol exception\: DDM collection contains less than 4 bytes of data. The connection has been terminated.
58009.C.12=Network protocol exception\: actual code point, {0}, does not match expected code point, {1}. The connection has been terminated.
42X74=Invalid CALL statement syntax.
XJ072.S=Null pattern or searchStr passed in to a BLOB or CLOB position method.
58009.C.11=The connection was terminated because the encoding is not supported.
58009.C.10=Network protocol exception\: only one of the VCM, VCS length can be greater than 0. The connection has been terminated.
58017.C=The DDM parameter value 0x{0} is not supported. An input host variable may not be within the range the server supports. The connection has been terminated.
XJ044.S=''{0}'' is an invalid scale.
25001=Cannot close a connection while a transaction is still active.
08006.D.1=Database ''{0}'' dropped.
XJ048.C=Conflicting boot attributes specified\: {0}
XJ016.S=Method ''{0}'' not allowed on prepared statement.
XJ012.S=''{0}'' already closed.
XCY02.S=The requested property change is not supported ''{0}''\=''{1}''.
XJ040.C=Failed to start database ''{0}'' with class loader {1}, see the next exception for details.
XJ097.S=Cannot rollback or release a savepoint that was not created by this connection.
XJ105.S=DES key has the wrong length, expected length {0}, got length {1}.
XIE08.S=There is no column named\: {0}.
XJ093.S=Length of BLOB/CLOB, {0}, is too large. The length cannot exceed {1}.
XJ069.S=No SetXXX methods allowed in case of USING execute statement.
XJ065.S=Invalid parameter value ''{0}'' for Statement.setFetchSize(int rows).
X0Y79.S=Statement.executeUpdate() cannot be called with a statement that returns a ResultSet.
42ZA1=Invalid SQL in Batch\: ''{0}''.
XJ061.S=The ''{0}'' method is only allowed on scroll cursors.
XCL16.S=ResultSet not open. Operation ''{0}'' not permitted. Verify that autocommit is OFF.
XCL12.S=An attempt was made to put a data value of type ''{0}'' into a data value of type ''{1}''.
XJ009.S=Use of CallableStatement required for stored procedure call or use of output parameters\: {0}
XJ126.S=This method should not be called on sensitive dynamic cursors.
XJ122.S=No updateXXX methods were called on this row.
XJ001.U=Java exception\: ''{1}\: {0}''.
XN020.S=Error marshalling or unmarshalling a user defined type\: {0}
XJ086.S=This method cannot be invoked while the cursor is not on the insert row or if the concurrency of this ResultSet object is CONCUR_READ_ONLY.
XJ215.S=You cannot invoke other java.sql.Clob/java.sql.Blob methods after calling the free() method or after the Blob/Clob''s transaction has been committed or rolled back.
XJ082.U=BLOB/CLOB values are not allowed as method parameters or receiver.
57017.C=There is no available conversion for the source code page, {0}, to the target code page, {1}. The connection has been terminated.
XJ211.S=Non-recoverable chain-breaking exception occurred during batch processing. The batch is terminated non-atomically.
XJ058.S=Cannot rollback a global transaction using the Connection, commit processing must go thru XAResource interface.
42X30=Cursor ''{0}'' not found. Verify that autocommit is OFF.
XJ050.U=Database requires upgrade from version {0}, set the attribute ''upgrade\=true'' on the JDBC connection URL to allow upgrade to version {1}.
org/apache/derby/loc/clientmessages_cs.properties
#Tue Apr 19 06:13:09 PDT 2011
XJ111.S=Jm\u00E9no ciz\u00ED tabulky nem\u016F\u017Ee m\u00EDt hodnotu ''null''
XJ020.S=Typ objektu nen\u00ED p\u0159evoditeln\u00FD na TYP ''{0}'', neplatn\u00E1 hodnota java.sql.Types nebo objekt m\u011Bl hodnotu ''null''.
XJ200.S=Byl p\u0159ekro\u010Den maxim\u00E1ln\u00ED po\u010Det sekc\u00ED {0}
XCL31.S=P\u0159\u00EDkaz byl uzav\u0159en.
58010.C=Byla zji\u0161t\u011Bna chyba s\u00ED\u0165ov\u00E9ho protokolu. Spojen\u00ED nebylo ustanoveno, proto\u017Ee spr\u00E1vce {0} na \u00FArovni {1} nen\u00ED podporov\u00E1n serverem.
XJ091.S=Neplatn\u00FD argument\: index parametru {0} nen\u00ED parametrem OUT nebo INOUT.
XJ078.S=Odsazen\u00ED ''{0}'' je bu\u010F men\u0161\u00ED ne\u017E nula, nebo p\u0159\u00EDli\u0161 velk\u00E9 pro aktu\u00E1ln\u00ED BLOB/CLOB.
XN009.S=Chyba p\u0159i z\u00EDsk\u00E1v\u00E1n\u00ED d\u00E9lky objektu BLOB/CLOB. N\u00E1sleduje v\u00FDjimka.
XCL16.S=Mno\u017Eina v\u00FDsledk\u016F nen\u00ED otev\u0159ena. Operace ''{0}'' nen\u00ED povolena. Ov\u011B\u0159te, \u017Ee automatick\u00E9 potvrzov\u00E1n\u00ED je VYPNUTO.
XJ076.S=Argument pozice ''{0}'' p\u0159ekra\u010Duje velikost BLOB/CLOB.
XCL14.S=Pozice sloupce ''{0}'' je mimo rozsah. Po\u010Det sloupc\u016F pro tuto mno\u017Einu v\u00FDsledk\u016F je ''{1}''.
J109=Byla detekov\u00E1na nespr\u00E1vn\u00E1 konfigurace klienta TCP/IP. Nelze ur\u010Dit adresu IP va\u0161eho lok\u00E1ln\u00EDho hostitele\: ''{0}''. Ujist\u011Bte se, \u017Ee v\u00E1\u0161 klientsk\u00FD po\u010D\u00EDta\u010D m\u00E1 \u0159\u00E1dn\u011B konfigurovanou adresu IP.
XJ074.S=Neplatn\u00E1 hodnota parametru ''{0}'' pro Statement.setQueryTimeout(int seconds).
J108=Spr\u00E1vce zabezpe\u010Den\u00ED nepovoluje p\u0159\u00EDstup k vlastnosti syst\u00E9mu {0}.
J107=Chyba prvku d\u00E1vkov\u00E9ho zpracov\u00E1n\u00ED \#
XJ001.U=V\u00FDjimka Javy\: ''{1}\: {0}''.
J105=P\u0159esnost p\u0159ekra\u010Duje 31 \u010D\u00EDslic\!
J104=Objekt je ji\u017E zav\u0159en.
J103=Do\u0161lo k v\u00FDjimce b\u011Bhem vyp\u00EDn\u00E1n\u00ED s\u00ED\u0165ov\u00E9ho serveru. {0}
XCL12.S=Byl u\u010Din\u011Bn pokus o vlo\u017Een\u00ED hodnoty dat typu ''{0}'' do hodnoty dat typu ''{1}''.
J102=Do\u0161lo k v\u00FDjimce b\u011Bhem spou\u0161t\u011Bn\u00ED s\u00ED\u0165ov\u00E9ho serveru. {0}
XJ072.S=Metod\u011B pozice BLOB nebo CLOB byl p\u0159ed\u00E1n vzor s hodnotou ''null'' nebo searchStr.
J101=Nelze zav\u00E9st t\u0159\u00EDdu s\u00ED\u0165ov\u00E9ho serveru {0}. {1} Zkontrolujte integritu va\u0161eho souboru derbynet.jar.
XJ059.S=Nelze zav\u0159\u00EDt spojen\u00ED, kdy\u017E je glob\u00E1ln\u00ED transakce st\u00E1le aktivn\u00ED.
J100=Nelze nal\u00E9zt t\u0159\u00EDdu s\u00ED\u0165ov\u00E9ho serveru {0}. Va\u0161e cesta ke t\u0159\u00EDd\u011B by m\u011Bla obsahovat soubor derbynet.jar.
08001.C.12=Spojen\u00ED nebylo ustanoveno, proto\u017Ee heslo m\u00E1 nulovou d\u00E9lku nebo je del\u0161\u00ED ne\u017E maximum povolen\u00E9 s\u00ED\u0165ov\u00FDm protokolem.
08001.C.11=Spojen\u00ED nebylo ustanoveno, proto\u017Ee ID u\u017Eivatele m\u00E1 nulovou d\u00E9lku nebo je del\u0161\u00ED ne\u017E maximum povolen\u00E9 s\u00ED\u0165ov\u00FDm protokolem.
08001.C.10=Spojen\u00ED nebylo ustanoveno, proto\u017Ee token zabezpe\u010Den\u00ED je v\u011Bt\u0161\u00ED ne\u017E maximum povolen\u00E9 s\u00ED\u0165ov\u00FDm protokolem.
XJ070.S=Metod\u011B BLOB nebo CLOB byl p\u0159ed\u00E1n z\u00E1porn\u00FD nebo nulov\u00FD argument pozice ''{0}''.
XJ057.S=Nelze potvrdit glob\u00E1ln\u00ED transakci pomoc\u00ED p\u0159ipojen\u00ED. Zpracov\u00E1n\u00ED potvrzen\u00ED mus\u00ED proj\u00EDt rozhran\u00EDm XAResource.
XBM0N.D=Registrace ovlada\u010De JDBC u java.sql.DriverManager selhala. Podrobnosti viz dal\u0161\u00ED v\u00FDjimka.
XN001.S=Resetov\u00E1n\u00ED p\u0159ipojen\u00ED nen\u00ED povoleno, kdy\u017E jste uvnit\u0159 jednotky pr\u00E1ce.
22028=\u0158et\u011Bzec p\u0159ekra\u010Duje maxim\u00E1ln\u00ED d\u00E9lku {0}.
42X30=Kurzor ''{0}'' nebyl nalezen. Ov\u011B\u0159te, \u017Ee automatick\u00E9 potvrzov\u00E1n\u00ED je VYPNUTO.
08004.C.3=P\u0159ipojen\u00ED k datab\u00E1zi bylo odm\u00EDtnuto.
08004.C.2=P\u0159ipojen\u00ED bylo odm\u00EDtnuto, proto\u017Ee datab\u00E1ze {0} nebyla nalezena.
08004=P\u0159ipojen\u00ED bylo odm\u00EDtnuto\: {0}
08004.C.1=Vyskytlo se selh\u00E1n\u00ED ov\u011B\u0159en\u00ED p\u0159ipojen\u00ED. D\u016Fvod\: {0}.
08003=\u017D\u00E1dn\u00E9 aktu\u00E1ln\u00ED p\u0159ipojen\u00ED.
08000=Spojen\u00ED bylo zav\u0159eno nezn\u00E1m\u00FDm p\u0159eru\u0161en\u00EDm.
22003.S.3=Vyskytlo se p\u0159ete\u010Den\u00ED b\u011Bhem konverze \u010D\u00EDseln\u00E9ho datov\u00E9ho typu ''{0}'' na {1}.
22003.S.2=Des\u00EDtkov\u00E9 \u010D\u00EDslo m\u016F\u017Ee m\u00EDt maxim\u00E1ln\u011B 31 \u010D\u00EDslic.
22003.S.1=Rok ({0}) p\u0159ekra\u010Duje maximum ''{1}''.
XJ125.S=Tato metoda by m\u011Bla b\u00FDt vol\u00E1na pouze na objekty mno\u017Einy v\u00FDsledk\u016F, kter\u00E9 jsou posouvateln\u00E9 (typ TYPE_SCROLL_INSENSITIVE).
22018=Neplatn\u00FD form\u00E1t \u0159et\u011Bzce znak\u016F pro typ {0}.
XCY02.S=Po\u017Eadovan\u00E1 zm\u011Bna vlastnosti nen\u00ED podporov\u00E1na ''{0}''\=''{1}''.
XJ214.S=Vyskytla se chyba I/O p\u0159i vol\u00E1n\u00ED free() na CLOB nebo BLOB.
0A000.S=Funkce nen\u00ED implementov\u00E1na\: {0}.
57017.C=Nen\u00ED k dispozici konverze ze zdrojov\u00E9 k\u00F3dov\u00E9 str\u00E1nky {0} do c\u00EDlov\u00E9 k\u00F3dov\u00E9 str\u00E1nky {1}. Spojen\u00ED bylo ukon\u010Deno.
XJ123.S=Tato metoda mus\u00ED b\u00FDt vol\u00E1na, aby se aktualizovaly hodnoty v aktu\u00E1ln\u00EDm \u0159\u00E1dku nebo \u0159\u00E1dku pro vlo\u017Een\u00ED.
XCY00.S=Neplatn\u00E1 hodnota pro vlastnost ''{0}''\=''{1}''.
XJ212.S=Neplatn\u00E1 syntaxe atributu\: {0}
XJ121.S=Neplatn\u00E1 operace na aktu\u00E1ln\u00ED pozici kurzoru.
XJ108.S=Neplatn\u00E1 velikost bloku
XJ030.S=Nelze zapnout automatick\u00E9 potvrzov\u00E1n\u00ED ve vno\u0159en\u00E9m spojen\u00ED.
XJ210.S=Jm\u00E9no modulu zaveden\u00ED pro ulo\u017Eenou proceduru na serveru nebylo nalezeno.
X0Y79.S=Statement.executeUpdate() nelze volat s p\u0159\u00EDkazem, kter\u00FD vrac\u00ED mno\u017Einu v\u00FDsledk\u016F.
XJ017.S=V k\u00F3du triggeru nen\u00ED povolen \u017E\u00E1dn\u00FD p\u0159\u00EDkaz bodu ulo\u017Een\u00ED.
XJ088.S=Neplatn\u00E1 operace\: bylo vol\u00E1no wasNull() bez na\u010Dten\u00FDch dat.
XJ106.S=Neexistuje takov\u00E1 vata
XN019.S=Chyba p\u0159i prov\u00E1d\u011Bn\u00ED p\u0159\u00EDkazu {0}, server vr\u00E1til\: {1}.
XJ086.S=Tuto metodu nelze vyvolat, kdy\u017E kurzor nen\u00ED na \u0159\u00E1dku pro vlo\u017Een\u00ED nebo kdy\u017E soub\u011B\u017Enost tohoto objektu mno\u017Einy v\u00FDsledk\u016F je CONCUR_READ_ONLY.
XJ104.S=D\u00E9lka sd\u00EDlen\u00E9ho kl\u00ED\u010De je neplatn\u00E1\: {0}.
XJ015.M=Vypnut\u00ED syst\u00E9mu Derby.
XN017.S=Chyba s\u00ED\u0165ov\u00E9ho protokolu\: p\u0159ed\u010Dasn\u011B dosa\u017Een konec toku dat, parametr \#{0}. Zb\u00FDvaj\u00EDc\u00ED data byla vypln\u011Bna 0x0.
XJ013.S=\u017D\u00E1dn\u00E9 ID pro jmenovan\u00E9 body ulo\u017Een\u00ED.
XJ084.U=Sloupec neodpov\u00EDd\u00E1 sloupci v z\u00E1kladn\u00ED tabulce. Nelze vydat ''{0}'' na tento sloupec.
22005=Byl u\u010Din\u011Bn pokus o z\u00EDsk\u00E1n\u00ED hodnoty dat typu ''{0}'' z hodnoty dat typu ''{1}''.
XJ04B.S=D\u00E1vka nem\u016F\u017Ee obsahovat p\u0159\u00EDkaz, kter\u00FD se pokou\u0161\u00ED vr\u00E1tit mno\u017Einu v\u00FDsledk\u016F.
22003=V\u00FDsledn\u00E1 hodnota je mimo rozsah pro datov\u00FD typ {0}.
XN015.S=Chyba s\u00ED\u0165ov\u00E9ho protokolu\: uveden\u00E1 velikost InputStream, parametr \#{0}, je men\u0161\u00ED ne\u017E skute\u010Dn\u00E1 d\u00E9lka InputStream.
XJ011.S=Nelze p\u0159edat hodnotu ''null'' jm\u00E9nu bodu ulo\u017Een\u00ED.
XJ082.U=Hodnoty BLOB/CLOB nejsou povoleny jako parametry metody nebo z\u00E1sobn\u00EDky.
XJ069.S=V p\u0159\u00EDpad\u011B p\u0159\u00EDkazu proveden\u00ED USING nejsou povoleny \u017E\u00E1dn\u00E9 metody SetXXX.
XJ100.S=M\u011B\u0159\u00EDtko dodan\u00E9 metodou registerOutParameter neodpov\u00EDd\u00E1 metod\u011B setter. Mo\u017En\u00E1 ztr\u00E1ta p\u0159esnosti\!
XN013.S=Neplatn\u00E1 operace posuvu.
01J13=Vr\u00E1cen\u00FD po\u010Det \u0159\u00E1dk\u016F ({0}) je p\u0159\u00EDli\u0161 velk\u00FD, aby se ve\u0161el do celo\u010D\u00EDseln\u00E9 prom\u011Bnn\u00E9; vr\u00E1cen\u00E1 hodnota bude oseknuta.
XJ080.S=P\u0159\u00EDkaz proveden\u00ED USING p\u0159edal {0} parametry sp\u00ED\u0161e ne\u017E {1}.
01J12=Nelze z\u00EDskat text zpr\u00E1vy ze serveru. Prohl\u00E9dn\u011Bte si dal\u0161\u00ED v\u00FDjimku. Ulo\u017Een\u00E1 procedura SYSIBM.SQLCAMESSAGE nen\u00ED instalov\u00E1na na serveru. Obra\u0165te se na va\u0161eho administr\u00E1tora datab\u00E1ze, pros\u00EDm.
XJ067.S=Ukazatel na text SQL m\u00E1 hodnotu ''null''.
01J10=Mno\u017Einy v\u00FDsledk\u016F citliv\u00E9 na posuv nejsou podporov\u00E1ny serverem; p\u0159emapov\u00E1n\u00ED na kurzor, kter\u00FD se pohybuje pouze vp\u0159ed
XN011.S=D\u00E9lka jm\u00E9na procedury {0} nen\u00ED v platn\u00E9m rozsahu 1 a\u017E {1}.
58009.C.9=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: d\u00E9lka PKGNAMCSN, {0}, je neplan\u00E1 v SQLAM {1}. Spojen\u00ED bylo ukon\u010Deno.
58009.C.8=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: d\u00E9lka SCLDTA, {0}, je neplan\u00E1 pro PKGID. Spojen\u00ED bylo ukon\u010Deno.
XIE08.S=Neexistuje jmenovan\u00FD sloupec\: {0}.
58009.C.7=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: d\u00E9lka SCLDTA, {0}, je neplan\u00E1 pro RDBCOLID. Spojen\u00ED bylo ukon\u010Deno.
XJ065.S=Neplatn\u00E1 hodnota parametru ''{0}'' pro Statement.setFetchSize(int rows).
XJ063.S=Neplatn\u00E1 hodnota parametru ''{0}'' pro Statement.setMaxRows(int maxRows). Hodnota parametru mus\u00ED b\u00FDt >\= 0.
X0Y78.S.2=Bylo vol\u00E1no {0}.executeQuery(), ale nebyla vr\u00E1cena \u017E\u00E1dn\u00E1 mno\u017Eina v\u00FDsledk\u016F. Pokud se nejedn\u00E1 o dotazy, pou\u017Eijte p\u0159\u00EDkaz {1}.executeUpdate().
X0Y78.S.1={0}.executeQuery() nelze volat, proto\u017Ee bylo vr\u00E1ceno n\u011Bkolik mno\u017Ein v\u00FDsledk\u016F. Pou\u017Eijte p\u0159\u00EDkaz {1}.execute(), abyste z\u00EDskali n\u011Bkolik v\u00FDsledk\u016F.
XJ061.S=Metoda ''{0}'' je povolena pouze u posuvn\u00FDch kurzor\u016F.
01J08=Nelze otev\u0159\u00EDt typ mno\u017Einy v\u00FDsledk\u016F {0}. Byl otev\u0159en typ mno\u017Einy v\u00FDsledk\u016F {1}.
01J07=ResultSetHoldability omezeno na ResultSet.CLOSE_CURSORS_AT_COMMIT pro glob\u00E1ln\u00ED transakci.
01J06=Mno\u017Einu v\u00FDsledk\u016F nelze aktualizovat. Dotaz se nekvalifikuje pro generov\u00E1n\u00ED mno\u017Einy v\u00FDsledk\u016F, kterou lze aktualizovat.
J028=cesta k z\u00E1loze pro n\u00E1pravu rolov\u00E1n\u00EDm vp\u0159ed
XJ044.S=''{0}'' je neplatn\u00FDm m\u011B\u0159\u00EDtkem.
J025=cesta k adres\u00E1\u0159i protokolu
J023=heslo u\u017Eivatele
08003.C.3=Z\u00E1kladn\u00ED fyzick\u00E9 p\u0159ipojen\u00ED je zastaral\u00E9 nebo zav\u0159en\u00E9.
J022=jm\u00E9no u\u017Eivatele
08003.C.2=Metoda protokolu byla vol\u00E1na pro zav\u0159en\u00ED spojen\u00ED
J021=oblast pro datab\u00E1zi
08003.C.1=Metoda getConnection() nen\u00ED platn\u00E1 v zav\u0159en\u00E9m shrom\u00E1\u017Ed\u011Bn\u00E9m p\u0159ipojen\u00ED.
J020=tajn\u00FD \u0161ifrovac\u00ED kl\u00ED\u010D
XJ042.S=''{0}'' nen\u00ED platnou hodnotou pro vlastnost ''{1}''.
XJ209.S=Po\u017Eadovan\u00E1 ulo\u017Een\u00E1 procedura nen\u00ED instalov\u00E1na na serveru.
XJ118.S=Bylo po\u017Eadov\u00E1no d\u00E1vkov\u00E9 zpracov\u00E1n\u00ED dotazu u p\u0159\u00EDkazu, kter\u00FD nen\u00ED dotazem.
XJ207.S=Metodu executeQuery nelze pou\u017E\u00EDt pro aktualizaci.
58017.C=Hodnota parametru DDM 0x{0} nen\u00ED podporov\u00E1na. Vstupn\u00ED prom\u011Bnn\u00E1 hostitele nemus\u00ED b\u00FDt v rozsahu, kter\u00FD server podporuje. Spojen\u00ED bylo ukon\u010Deno.
XJ098.S=Hodnota automaticky generovan\u00FDch kl\u00ED\u010D\u016F {0} je neplatn\u00E1
XJ116.S=Do jedin\u00E9 d\u00E1vky nelze p\u0159idat v\u00EDce ne\u017E {0} p\u0159\u00EDkaz\u016F.
XJ025.S=Vstupn\u00ED tok dat nem\u016F\u017Ee m\u00EDt z\u00E1pornou d\u00E9lku.
XJ096.S=Bal\u00EDk prost\u0159edk\u016F nebyl nalezen v bal\u00EDku {0} pro {1}
58015.C=Objekt DDM 0x{0} nen\u00ED podporov\u00E1n. Spojen\u00ED bylo ukon\u010Deno.
XJ114.S=Neplatn\u00E9 jm\u00E9no kurzoru ''{0}''
XJ023.S=Vstupn\u00ED tok dat nem\u011Bl p\u0159esn\u00E9 mno\u017Estv\u00ED dat jako po\u017Eadovan\u00E1 d\u00E9lka.
J019=vn\u011Bj\u0161\u00ED \u0161ifrovac\u00ED kl\u00ED\u010D
XJ203.S=Jm\u00E9no kurzoru ''{0}'' je ji\u017E pou\u017E\u00EDv\u00E1no
J018=d\u00E9lka \u0161ifrovac\u00EDho kl\u00ED\u010De
XJ040.C=Selh\u00E1n\u00ED spu\u0161t\u011Bn\u00ED datab\u00E1ze ''{0}''; podrobnosti viz dal\u0161\u00ED v\u00FDjimka.
J017=\u0161ifrovac\u00ED algoritmus
J016=poskytovatel \u0161ifrovac\u00ED slu\u017Eby
XJ094.S=Tento objekt je ji\u017E zav\u0159en.
XJ112.S=Byla zji\u0161t\u011Bna v\u00FDjimka zabezpe\u010Den\u00ED; podrobnosti viz dal\u0161\u00ED v\u00FDjimka.
J013=p\u0159ej\u00EDt na vy\u0161\u0161\u00ED verzi datab\u00E1ze
42622=Jm\u00E9no ''{0}'' je p\u0159\u00EDli\u0161 dlouh\u00E9. Maxim\u00E1ln\u00ED d\u00E9lka je ''{1}''.
XJ021.S=Typ nen\u00ED podporov\u00E1n.
22007.S.181=Syntaxe zn\u00E1zorn\u011Bn\u00ED \u0159et\u011Bzce hodnoty data/\u010Dasu je nespr\u00E1vn\u00E1.
XJ008.S=Nelze rolovat zp\u011Bt nebo uvolnit bod ulo\u017Een\u00ED, kdy\u017E jste v re\u017Eimu automatick\u00E9ho potvrzov\u00E1n\u00ED.
J010=za\u0161ifrovat datab\u00E1zi na disku
XJ110.S=Jm\u00E9no prim\u00E1rn\u00ED tabulky nem\u016F\u017Ee m\u00EDt hodnotu ''null''
XJ079.S=Uveden\u00E1 d\u00E9lka ''{0}'' p\u0159ekra\u010Duje velikost BLOB/CLOB.
2D521.S.2=Operace COMMIT nebo ROLOV\u00C1N\u00CD ZP\u011AT jsou neplatn\u00E9 pro prost\u0159ed\u00ED prov\u00E1d\u011Bn\u00ED aplikace.
2D521.S.1=setAutoCommit(true) je neplatn\u00E9 b\u011Bhem glob\u00E1ln\u00ED transakce.
XJ090.S=Neplatn\u00FD parametr\: kalend\u00E1\u0159 m\u00E1 hodnotu ''null''.
XJ077.S=Do\u0161lo k v\u00FDjimce p\u0159i pokusu o na\u010Dten\u00ED prvn\u00EDho bajtu/znaku vzoru BLOB/CLOB pomoc\u00ED getBytes/getSubString.
58009.C.21=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: d\u00E9lka SCLDTA, {0}, je neplan\u00E1 pro RDBNAM. Spojen\u00ED bylo ukon\u010Deno.
58009.C.20=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: pouze jedna z hodnot NVCM a NVCS m\u016F\u017Ee b\u00FDt nenulov\u00E1. Spojen\u00ED bylo ukon\u010Deno.
XJ05B.C=Atribut JDBC ''{0}'' m\u00E1 neplatnou hodnotu ''{1}''. Platn\u00E9 hodnoty jsou ''{2}''.
XN008.S=Zpracov\u00E1n\u00ED dotazu bylo ukon\u010Deno kv\u016Fli chyb\u011B na serveru.
XCL13.S=Pozice parametru ''{0}'' je mimo rozsah. Po\u010Det parametr\u016F pro tento p\u0159ipraven\u00FD p\u0159\u00EDkaz je ''{1}''.
08006.C.6=Pokus o \u00FApln\u00E9 uskute\u010Dn\u011Bn\u00ED dat protokolu, kter\u00E1 jsou p\u0159\u00EDli\u0161 velk\u00E1 pro JVM. Spojen\u00ED bylo ukon\u010Deno.
08006.C.5=Nedostatek dat p\u0159i na\u010D\u00EDt\u00E1n\u00ED ze s\u00EDt\u011B - o\u010Dek\u00E1valo se minim\u00E1ln\u011B {0} bajt\u016F a bylo p\u0159ijato pouze {1} bajt\u016F. Spojen\u00ED bylo ukon\u010Deno.
J008=\u017E\u00E1dn\u00E9 podrobnosti
XJ073.S=Data v t\u00E9to metod\u011B BLOB nebo CLOB ji\u017E nejsou k dispozici. Transakce metody BLOB/CLOB m\u016F\u017Ee b\u00FDt potvrzena, nebo je jej\u00ED spojen\u00ED zav\u0159eno.
08006.C.4=Vyskytla se chyba b\u011Bhem odlo\u017Een\u00E9ho resetov\u00E1n\u00ED spojen\u00ED a spojen\u00ED bylo ukon\u010Deno. Podrobnosti viz z\u0159et\u011Bzen\u00E9 v\u00FDjimky.
J007=vytvo\u0159it datab\u00E1zi
08006.C.3=Byla detekov\u00E1na chyba komunikac\u00ED\: {0}.
08006.C.2=V\u00FDjimka soketu\: ''{0}''
J005=vypnout server Derby
08006.C.1=Vyskytla se chyba b\u011Bhem resetov\u00E1n\u00ED p\u0159ipojen\u00ED a p\u0159ipojen\u00ED bylo ukon\u010Deno. Podrobnosti viz z\u0159et\u011Bzen\u00E9 v\u00FDjimky.
J004=toto\u017Enost datab\u00E1ze
XJ004.C=Datab\u00E1ze ''{0}'' nebyla nalezena.
XJ071.S=Metod\u011B BLOB nebo CLOB byl p\u0159ed\u00E1n argument se z\u00E1pornou d\u00E9lkou ''{0}''.
22005.S.6=Nerozpoznan\u00FD typ SQL Javy {0}.
22005.S.5=Neplatn\u00FD typ JDBC pro parametr {0}.
XN002.U=SECTKN nebylo vr\u00E1ceno.
XJ058.S=Nelze rolovat zp\u011Bt glob\u00E1ln\u00ED transakci pomoc\u00ED p\u0159ipojen\u00ED. Zpracov\u00E1n\u00ED potvrzen\u00ED mus\u00ED proj\u00EDt rozhran\u00EDm XAResource.
22005.S.4=Nerozpoznan\u00FD typ JDBC. Typ\: {0}, po\u010DetSloupc\u016F\: {1}, indexSloupce\: {2}.
58009.C.19=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: nebylo vr\u00E1ceno SECTKN. Spojen\u00ED bylo ukon\u010Deno.
22005.S.3=\u0158et\u011Bzec Unicode nelze konvertovat na \u0159et\u011Bzec EBCDIC
58009.C.18=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: neplatn\u00FD FDOCA LID. Spojen\u00ED bylo ukon\u010Deno.
22005.S.2=Po\u017Eadovan\u00FD konvertor znak\u016F nen\u00ED k dispozici.
58009.C.17=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: byl p\u0159ed\u010Dasn\u011B dosa\u017Een konec toku dat p\u0159i \u010Dten\u00ED vstupn\u00EDho toku, parametr \#{0}. Spojen\u00ED bylo ukon\u010Deno.
22005.S.1=Nelze konvertovat hodnotu typu ''{0}'' na typ ''{1}'' \: zak\u00F3dov\u00E1n\u00ED nen\u00ED podporov\u00E1no.
58009.C.16=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: DSS je z\u0159et\u011Bzeno se stejn\u00FDm ID na konci anal\u00FDzy \u0159et\u011Bzu stejn\u00E9ho ID. Spojen\u00ED bylo ukon\u010Deno.
58009.C.15=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: d\u00E9lka DSS nen\u00ED 0 na konci anal\u00FDzy \u0159et\u011Bzu stejn\u00E9ho ID. Spojen\u00ED bylo ukon\u010Deno.
58009.C.14=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: z\u00E1sobn\u00EDk kolekce nen\u00ED pr\u00E1zdn\u00FD na konci anal\u00FDzy \u0159et\u011Bzu stejn\u00E9ho ID. Spojen\u00ED bylo ukon\u010Deno.
XJ056.S=Nelze zapnout automatick\u00E9 potvrzov\u00E1n\u00ED v p\u0159ipojen\u00ED XA.
58009.C.13=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: kolekce DDM obsahuje m\u00E9n\u011B ne\u017E 4 bajty dat. Spojen\u00ED bylo ukon\u010Deno.
58009.C.12=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: aktu\u00E1ln\u00ED identifika\u010Dn\u00ED bod {0} neodpov\u00EDd\u00E1 o\u010Dek\u00E1van\u00E9mu identifika\u010Dn\u00EDmu bodu {1}. Spojen\u00ED bylo ukon\u010Deno.
58009.C.11=Spojen\u00ED bylo ukon\u010Deno, proto\u017Ee zak\u00F3dov\u00E1n\u00ED nen\u00ED podporov\u00E1no.
58009.C.10=V\u00FDjimka s\u00ED\u0165ov\u00E9ho protokolu\: pouze jedna z d\u00E9lek VCM a VCS m\u016F\u017Ee b\u00FDt v\u011Bt\u0161\u00ED ne\u017E 0. Spojen\u00ED bylo ukon\u010Deno.
XJ050.U=Datab\u00E1ze po\u017Eaduje upgrade z verze {0}. Nastavte atribut ''upgrade\=true'' adresy URL p\u0159ipojen\u00ED JDBC, abyste povolili upgrade na verzi {1}.
XJ128.S=Nelze rozbalit pro ''{0}''
XJ126.S=Tato metoda by nem\u011Bla b\u00FDt vol\u00E1na na citliv\u00E9 dynamick\u00E9 kurzory.
XJ215.S=Po vyvol\u00E1n\u00ED metody free() nem\u016F\u017Eete vyvolat jin\u00E9 metody java.sql.Clob/java.sql.Blob.
XJ124.S=Sloupec nelze aktualizovat.
XJ122.S=Nebyly vol\u00E1ny \u017E\u00E1dn\u00E9 metody updateXXX na tomto \u0159\u00E1dku.
24000=Neplatn\u00FD stav kurzoru - \u017E\u00E1dn\u00FD aktu\u00E1ln\u00ED \u0159\u00E1dek.
XJ018.S=Jm\u00E9no sloupce nem\u016F\u017Ee m\u00EDt hodnotu ''null''.
XJ211.S=Vyskytla se neopraviteln\u00E1 v\u00FDjimka b\u011Bhem d\u00E1vkov\u00E9ho zpracov\u00E1n\u00ED, kter\u00E1 p\u0159eru\u0161uje \u0159et\u011Bzec. D\u00E1vkov\u00E9 zpracov\u00E1n\u00ED je neatomicky ukon\u010Deno.
XJ107.S=Chybn\u00E1 vata
XJ016.S=Metoda ''{0}'' nen\u00ED povolena v p\u0159ipraven\u00E9m p\u0159\u00EDkazu.
XJ213.C=Vlastnost p\u0159ipojen\u00ED traceLevel nem\u00E1 platn\u00FD form\u00E1t \u010D\u00EDsla.
XJ105.S=Kl\u00ED\u010D DES m\u00E1 chybnou d\u00E9lku. O\u010Dek\u00E1van\u00E1 d\u00E9lka {0}, obdr\u017Een\u00E1 d\u00E9lka {1}.
XN018.S=Chyba s\u00ED\u0165ov\u00E9ho protokolu\: uveden\u00E1 velikost Reader, parametr \#{0}, je men\u0161\u00ED ne\u017E skute\u010Dn\u00E1 d\u00E9lka InputStream.
XJ014.S=\u017D\u00E1dn\u00E9 jm\u00E9no pro nejmenovan\u00E9 body ulo\u017Een\u00ED.
XJ085.S=Tok dat ji\u017E byl p\u0159e\u010Dten, byl dosa\u017Een konec souboru a tok dat nelze pou\u017E\u00EDt znovu.
XJ103.S=Jm\u00E9no tabulky nesm\u00ED m\u00EDt hodnotu ''null''
22015.S.1=Neplatn\u00E1 konverze dat\: po\u017Eadovan\u00E1 konverze by m\u011Bla za n\u00E1sledek ztr\u00E1tu p\u0159esnosti {0}
XJ04C.S=D\u00E1vka CallableStatement nem\u016F\u017Ee obsahovat v\u00FDstupn\u00ED parametry.
XN016.S=Chyba s\u00ED\u0165ov\u00E9ho protokolu\: byla zji\u0161t\u011Bna chyba v ov\u011B\u0159en\u00ED d\u00E9lky toku dat, parametr \#{0}. Zpr\u00E1va\: {1}.
XJ012.S=''{0}'' je ji\u017E zav\u0159eno.
XJ083.U=''{0}'' nen\u00ED povoleno, proto\u017Ee mno\u017Eina v\u00FDsledk\u016F nen\u00ED mno\u017Einou v\u00FDsledk\u016F, kterou lze aktualizovat.
42X74=Neplatn\u00E1 syntaxe p\u0159\u00EDkazu CALL.
XN014.S=Chyba s\u00ED\u0165ov\u00E9ho protokolu\: byla zji\u0161t\u011Bna v\u00FDjimka I/O, parametr \#{0}. Zb\u00FDvaj\u00EDc\u00ED data byla vypln\u011Bna 0x0. Zpr\u00E1va\: {1}.
XJ010.S=Nelze zadat bod ulo\u017Een\u00ED, kdy\u017E je zapnuto automatick\u00E9 potvrzov\u00E1n\u00ED.
XCL08.S=Kurzor ''{0}'' nen\u00ED na \u0159\u00E1dku.
XJ081.S=Byla p\u0159ed\u00E1na neplatn\u00E1 hodnota ''{0}'' jako parametr ''{1}'' metod\u011B ''{2}''
XJ068.S=Uprost\u0159ed d\u00E1vky je povoleno pouze executeBatch a clearBatch.
XN012.S=Na platform\u00E1ch {0} podporuje XA verzi {1} a vy\u0161\u0161\u00ED. Toto je verze {2}
XJ066.S=Neplatn\u00E1 hodnota parametru ''{0}'' pro Statement.setMaxFieldSize(int max).
XN010.S=Jm\u00E9no procedury nesm\u00ED m\u00EDt hodnotu ''null''.
J133=Heslo u\u017Eivatele pro p\u0159ipojen\u00ED
J132=Jm\u00E9no u\u017Eivatele pro p\u0159ipojen\u00ED
J130=Byla detekov\u00E1na chyba neplatn\u00E9ho popisu FDOCA PROTOKOLU
XJ064.S=Neplatn\u00E1 hodnota parametru ''{0}'' pro setFetchDirection(int direction).
0A000.S.7=Datov\u00FD typ ''{0}'' nen\u00ED podporov\u00E1n.
XJ081.C=Byly uvedeny konfliktn\u00ED atributy vytvo\u0159en\u00ED/obnovy/n\u00E1pravy.
0A000.S.5=Mechanizmus zabezpe\u010Den\u00ED ''{0}'' nen\u00ED podporov\u00E1n.
0A000.S.4=Metoda cancel() nen\u00ED podporov\u00E1na serverem.
08006.D=Vypnut\u00ED datab\u00E1ze ''{0}''.
0A000.S.3=Vlastnost resultSetHoldability {0} nen\u00ED podporov\u00E1na
08006.C=Byla zji\u0161t\u011Bna chyba s\u00ED\u0165ov\u00E9ho protokolu a spojen\u00ED bylo ukon\u010Deno\: {0}
0A000.S.2=Metoda JDBC {0} nen\u00ED podporov\u00E1na serverem. Povy\u0161te server, pros\u00EDm.
24501.S=Ozna\u010Den\u00FD kurzor nen\u00ED otev\u0159en.
0A000.S.1=Metoda JDBC zat\u00EDm nen\u00ED implementov\u00E1na.
XJ062.S=Neplatn\u00E1 hodnota parametru ''{0}'' pro ResultSet.setFetchSize(int rows).
J129=byl vyd\u00E1n p\u0159\u00EDkaz Open Query pro dotaz, kter\u00FD ji\u017E byl otev\u0159en
J128=kurzor nen\u00ED otev\u0159en
XJ045.S=Metod\u011B Connection.setTransactionIsolation() byla p\u0159ed\u00E1na neplatn\u00E1 nebo (moment\u00E1ln\u011B) nepodporovan\u00E1 \u00FArove\u0148 izolace ''{0}''. Moment\u00E1ln\u011B podporovan\u00FDmi hodnotami jsou java.sql.Connection.TRANSACTION_SERIALIZABLE, java.sql.Connection.TRANSACTION_REPEATABLE_READ, java.sql.Connection.TRANSACTION_READ_COMMITTED a java.sql.Connection.TRANSACTION_READ_UNCOMMITTED.
J127=parseSQLDIAGGRP dosud nen\u00ED implementov\u00E1n
J126=Byla detekov\u00E1na chyba interak\u010Dn\u00EDho protokolu. P\u0159\u00ED\u010Dina\: 0x{0}.
XJ049.C=Byly uvedeny konfliktn\u00ED atributy vytvo\u0159en\u00ED.
J125=Byla detekov\u00E1na neshoda popisova\u010De dat.
J124=p\u0159\u00EDkaz pro p\u0159\u00EDstup k rela\u010Dn\u00ED datab\u00E1zi (ACCRDB) nelze zadat, proto\u017Ee k datab\u00E1zi ji\u017E existuje p\u0159\u00EDstup
J123=po\u017Eadovan\u00FD p\u0159\u00EDkaz narazil na architektonicky nevy\u0159e\u0161enou a implementa\u010Dn\u011B z\u00E1vislou podm\u00EDnku, pro kterou nebyla vytvo\u0159ena \u017E\u00E1dn\u00E1 zpr\u00E1va
J122=byl vyd\u00E1n p\u0159\u00EDkaz po\u017Eaduj\u00EDc\u00ED slu\u017Eby datab\u00E1ze p\u0159ed p\u0159\u00EDkazem po\u017Eaduj\u00EDc\u00EDm p\u0159\u00EDstup k datab\u00E1zi (ACCRDB)
J121=u\u017Eivatel nen\u00ED autorizov\u00E1n pro p\u0159\u00EDstup k datab\u00E1zi
J120=neuvedeno
07000=Alespo\u0148 jeden parametr aktu\u00E1ln\u00EDho p\u0159\u00EDkazu nen\u00ED inicializov\u00E1n.
25001=Nelze zav\u0159\u00EDt spojen\u00ED, kdy\u017E je transakce st\u00E1le aktivn\u00ED.
XJ208.S=Neatomick\u00E9 selh\u00E1n\u00ED d\u00E1vky. D\u00E1vka byla zad\u00E1na, ale vyskytla se alespo\u0148 jedna v\u00FDjimka u jednotliv\u00E9ho \u010Dlenu d\u00E1vky. Pou\u017Eijte p\u0159\u00EDkaz getNextException(), abyste na\u010Detli v\u00FDjimky pro ur\u010Dit\u00E9 prvky d\u00E1vky.
XJ099.S=Objekt Reader/Stream neobsahuje znaky d\u00E9lky
XJ117.S=D\u00E1vkov\u00E9 zpracov\u00E1n\u00ED dotaz\u016F nen\u00ED povoleno slu\u010Ditelnost\u00ED J2EE.
23502=Sloupec ''{0}'' nem\u016F\u017Ee p\u0159ij\u00EDmat hodnotu ''null''.
XJ206.S=Text SQL ''{0}'' nem\u00E1 \u017E\u00E1dn\u00E9 tokeny.
42ZA1=Neplatn\u00E9 SQL v d\u00E1vce\: ''{0}''.
58016.C=Parametr DDM 0x{0} nen\u00ED podporov\u00E1n. Spojen\u00ED bylo ukon\u010Deno.
XJ097.S=Nelze rolovat zp\u011Bt nebo uvolnit bod ulo\u017Een\u00ED, kter\u00FD nebyl vytvo\u0159en t\u00EDmto spojen\u00EDm.
08001.C.9=Spojen\u00ED nebylo ustanoveno, proto\u017Ee jm\u00E9no datab\u00E1ze ''{0}'' je del\u0161\u00ED ne\u017E maxim\u00E1ln\u00ED d\u00E9lka povolen\u00E1 s\u00ED\u0165ov\u00FDm protokolem.
XJ115.S=Nelze otev\u0159\u00EDt mno\u017Einu v\u00FDsledk\u016F s po\u017Eadovanou zadr\u017Eitelnost\u00ED {0}.
08001.C.8=Heslo nesm\u00ED m\u00EDt hodnotu ''null''.
08001.C.7=ID u\u017Eivatele nesm\u00ED m\u00EDt hodnotu ''null''.
08001.C.6=D\u00E9lka hesla ({0}) je mimo rozsah 1 a\u017E {1}.
XJ041.C=Selh\u00E1n\u00ED vytvo\u0159en\u00ED datab\u00E1ze ''{0}''; podrobnosti viz dal\u0161\u00ED v\u00FDjimka.
3B502.S=Bylo uvedeno RELEASE nebo ROLLBACK TO SAVEPOINT, ale bod ulo\u017Een\u00ED neexistuje.
08001.C.5=D\u00E9lka ID u\u017Eivatele ({0}) je mimo rozsah 1 a\u017E {1}.
J118=heslo vypr\u0161elo
XJ204.S=Nelze otev\u0159\u00EDt mno\u017Einu v\u00FDsledk\u016F s po\u017Eadovanou zadr\u017Eitelnost\u00ED {0}.
08001.C.4=Nelze otev\u0159\u00EDt tok dat v soketu\: ''{0}''.
XJ028.C=Adresa URL ''{0}'' nen\u00ED \u0159\u00E1dn\u011B formov\u00E1na.
J117=Chyb\u011Bj\u00EDc\u00ED SECTKN u ACCSEC, kdy\u017E je po\u017Eadov\u00E1n, nebo je neplatn\u00FD
58014.C=P\u0159\u00EDkaz DDM 0x{0} nen\u00ED podporov\u00E1n. Spojen\u00ED bylo ukon\u010Deno.
08001.C.3=V\u00FDjimka soketu\: ''{0}''
XJ095.S=Selh\u00E1n\u00ED pokusu o proveden\u00ED p\u0159ednostn\u00ED akce.
J116=chyba lok\u00E1ln\u00ED slu\u017Eby zabezpe\u010Den\u00ED, kterou nelze znovu zkusit
X0X95.S=Operaci ''{0}'' nelze prov\u00E9st na objektu ''{1}'', proto\u017Ee existuje otev\u0159en\u00E1 mno\u017Eina v\u00FDsledk\u016F, kter\u00E1 je z\u00E1visl\u00E1 na tomto objektu.
XJ113.S=Nelze otev\u0159\u00EDt soubor {0} \: {1}
08001.C.2={0} \: Chyba p\u0159i p\u0159ipojov\u00E1n\u00ED k serveru {1} na portu {2} se zpr\u00E1vou\: {3}.
J115=nov\u00E9 heslo je neplatn\u00E9
XJ05C.S=Nelze nastavit zadr\u017Eitelnost ResultSet.HOLD_CURSORS_OVER_COMMIT pro glob\u00E1ln\u00ED transakci.
08001.C.1=Po\u017Eadovan\u00E1 vlastnost zdroje dat Derby {0} nen\u00ED nastavena.
J114=ID u\u017Eivatele bylo odvol\u00E1no
J113=neplatn\u00E9 ID u\u017Eivatele nebo heslo
0A000.C.6=P\u0159\u00EDkaz DRDA {0} moment\u00E1ln\u011B nen\u00ED implementov\u00E1n. Spojen\u00ED bylo ukon\u010Deno.
XJ022.S=Nelze nastavit tok dat\: ''{0}''.
J112=chyb\u011Bj\u00EDc\u00ED ID u\u017Eivatele
XJ202.S=Neplatn\u00E9 jm\u00E9no kurzoru ''{0}''.
XJ009.S=Je po\u017Eadov\u00E1no pou\u017Eit\u00ED CallableStatement pro vol\u00E1n\u00ED ulo\u017Een\u00E9 procedury nebo pou\u017Eit\u00ED v\u00FDstupn\u00EDch parametr\u016F\: {0}
J111=chyb\u011Bj\u00EDc\u00ED heslo
J110=mechanizmus zabezpe\u010Den\u00ED nen\u00ED podporov\u00E1n
XJ093.S=D\u00E9lka BLOB/CLOB {0} je p\u0159\u00EDli\u0161 velk\u00E1. D\u00E9lka nem\u016F\u017Ee p\u0159ekro\u010Dit {1}.
org/apache/derby/loc/clientmessages_de_DE.properties
#Tue Apr 19 06:13:10 PDT 2011
XJ022.S=Der folgende Datenstrom kann nicht definiert werden\: ''{0}''.
XN017.S=Netzprotokollfehler\: Das Ende des Datenstroms wurde vorzeitig erreicht (Parameter {0}). Die verbleibenden Daten wurden mit 0x0 aufgef\u00FCllt.
XJ115.S=Das ResultSet kann nicht mit der angeforderten Offenhaltungseinstellung {0} ge\u00F6ffnet werden.
XJ04C.S=Der CallableStatement-Batch darf keine Ausgabeparameter enthalten.
XN013.S=Ung\u00FCltige Scroll-Richtung
XJ079.S=Die angegebene L\u00E4nge ''{0}'' \u00FCberschreitet die Gr\u00F6\u00DFe des BLOB/CLOB.
XJ111.S=Der Name der Fremdtabelle muss ungleich null sein.
XJ208.S=Fehler bei nicht atomarer Batch-Operation. Der Batch wurde \u00FCbergeben. Bei einem Batch-Member ist jedoch mindestens eine Ausnahme eingetreten. Mit getNextException() k\u00F6nnen Sie die Ausnahmen f\u00FCr bestimmte Batch-Elemente abrufen.
XJ204.S=Die Ergebnisliste kann nicht mit der angeforderten Offenhaltungseinstellung {0} ge\u00F6ffnet werden.
XJ071.S=An eine BLOB- oder CLOB-Methode wurde das negative L\u00E4ngenargument ''{0}'' \u00FCbergeben.
XJ200.S=Die maximale Anzahl Abschnitte {0} wurde \u00FCberschritten.
22005.S.6=Nicht erkannter Java-SQL-Typ {0}
22005.S.5=Ung\u00FCltiger JDBC-Typ f\u00FCr den Parameter {0}
22005.S.4=Nicht erkannter JDBC-Typ. Typ\: {0}, Spaltennummer\: {1}, Spaltenindex\: {2}
22005.S.3=Eine Unicode-Zeichenfolge kann nicht in eine EBCDIC-Zeichenfolge konvertiert werden.
22005.S.2=Der erforderliche Zeichenumsetzer ist nicht verf\u00FCgbar.
X0X0D.S=Ung\u00FCltige L\u00E4nge f\u00FCr Spalten-Array ''{0}''. Um erstellte Schl\u00FCssel zur\u00FCckzugeben, muss das Spalten-Array die L\u00E4nge 1 haben und darf nur die Identit\u00E4tsspalte enthalten.
22005.S.1=Ein Wert des Typs ''{0}'' kann nicht in den Typ ''{1}'' konvertiert werden. Die Codierung wird nicht unterst\u00FCtzt.
58016.C=Der DDM-Parameter 0x{0} wird nicht unterst\u00FCtzt. Die Verbindung wurde beendet.
08006.C.6=Es wurde versucht, LOB-Daten vollst\u00E4ndig zu speichern, die f\u00FCr die JVM zu umfangreich sind. Die Verbindung wurde beendet.
08006.C.5=Unzureichende Daten beim Lesen aus dem Netz. Erwartet wurden mindestens {0} Bytes, empfangen wurden jedoch nur {1} Bytes. Die Verbindung wurde beendet.
08006.C.4=W\u00E4hrend des verz\u00F6gerten Zur\u00FCcksetzens einer Verbindung ist ein Fehler aufgetreten. Die Verbindung wurde beendet. Details finden Sie in den zugeh\u00F6rigen Ausnahmen.
08006.C.3=Es wurde ein \u00DCbertragungsfehler festgestellt. {0}
08006.C.2=SocketException\: ''{0}''
08006.C.1=W\u00E4hrend des Zur\u00FCcksetzens einer Verbindung ist ein Fehler aufgetreten. Die Verbindung wurde beendet. Details finden Sie in den zugeh\u00F6rigen Ausnahmen.
0A000.S.7=Der Datentyp ''{0}'' wird nicht unterst\u00FCtzt.
0A000.S.5=Der Sicherheitsmechanismus ''{0}'' wird nicht unterst\u00FCtzt.
0A000.S.4=Der Server bietet keine Unterst\u00FCtzung f\u00FCr cancel().
XJ015.M=Das Derby-System wird heruntergefahren.
0A000.S.3=Das resultSetHoldability-Merkmal {0} wird nicht unterst\u00FCtzt.
0A000.S.2=Die JDBC-Methode {0} wird nicht vom Server unterst\u00FCtzt. F\u00FChren Sie ein Serverupgrade durch.
XJ011.S=Null kann nicht als Name f\u00FCr den Sicherungspunkt \u00FCbergeben werden.
0A000.S.1=Die JDBC-Methode ist noch nicht implementiert.
XJ108.S=Unzul\u00E4ssige Blockgr\u00F6\u00DFe
08001.C.12=Es konnte keine Verbindung hergestellt werden, weil das Kennwort die L\u00E4nge null hat oder l\u00E4nger als f\u00FCr das Netzprotokoll maximal zul\u00E4ssig ist.
08001.C.11=Es konnte keine Verbindung hergestellt werden, weil die Benutzer-ID die L\u00E4nge null hat oder l\u00E4nger als f\u00FCr das Netzprotokoll maximal zul\u00E4ssig ist.
08001.C.10=Es konnte keine Verbindung hergestellt werden, weil das Sicherheitstoken gr\u00F6\u00DFer als f\u00FCr das Netzprotokoll maximal zul\u00E4ssig ist.
XJ096.S=Im Paket {0} f\u00FCr {1} konnte ein Ressourcen-Bundle nicht gefunden werden.
XJ104.S=Ung\u00FCltige L\u00E4nge des gemeinsam genutzten Schl\u00FCssels\: {0}.
XN002.U=SECTKN wurde nicht zur\u00FCckgegeben.
XJ068.S=In der Mitte eines Batch sind nur executeBatch und clearBatch zul\u00E4ssig.
XJ100.S=Die von der Methode registerOutParameter angegebene Anzahl Nachkommastellen passt nicht zur setter-Methode. Ein Genauigkeitsverlust ist m\u00F6glich\!
XJ064.S=Ung\u00FCltiger Parameterwert ''{0}'' f\u00FCr setFetchDirection(int direction).
0A000.C.6=Der DRDA-Befehl {0} ist derzeit nicht implementiert. Die Verbindung wurde beendet.
XJ008.S=Ein Sicherungspunkt kann im Modus f\u00FCr automatisches Festschreiben nicht zur\u00FCckgesetzt oder freigegeben werden.
XJ125.S=Diese Methode sollte nur f\u00FCr ResultSet-Objekte vom Typ TYPE_SCROLL_INSENSITIVE aufgerufen werden.
XJ05C.S=Die Konstante ResultSet.HOLD_CURSORS_OVER_COMMIT f\u00FCr das Offenhalten kann f\u00FCr eine globale Transaktion nicht definiert werden.
XJ121.S=Ung\u00FCltige Operation an der aktuellen Cursorposition
XJ085.S=Der Datenstrom wurde bereits gelesen. Das Dateiende ist erreicht, und der Datenstrom kann nicht erneut verwendet werden.
XJ004.C=Die Datenbank ''{0}'' wurde nicht gefunden.
XJ214.S=Beim Aufrufen von free() f\u00FCr ein CLOB oder BLOB ist ein E/A-Fehler aufgetreten.
22003.S.3=Bei der Konvertierung eines numerischen Datentyps von ''{0}'' in {1} ist es zu einem \u00DCberlauf gekommen.
08004.C.9=Benutzer ''{0}'' hat keine Berechtigung zum Herunterfahren des Systems [{1}].
22003.S.2=Eine Dezimalzahl darf nicht mehr als 31 Stellen haben.
08004.C.8=Benutzer ''{0}'' kann keinen Replikationsvorgang auf Datenbank ''{1}'' ausl\u00F6sen. Hierzu ist nur der Datenbankeigent\u00FCmer berechtigt.
22003.S.1=Die Jahresangabe ({0}) \u00FCberschreitet den Maximalwert ''{1}''.
08004.C.7=Verbindung mit Datenbank ''{0}'' verweigert. Die Datenbank befindet sich im Replication-Slave-Modus.
08004.C.6=Benutzer ''{0}'' kann kein Upgrade der Datenbank ''{1}'' erzwingen. Hierzu ist nur der Datenbankeigent\u00FCmer berechtigt.
08004.C.5=Benutzer ''{0}'' kann die Datenbank ''{1}'' nicht (neu) verschl\u00FCsseln. Hierzu ist nur der Datenbankeigent\u00FCmer berechtigt.
08004.C.4=Benutzer ''{0}'' kann die Datenbank ''{1}'' nicht herunterfahren. Hierzu ist nur der Datenbankeigent\u00FCmer berechtigt.
08004.C.3=Die Datenbankverbindung wurde verweigert.
08004.C.2=Die Verbindung wurde zur\u00FCckgewiesen, weil die Datenbank {0} nicht gefunden wurde.
XJ081.S=An die Methode ''{2}'' wurde der ung\u00FCltige Wert ''{0}'' als Parameter ''{1}'' \u00FCbergeben.
08004.C.1=Die Verbindung konnte nicht authentifiziert werden. Ursache\: {0}.
XJ210.S=Der Name des Lademoduls f\u00FCr die gespeicherte Prozedur auf dem Server wurde nicht gefunden.
XJ057.S=Eine globale Transaktion kann nicht \u00FCber die Verbindung festgeschrieben werden. Die Verarbeitung der COMMIT-Verarbeitung muss \u00FCber die Schnittstelle XAResource erfolgen.
22015.S.1=Ung\u00FCltige Datenkonvertierung. Bei der angeforderten Konvertierung w\u00FCrde einen Genauigkeitsverlust von {0} nach sich ziehen.
XCL08.S=Der Cursor ''{0}'' befindet sich nicht in einer Zeile.
XJ081.C=Es wurde in Konflikt stehende Erstellungs-/Wiederherstellungsattribute angegeben.
J136=Mit der zu schlie\u00DFenden Verbindung ist eine XA-Transaktion verkn\u00FCpft. Die Transaktion wird zur\u00FCckgesetzt. Die Transaktions-XID lautet {0}.
23502=Die Spalte ''{0}'' akzeptiert keinen Nullwert.
J135=Bei der XA-Transaktion ist eine Zeit\u00FCberschreitung aufgetreten, und sie wird zur\u00FCckgesetzt. Die Transaktions-XID lautet {0}.
J134=Negative Werte sind f\u00FCr die Eigenschaft maxStatements nicht zul\u00E4ssig\: {0}
J133=Kennwort des Benutzers f\u00FCr die Verbindung
J132=Benutzername f\u00FCr die Verbindung
J131=Ein PROTOCOL Datenstrom-Syntaxfehler wurde erfasst. Ursache\: 0x{0}. Versuch, eine Reintext-Verbindung mit einem SSL-konformen Server herzustellen?
J130=Es wurde ein Fehler wegen einer ung\u00FCltigen FDOCA-Beschreibung festgestellt.
22007.S.181=Die Syntax der Zeichenfolgendarstellung eines datetime-Wertes ist fehlerhaft.
XJ025.S=Ein Eingabedatenstrom kann keine negative L\u00E4nge haben.
2D521.S.2=COMMIT oder ROLLBACK ist f\u00FCr eine Anwendungsausf\u00FChrungsumgebung ung\u00FCltig.
2D521.S.1=setAutoCommit(true) ist f\u00FCr eine globale Transaktion ung\u00FCltig.
22028=Die Zeichenfolge \u00FCberschreitet die maximale L\u00E4nge von {0}.
XJ021.S=Der Typ wird nicht unterst\u00FCtzt.
XJ118.S=F\u00FCr eine Nicht-Abfrageanweisung wurde eine Abfrage-Batch-Verarbeitung angefordert.
58009.C.9=Netzprotokollausnahme\: Die SCLDTA-L\u00E4nge {0} ist f\u00FCr SQLAM {1} ung\u00FCltig. Die Verbindung wurde beendet.
XN016.S=Netzprotokollfehler\: Bei der \u00DCberpr\u00FCfung der Datenstroml\u00E4nge wurde ein Fehler festgestellt (Parameter {0}). Nachricht\: {1}.
58009.C.8=Netzprotokollausnahme\: Die SCLDTA-L\u00E4nge {0} ist f\u00FCr PKGID ung\u00FCltig. Die Verbindung wurde beendet.
58009.C.7=Netzprotokollausnahme\: Die SCLDTA-L\u00E4nge {0} ist f\u00FCr RDBCOLID ung\u00FCltig. Die Verbindung wurde beendet.
J129=F\u00FCr eine bereits ge\u00F6ffnete Abfrage wurde ein Befehl Open Query abgesetzt.
XJ114.S=Ung\u00FCltiger Cursorname ''{0}''
J128=Der Cursor ist nicht offen.
J127=parseSQLDIAGGRP ist noch nicht implementiert.
J126=Es wurde ein Dialogprotokollfehler festgestellt. Ursache\: 0x{0}.
J125=Es wurde ein Fehler durch einen abweichenden Datendeskriptor festgestellt.
XJ04B.S=Der Batch darf keinen Befehl enthalten, der versucht, eine Ergebnisliste zur\u00FCckzugeben.
07000=Mindestens ein Parameter der aktuellen Anweisung wurde nicht initialisiert.
J124=Der Befehl f\u00FCr den Zugriff auf die relationale Datenbank (ACCRDB) kann nicht abgesetzt werden, weil der Zugriff auf die Datenbank bereits erfolgte.
XN012.S=Auf {0}-Plattformen unterst\u00FCtzt XA Version {1} und aktuellere Versionen. Dies ist Version {2}.
J123=Der angeforderte Befehl hat eine implementierungsspezifische, nicht in der Spezifikation enthaltene Bedingung festgestellt, f\u00FCr die keine Nachricht implementiert ist (weitere Informationen finden Sie ggf. in der Datei derby.log auf dem Server).
08003.C.3=Die zugrunde liegende physische Verbindung ist veraltet oder geschlossen.
J122=Vor dem Befehl, mit dem der Zugriff auf die Datenbank angefordert wird (ACCRDB), wurde ein Befehl abgesetzt, der Services der Datenbank anfordert.
08003.C.2=Eine LOB-Methode wurde aufgerufen, nachdem die Verbindung geschlossen wurde.
J121=Der Benutzer ist nicht berechtigt, auf die Datenbank zuzugreifen.
08003.C.1=getConnection() ist f\u00FCr eine geschlossene Verbindung im Pool ung\u00FCltig.
J120=nicht angegeben
XJ110.S=Der Name der Prim\u00E4rtabelle muss ungleich null sein.
XJ078.S=Die relative Position ''{0}'' ist entweder kleiner als null oder f\u00FCr das aktuelle BLOB/CLOB zu gro\u00DF.
XJ207.S=Die Methode executeQuery kann nicht f\u00FCr ein Update verwendet werden.
24501.S=Der angegebene Cursor ist nicht ge\u00F6ffnet.
X0X95.S=Die Operation ''{0}'' kann f\u00FCr das Objekt ''{1}'' nicht ausgef\u00FChrt werden, weil es ein offenes ResultSet gibt, das von diesem Objekt abh\u00E4ngig ist.
22018=Ung\u00FCltiges Zeichenfolgenformat f\u00FCr den Typ {0}
XJ074.S=Ung\u00FCltiger Parameterwert ''{0}'' f\u00FCr Statement.setQueryTimeout(int seconds)
XJ203.S=Der Cursorname ''{0}'' wird bereits verwendet.
XJ070.S=In einer BLOB- oder CLOB-Methode wurde das Argument ''{0}'' mit negativer oder Nullposition \u00FCbergeben.
J118=Das Kennwort ist abgelaufen
J117=Im ACCSEC-Befehl fehlt das erforderliche Sicherheitstoken (SECTKN) oder das Token ist ung\u00FCltig
J116=Fehler\: Die Verwendung des Security Service kann nicht erneut versucht werden
J115=Das neue Kennwort ist ung\u00FCltig
J114=Die Benutzer-ID wurde entzogen
J113=Die Benutzer-ID oder das Kennwort ist ung\u00FCltig
J112=Die Benutzer-ID fehlt
58015.C=Das DDM-Objekt 0x{0} wird nicht unterst\u00FCtzt. Die Verbindung wurde beendet.
J111=Das Kennwort fehlt
J110=Der Sicherheitsmechanismus wird nicht unterst\u00FCtzt
XJ042.S=''{0}'' ist kein g\u00FCltiger Wert f\u00FCr das Merkmal ''{1}''.
XJ018.S=Der Spaltenname muss ungleich null sein.
08006.D=Die Datenbank ''{0}'' wird heruntergefahren.
08006.C=Es wurde ein Netzprotokollfehler gefunden. Die Verbindung wurde beendet. {0}
22005=Es wurde versucht, einen Datenwert des Typs ''{0}'' aus einem Datenwert des Typs ''{1}'' abzurufen.
XJ014.S=Kein Name f\u00FCr nicht benannte Sicherungspunkte.
22003=Der resultierende Wert liegt au\u00DFerhalb des Bereichs f\u00FCr den Datentyp {0}.
XJ099.S=Das Reader-/Datenstromobjekt enth\u00E4lt keine L\u00E4ngenzeichen.
XN009.S=Fehler beim Abrufen der L\u00E4nge des BLOB/CLOB. Die Ausnahme folgt.
XJ010.S=SAVEPOINT kann nicht abgesetzt werden, wenn autoCommit aktiviert ist.
J109=Es wurde eine inkorrekte TCP/IP-Client-Konfiguration festgestellt. Die IP-Adresse Ihres lokalen Hosts kann nicht bestimmt werden\: ''{0}''. Stellen Sie sicher, dass die IP-Adresse Ihrer Client-Maschine ordnungsgem\u00E4\u00DF konfiguriert ist.
XJ107.S=Falsche Auff\u00FCllung
J108=Der Security Manager erlaubt nicht den Zugriff auf das Systemmerkmal {0}.
XCY00.S=Ung\u00FCltiger Wert f\u00FCr das Merkmal ''{0}''\=''{1}''.
J107=Fehler f\u00FCr das Batch-Element
J105=Die Genauigkeit liegt bei mehr als 31 Stellen\!
J104=Das Objekt ist bereits geschlossen.
XJ095.S=Der Versuch, eine Aktion mit erforderlicher Berechtigung auszuf\u00FChren, ist gescheitert.
J103=Beim Herunterfahren des Netzservers wurde eine Ausnahme ausgel\u00F6st. {0}
J102=Beim Starten des Netzservers wurde eine Ausnahme ausgel\u00F6st. {0}
J101=Die Netzserverklasse {0} konnte nicht geladen werden. {1}. \u00DCberpr\u00FCfen Sie die Integrit\u00E4t Ihrer Datei derbynet.jar.
J100=Die Netzserverklasse {0} wurde nicht gefunden. Ihr Klassenpfad sollte derbynet.jar enthalten.
XJ103.S=Der Tabellenname muss ungleich null sein.
XN001.S=Innerhalb einer Arbeitseinheit ist eine Zur\u00FCcksetzung der Verbindung nicht zul\u00E4ssig.
XJ091.S=Ung\u00FCltiges Argument\: Der Parameterindex {0} ist kein OUT- oder INOUT-Parameter.
XJ067.S=Der SQL-Textzeiger ist null.
XJ063.S=Ung\u00FCltiger Parameterwert ''{0}'' f\u00FCr Statement.setMaxRows(int maxRows). Der Parameterwert muss >\= 0 sein.
XCL18.S=Der Datenstrom- oder LOB-Wert kann nicht mehrmals abgerufen werden
XCL14.S=Die Spaltenposition ''{0}'' befindet sich au\u00DFerhalb des Bereichs. Die Anzahl der Spalten f\u00FCr dieses ResultSet liegt bei ''{1}''.
08001.C.9=Es konnte keine Verbindung hergestellt werden, weil der Datenbankname {0} l\u00E4nger als f\u00FCr das Netzprotokoll maximal zul\u00E4ssig ist.
08001.C.8=Das Kennwort muss ungleich null sein.
08001.C.7=Die Benutzer-ID muss ungleich null sein.
08001.C.6=Die L\u00E4nge des Kennworts ({0}) liegt au\u00DFerhalb des g\u00FCltigen Bereichs von 1 bis {1}.
08001.C.5=Die L\u00E4nge der Benutzer-ID ({0}) liegt au\u00DFerhalb des g\u00FCltigen Bereichs von 1 bis {1}.
08001.C.4=Am Socket ''{0}'' kann kein Datenstrom ge\u00F6ffnet werden.
08001.C.3=SocketException\: ''{0}''
08001.C.2={0}\: Fehler beim Herstellen der Verbindung zum Server {1} am Port {2}. Nachricht\: {3}.
XJ128.S=F\u00FCr ''{0}'' konnte kein unwrap ausgef\u00FChrt werden.
08001.C.1=Das erforderliche Derby-DataSource-Merkmal {0} ist nicht gesetzt.
XJ124.S=Die Spalte kann nicht aktualisiert werden.
08004=Zur\u00FCckgewiesene Verbindung\: {0}
08003=Keine aktuelle Verbindung.
08000=Die Verbindung wurde von einer unbekannten Unterbrechung aufgehoben.
XJ088.S=Ung\u00FCltige Operation\: wasNull() wurde ohne abgerufene Daten aufgerufen.
XJ217.S=Der f\u00FCr diesen CLOB/BLOB angegebene Locator ist ung\u00FCltig
XJ084.U=Die Spalte entspricht keiner Spalte in der Basistabelle. ''{0}'' kann nicht f\u00FCr diese Spalte abgesetzt werden.
XJ05B.C=Das JDBC-Attribut ''{0}'' hat einen ung\u00FCltigen Wert (''{1}''). G\u00FCltige Werte sind\: ''{2}''.
XJ080.S=Die Ausf\u00FChrungsanweisung USING hat an Stelle von {1} Parametern {0} Parameter \u00FCbergeben.
XJ056.S=In einer XA-Verbindung kann AUTOCOMMIT ON nicht gesetzt werden.
XJ213.C=Das Verbindungsmerkmal traceLevel hat kein g\u00FCltiges Format f\u00FCr eine Zahl.
XCL31.S=Die Anweisung wurde geschlossen.
J031=Kollation f\u00FCr Zeichen-Datentypen
J030=Sicherungspfad f\u00FCr die Wiederherstellung der Datenbank aus der Sicherung
22011.S.1=Der Bereich f\u00FCr die Unterzeichenkette mit der relativen Position {0} und der L\u00E4nge {1} liegt au\u00DFerhalb des g\u00FCltigen Bereichs f\u00FCr die Zeichenkette\: {2}.
XN019.S=Fehler beim Ausf\u00FChren von {0}. Der Server hat Folgendes zur\u00FCckgegeben\: {1}
XJ028.C=Der URL ''{0}'' hat nicht das richtige Format.
XJ020.S=Der Objekttyp kann nicht in TYPE ''{0}'' konvertiert werden. Der Wert f\u00FCr java.sql.Types ist ung\u00FCltig oder der Objektzeiger ist ein Nullzeiger.
XJ117.S=Gem\u00E4\u00DF J2EE k\u00F6nnen Abfragen nicht im Batch-Modus verarbeitet werden.
XN015.S=Netzprotokollfehler\: Die angegebene Gr\u00F6\u00DFe des Eingabedatenstroms (Parameter {0}) liegt unter der tats\u00E4chlichen L\u00E4nge des Eingabedatenstroms.
XJ113.S=Die Datei {0} kann nicht ge\u00F6ffnet werden. {1}
J029=Sicherungspfad f\u00FCr die Erstellung der Datenbank aus der Sicherung
J028=Sicherungspfad f\u00FCr aktualisierende Wiederherstellung
J025=Verzeichnispfad protokollieren
XN011.S=Die L\u00E4nge {0} des Prozedurnamens liegt au\u00DFerhalb des g\u00FCltigen Bereichs von 1 bis {1}.
J023=Benutzerkennwort
J022=Benutzername
J021=Gebietsschema der Datenbank
XJ077.S=Bei dem Versuch, mit getBytes/getSubString das erste Byte/Zeichen des BLOB/CLOB-Musters zu lesen, wurde eine Ausnahme empfangen.
J020=Geheimer Chiffrierschl\u00FCssel
XJ206.S=Der SQL-Text ''{0}'' enth\u00E4lt keine Token.
XJ073.S=Die Daten in diesem BLOB oder CLOB sind nicht mehr verf\u00FCgbar. M\u00F6glicherweise wurde die Transaktion des BLOB/CLOB festgeschrieben, die Verbindung geschlossen oder freigegeben.
XJ202.S=Ung\u00FCltiger Cursorname ''{0}''
0A000.S=Nicht implementiertes Feature\: {0}.
XJ045.S=An Connection.setTransactionIsolation() wurde die ung\u00FCltige oder (derzeit) nicht unterst\u00FCtzte Isolationsstufe ''{0}'' \u00FCbergeben. Derzeit unterst\u00FCtzte Werte sind java.sql.Connection.TRANSACTION_SERIALIZABLE, java.sql.Connection.TRANSACTION_REPEATABLE_READ, java.sql.Connection.TRANSACTION_READ_COMMITTED und java.sql.Connection.TRANSACTION_READ_UNCOMMITTED.
J019=Externer Chiffrierschl\u00FCssel
J018=L\u00E4nge des Chiffrierschl\u00FCssels
J017=Verschl\u00FCsselungsalgorithmus
J016=Verschl\u00FCsselungsserviceprovider
J013=Datenbank erweitern
58014.C=Der DDM-Befehl 0x{0} wird nicht unterst\u00FCtzt. Die Verbindung wurde beendet.
XJ049.C=Es wurde in Konflikt stehende Erstellungsattribute angegeben.
J010=Datenbank auf Datentr\u00E4ger verschl\u00FCsseln
XJ017.S=Innerhalb des Ausl\u00F6secodes ist ein Sicherungspunktbefehl unzul\u00E4ssig.
58010.C=Es wurde ein Netzprotokollfehler gefunden. Es konnte keine Verbindung hergestellt werden, weil der Manager {0} der Version {1} vom Server nicht unterst\u00FCtzt wird.
XJ013.S=Keine ID f\u00FCr benannte Sicherungspunkte.
XJ041.C=Die Datenbank ''{0}'' konnte nicht erstellt werden. Details k\u00F6nnen Sie der n\u00E4chsten Ausnahme entnehmen.
XN008.S=Die Abfrageverarbeitung wurde wegen eines Fehlers auf dem Server abgebrochen.
XJ098.S=Der automatisch generierte Schl\u00FCsselwert {0} ist ung\u00FCltig.
42622=Der Name ''{0}'' ist zu lang. Die maximale L\u00E4nge liegt bei ''{1}''.
J008=keine Details
XJ106.S=Keine derartige Auff\u00FCllung
J007=Datenbank erstellen
J005=Derby herunterfahren
J004=Datenbankidentit\u00E4t
XJ094.S=Dieses Objekt ist bereits geschlossen.
XJ090.S=Ung\u00FCltiger Parameter\: calendar ist null.
XJ066.S=Ung\u00FCltiger Parameterwert ''{0}'' f\u00FCr Statement.setMaxFieldSize(int max).
3B502.S=Es wurde RELEASE oder ROLLBACK TO SAVEPOINT angegeben. Der Sicherungspunkt ist jedoch nicht vorhanden.
XJ062.S=Ung\u00FCltiger Parameterwert ''{0}'' f\u00FCr ResultSet.setFetchSize(int rows).
XCL13.S=Die Parameterposition ''{0}'' liegt au\u00DFerhalb des Bereichs. Die Parameteranzahl f\u00FCr diese vorbereitete Anweisung ist ''{1}''.
24000=Ung\u00FCltiger Cursorstatus; keine aktuelle Zeile.
XJ030.S=In einer verschachtelten Verbindung kann AUTOCOMMIT ON nicht gesetzt werden.
08004.C.12=Die Verbindung konnte nicht authentifiziert werden. Entweder sind die eingegebenen Berechtigungsnachweise ung\u00FCltig oder die Datenbank verwendet ein Passwortverschl\u00FCsselungsschema, das mit dem starken Passwortsubstitutions-Sicherheitsmechanismus nicht kompatibel ist. Wenn dieser Fehler nach dem Upgrade auftritt, erhalten Sie im Versionshinweis f\u00FCr DERBY-4483 Informationen zu Ihren M\u00F6glichkeiten.
08004.C.11=Keine Berechtigung des Benutzers ''{0}'' zum Erstellen von Datenbank''{1}'' [{2}].
08004.C.10=Systemberechtigung zum Erstellen von Datenbank ''{0}'' [{1}] kann nicht \u00FCberpr\u00FCft werden.
XJ123.S=Diese Methode muss aufgerufen werden, um Werte in der aktuellen Zeile oder der Einf\u00FCgezeile zu aktualisieren.
XN021.S=Ein Objekt des Typs {0} kann nicht in ein Objekt des Typs {1} umgeformt werden.
XJ087.S=Die Summe von position(''{0}'') und length(''{1}'') ist gr\u00F6\u00DFer als die Gr\u00F6\u00DFe der LOB plus eins.
XJ216.S=Die L\u00E4nge dieses BLOB/CLOB ist noch nicht verf\u00FCgbar. Wenn ein BLOB oder CLOB als ein Datenstrom zug\u00E4nglich ist, wird die L\u00E4nge erst dann verf\u00FCgbar, nachdem der gesamte Datenstrom verarbeitet wurde.
01J13=Es wurden zu viele Zeilen ({0}) f\u00FCr ein Integer zur\u00FCckgegeben. Der zur\u00FCckgegebene Wert wird abgeschnitten.
XJ083.U=''{0}'' ist nicht zul\u00E4ssig, weil das ResultSet nicht aktualisierbar ist.
01J12=Vom Server kann kein Nachrichtentext abgerufen werden. Lesen Sie die n\u00E4chste Ausnahme. Die gespeicherte Prozedur SYSIBM.SQLCAMESSAGE ist nicht auf dem Server installiert. Wenden Sie sich an den Datenbankadministrator.
01J10=Scroll-sensitive Ergebnislisten werden vom Server nicht unterst\u00FCtzt. Es erfolgt eine Neuzuordnung zu einem Cursor, der sich nur vorw\u00E4rts durch die Ergebnisliste bewegen kann.
XJ212.S=Ung\u00FCltige Attributsyntax\: {0}
XJ059.S=Eine Verbindung kann nicht beendet werden, solange noch eine globale Transaktion aktiv ist.
01J08=Der ResultSet-Typ {0} kann nicht ge\u00F6ffnet werden. Es wurde der ResultSet-Typ {1} ge\u00F6ffnet.
01J07=ResultSetHoldability wurde f\u00FCr eine globale Transaktion auf ResultSet.CLOSE_CURSORS_AT_COMMIT eingeschr\u00E4nkt.
01J06=Das ResultSet kann nicht aktualisiert werden. Die Abfrage wurde nicht f\u00FCr die Generierung eines aktualisierbaren ResultSet qualifiziert.
XJ023.S=die Datenmenge des Eingabedatenstroms entspricht nicht exakt der angeforderten L\u00E4nge.
XBM0N.D=Die JDBC-Treiberregistrierung mit java.sql.DriverManager ist gescheitert. Details enth\u00E4lt die n\u00E4chste Ausnahme.
XN018.S=Netzprotokollfehler\: Die angegebene Reader-Gr\u00F6\u00DFe (Parameter {0}) liegt unter der tats\u00E4chlichen Reader-L\u00E4nge.
58009.C.21=Netzprotokollausnahme\: Die SCLDTA-L\u00E4nge {0} ist f\u00FCr RDBNAM ung\u00FCltig. Die Verbindung wurde beendet.
58009.C.20=Netzprotokollausnahme\: Nur NVCM oder nur NVCS darf ungleich null sein. Die Verbindung wurde beendet.
XJ116.S=Zu einem Batch k\u00F6nnen nicht mehr als {0} Befehle hinzugef\u00FCgt werden.
XN014.S=Netzprotokollfehler\: Es wurde eine IOException festgestellt (Parameter {0}). Die verbleibenden Daten wurden mit 0x0 aufgef\u00FCllt. Nachricht\: {1}.
X0Y78.S.2={0}.executeQuery() wurde aufgerufen. Es wurde jedoch keine Ergebnisliste zur\u00FCckgegeben. Verwenden Sie f\u00FCr Nicht-Abfragen {1}.executeUpdate().
XJ112.S=Es wurde eine Sicherheitsausnahme festgestellt. Details enth\u00E4lt die n\u00E4chste Ausnahme.
X0Y78.S.1={0}.executeQuery() kann nicht aufgerufen werden, weil mehrere Ergebnislisten zur\u00FCckgegeben wurden. Verwenden Sie zum Abrufen mehrerer Ergebnisse {1}.execute().
XJ209.S=Die erforderliche gespeicherte Prozedur ist nicht auf dem Server installiert.
XN010.S=Der Prozedurname muss ungleich null sein.
XJ076.S=Das Positionsargument ''{0}'' \u00FCberschreitet die Gr\u00F6\u00DFe des BLOB/CLOB.
58009.C.19=Netzprotokollausnahme\: SECTKN wurde nicht zur\u00FCckgegeben. Die Verbindung wurde beendet.
58009.C.18=Netzprotokollausnahme\: Ung\u00FCltiges FDOCA-LID. Die Verbindung wurde beendet.
58009.C.17=Netzprotokollausnahme\: Beim Lesen des Eingabedatenstroms (Parameter {0}) wurde das Ende des Datenstroms vorzeitig erreicht. Die Verbindung wurde beendet.
58009.C.16=Netzprotokollausnahme\: Das n\u00E4chste DDS-Segment der Kette hat dieselbe ID wie das aktuelle Segment. Die Verbindung wurde beendet.
58009.C.15=Netzprotokollausnahme\: Die L\u00E4nge eines DDS-Segments war zum Ende der Syntaxanalyse der DDS-Kette gr\u00F6\u00DFer als 0. Die Verbindung wurde beendet.
58009.C.14=Netzprotokollausnahme\: Der Objekt-Stack ist zum Ende der Syntaxanalyse der DDS-Kette nicht leer. Die Verbindung wurde beendet.
58009.C.13=Netzprotokollausnahme\: Die DDM-Objektgruppe enth\u00E4lt weniger als 4 Bytes Daten. Die Verbindung wurde beendet.
42X74=Ung\u00FCltige Syntax f\u00FCr Anweisung CALL.
58009.C.12=Netzprotokollausnahme\: Der tats\u00E4chliche Codepunkt {0} stimmt nicht mit dem erwarteten Codepunkt {1} \u00FCberein. Die Verbindung wurde beendet.
XJ072.S=An eine BLOB- oder CLOB-Methode wurde ein Nullmuster oder eine Nullsuchzeichenfolge \u00FCbergeben.
58009.C.11=Die Verbindung wurde beendet, weil die Codierung nicht unterst\u00FCtzt wird.
58009.C.10=Netzprotokollausnahme\: Nur die VCM-L\u00E4nge oder nur die VCS-L\u00E4nge darf gr\u00F6\u00DFer als 0 sein. Die Verbindung wurde beendet.
58017.C=Der DDM-Parameterwert 0x{0} wird nicht unterst\u00FCtzt. M\u00F6glicherweise liegt eine eingegebene Hostvariable nicht in dem vom Server unterst\u00FCtzten Bereich. Die Verbindung wurde beendet.
XJ044.S=''{0}'' ist eine ung\u00FCltige Nachkommastellenangabe.
25001=Eine Verbindung kann nicht beendet werden, solange noch eine Transaktion aktiv ist.
08006.D.1=Die Datenbank ''{0}'' wurde gel\u00F6scht.
XJ048.C=Es wurden in Konflikt stehende Boot-Attribute angegeben\: {0}
XJ016.S=Die Methode ''{0}'' ist in einer vorbereiteten Anweisung nicht zul\u00E4ssig.
XJ012.S=''{0}'' ist bereits geschlossen.
XCY02.S=Die angeforderte Merkmal\u00E4nderung wird nicht unterst\u00FCtzt; ''{0}''\=''{1}''.
XJ040.C=Die Datenbank ''{0}'' konnte nicht mit dem Klassenladeprogramm {1} gestartet werden. Details k\u00F6nnen Sie der n\u00E4chsten Ausnahme entnehmen.
XJ097.S=Ein Sicherungspunkt, der nicht von dieser Verbindung erstellt wurde, kann nicht zur\u00FCckgesetzt oder freigegeben werden.
XJ105.S=Der DES-Schl\u00FCssel hat die falsche L\u00E4nge. Erwartete L\u00E4nge\: {0}, empfangene L\u00E4nge\: {1}
XIE08.S=Es gibt keine Spalte mit dem Namen {0}.
XJ093.S=Das BLOB/CLOB {0} ist zu lang. Die L\u00E4nge darf {1} nicht \u00FCberschreiten.
XJ069.S=F\u00FCr die Ausf\u00FChrungsanweisung USING sind keine SetXXX-Methoden zul\u00E4ssig.
XJ065.S=Ung\u00FCltiger Parameterwert ''{0}'' f\u00FCr Statement.setFetchSize(int rows).
X0Y79.S=Statement.executeUpdate() kann nicht mit einer Anweisung ausgef\u00FChrt werden, die ein ResultSet zur\u00FCckgibt.
42ZA1=Ung\u00FCltige SQL im Batch\: ''{0}''
XJ061.S=Die Methode ''{0}'' ist nur f\u00FCr Scroll-Cursor zul\u00E4ssig.
XCL16.S=Das ResultSet ist nicht ge\u00F6ffnet. Die Operation ''{0}'' ist unzul\u00E4ssig. Pr\u00FCfen Sie, ob das automatische Festschreiben inaktiviert ist.
XCL12.S=Es wurde versucht, einen Datenwert des Typs ''{0}'' in einen Datenwert des Typs ''{1}'' aufzunehmen.
XJ009.S=F\u00FCr das Aufrufen einer gespeicherten Prozedur ist die Verwendung von CallableStatement oder von Ausgabeparametern erforderlich\: {0}
XJ126.S=Diese Methode sollte nicht f\u00FCr sensitive dynamische Cursor aufgerufen werden.
XJ122.S=F\u00FCr diese Zeile wurden keine updateXXX-Methoden aufgerufen.
XJ001.U=Java-Ausnahme\: ''{1}\: {0}''.
XN020.S=Fehler bei der Umwandlung oder R\u00FCckwandlung eines benutzerdefinierten Typs\: {0}
XJ086.S=Wenn der Cursor nicht in der Einf\u00FCgezeile ist oder der gemeinsame Zugriff f\u00FCr dieses ResultSet-Objekt auf CONCUR_READ_ONLY gesetzt ist, kann diese Methode nicht aufgerufen werden.
XJ215.S=Es k\u00F6nnen keine weiteren java.sql.Clob/java.sql.Blob-Methoden aufgerufen werden, nachdem die free()-Methode aufgerufen oder nachdem die Blob/Clob-Transaktion ausgef\u00FChrt oder wiederholt (Rollback) wurde.
XJ082.U=BLOB/CLOB-Werte sind als Methodenparameter oder Empf\u00E4nger nicht zul\u00E4ssig.
57017.C=Eine Konvertierung von der Quellen-Codepage {0} in die Ziel-Codepage {1} ist nicht verf\u00FCgbar. Die Verbindung wurde beendet.
XJ211.S=W\u00E4hrend der Batch-Verarbeitung ist eine Kettenunterbrechungsausnahme eingetreten, nach der keine Wiederherstellung m\u00F6glich ist. Der Batch wird nicht atomar beendet.
XJ058.S=Eine globale Transaktion kann nicht \u00FCber die Verbindung zur\u00FCckgesetzt werden. Die Verarbeitung der COMMIT-Verarbeitung muss \u00FCber die Schnittstelle XAResource erfolgen.
42X30=Der Cursor ''{0}'' wurde nicht gefunden. Pr\u00FCfen Sie, ob das automatische Festschreiben inaktiviert ist.
XJ050.U=F\u00FCr die Datenbankversion {0} ist ein Upgrade erforderlich. Setzen Sie f\u00FCr den JDBC-Verbindungs-URL das Attribut ''upgrade\=true'', um ein Upgrade auf Version {1} zu erm\u00F6glichen.
org/apache/derby/loc/clientmessages_en.properties
#Tue Apr 19 06:13:09 PDT 2011
XJ022.S=Unable to set stream\: ''{0}''.
XN017.S=End of stream prematurely reached while reading the stream specified by parameter \#{0}. The remaining data expected by the server has been filled with 0x0.
XJ115.S=Unable to open resultSet with requested holdability {0}.
XJ04C.S=CallableStatement batch cannot contain output parameters.
XN013.S=Invalid scroll orientation.
XJ079.S=The length specified ''{0}'' exceeds the size of the BLOB/CLOB.
XJ111.S=Foreign table name can not be null
XJ208.S=Non-atomic batch failure. The batch was submitted, but at least one exception occurred on an individual member of the batch. Use getNextException() to retrieve the exceptions for specific batched elements.
XJ204.S=Unable to open result set with requested holdability {0}.
XJ071.S=Negative length argument ''{0}'' passed in a BLOB or CLOB method.
XJ200.S=Exceeded maximum number of sections {0}
22005.S.6=Unrecognized Java SQL type {0}.
22005.S.5=Invalid JDBC type for parameter {0}.
22005.S.4=Unrecognized JDBC type. Type\: {0}, columnCount\: {1}, columnIndex\: {2}.
22005.S.3=Unicode string cannot convert to Ebcdic string
22005.S.2=The required character converter is not available.
X0X0D.S=Invalid column array length ''{0}''. To return generated keys, column array must be of length 1 and contain only the identity column.
22005.S.1=Unable to convert a value of type ''{0}'' to type ''{1}'' \: the encoding is not supported.
58016.C=The DDM parameter 0x{0} is not supported. The connection has been terminated.
08006.C.6=Attempt to fully materialize lob data that is too large for the JVM. The connection has been terminated.
08006.C.5=Insufficient data while reading from the network - expected a minimum of {0} bytes and received only {1} bytes. The connection has been terminated.
08006.C.4=An error occurred during a deferred connect reset and the connection has been terminated. See chained exceptions for details.
08006.C.3=A communications error has been detected\: {0}.
08006.C.2=SocketException\: ''{0}''
08006.C.1=An error occurred during connect reset and the connection has been terminated. See chained exceptions for details.
0A000.S.7=The data type ''{0}'' is not supported.
0A000.S.5=Security mechanism ''{0}'' is not supported.
0A000.S.4=cancel() not supported by the server.
XJ015.M=Derby system shutdown.
0A000.S.3=resultSetHoldability property {0} not supported
0A000.S.2=JDBC method {0} is not supported by the server. Please upgrade the server.
XJ011.S=Cannot pass null for savepoint name.
08001.C.14=A connection could not be established because the server name (SRVNAM) has a length of zero or is larger than the maximum allowed by the network protocol.
0A000.S.1=JDBC method is not yet implemented.
08001.C.13=A connection could not be established because the external name (EXTNAM) has a length of zero or is larger than the maximum allowed by the network protocol.
XJ108.S=Illegal Block Size
08001.C.12=A connection could not be established because the password has a length of zero or is larger than the maximum allowed by the network protocol.
08001.C.11=A connection could not be established because the user id has a length of zero or is larger than the maximum allowed by the network protocol.
08001.C.10=A connection could not be established because the security token is larger than the maximum allowed by the network protocol.
XJ096.S=A resource bundle could not be found in the {0} package for {1}
XJ104.S=Shared key length is invalid\: {0}.
XN002.U=SECTKN was not returned.
XJ068.S=Only executeBatch and clearBatch allowed in the middle of a batch.
XJ100.S=The scale supplied by the registerOutParameter method does not match with the setter method. Possible loss of precision\!
XJ064.S=Invalid parameter value ''{0}'' for setFetchDirection(int direction).
0A000.C.6=The DRDA command {0} is not currently implemented. The connection has been terminated.
XJ008.S=Cannot rollback or release a savepoint when in auto-commit mode.
XJ125.S=This method should only be called on ResultSet objects that are scrollable (type TYPE_SCROLL_INSENSITIVE).
XJ05C.S=Cannot set holdability ResultSet.HOLD_CURSORS_OVER_COMMIT for a global transaction.
XJ121.S=Invalid operation at current cursor position.
XJ085.S=Stream has already been read and end-of-file reached and cannot be re-used.
XJ004.C=Database ''{0}'' not found.
XJ214.S=An IO Error occurred when calling free() on a CLOB or BLOB.
22003.S.3=Overflow occurred during numeric data type conversion of ''{0}'' to {1}.
08004.C.9=Missing permission for user ''{0}'' to shutdown system [{1}].
22003.S.2=Decimal may only be up to 31 digits.
08004.C.8=User ''{0}'' cannot issue a replication operation on database ''{1}''. Only the database owner can perform this operation.
22003.S.1=Year ({0}) exceeds the maximum ''{1}''.
08004.C.7=Connection refused to database ''{0}'' because it is in replication slave mode.
08004.C.6=User ''{0}'' cannot hard upgrade database ''{1}''. Only the database owner can perform this operation.
08004.C.5=User ''{0}'' cannot (re)encrypt database ''{1}''. Only the database owner can perform this operation.
08004.C.4=User ''{0}'' cannot shut down database ''{1}''. Only the database owner can perform this operation.
08004.C.3=Database connection refused.
08004.C.2=The connection was refused because the database {0} was not found.
XJ081.S=Invalid value ''{0}'' passed as parameter ''{1}'' to method ''{2}''
08004.C.1=Connection authentication failure occurred. Reason\: {0}.
XJ210.S=The load module name for the stored procedure on the server is not found.
XJ057.S=Cannot commit a global transaction using the Connection, commit processing must go thru XAResource interface.
22015.S.1=Invalid data conversion\: requested conversion would result in a loss of precision of {0}
XCL08.S=Cursor ''{0}'' is not on a row.
XJ081.C=Conflicting create/restore/recovery attributes specified.
J136=There was an XA transaction associated with the connection being closed. The transaction is going to be rolled back. The transaction Xid is {0}.
23502=Column ''{0}'' cannot accept a NULL value.
J135=The XA transaction timed out and is going to be rolled back. The transaction Xid is {0}.
J134=Negative values for the maxStatements property are not allowed\: {0}
J133=The user''s password for the connection
J132=The user name for the connection
J131=A PROTOCOL Data Stream Syntax Error was detected. Reason\: 0x{0}. Plaintext connection attempt to an SSL enabled server?
J130=A PROTOCOL Invalid FDOCA Description Error was detected
22007.S.181=The syntax of the string representation of a datetime value is incorrect.
XJ025.S=Input stream cannot have negative length.
2D521.S.2=COMMIT or ROLLBACK invalid for application execution environment.
2D521.S.1=setAutoCommit(true) invalid during global transaction.
22028=The string exceeds the maximum length of {0}.
XJ021.S=Type is not supported.
XJ118.S=Query batch requested on a non-query statement.
58009.C.9=Network protocol exception\: PKGNAMCSN length, {0}, is invalid at SQLAM {1}. The connection has been terminated.
XN016.S=Encountered an Exception while trying to verify the length of the stream specified by parameter \#{0}. The Exception had this message\: {1}.
58009.C.8=Network protocol exception\: SCLDTA length, {0}, is invalid for PKGID. The connection has been terminated.
58009.C.7=Network protocol exception\: SCLDTA length, {0}, is invalid for RDBCOLID. The connection has been terminated.
J129=an Open Query command was issued for a query which was already open
XJ114.S=Invalid cursor name ''{0}''
J128=the cursor is not open
J127=parseSQLDIAGGRP is not yet implemented
J126=a conversational protocol error was detected. Reason\: 0x{0}.
J125=a Data Descriptor Mismatch Error was detected.
XJ04B.S=Batch cannot contain a command that attempts to return a result set.
07000=At least one parameter to the current statement is uninitialized.
J124=the access relational database (ACCRDB) command cannot be issued because the database is already currently accessed
XN012.S=On {0} platforms, XA supports version {1} and above, this is version {2}
J123=the requested command encountered an unarchitected and implementation-specific condition for which there was no architected message (additional information may be available in the derby.log file on the server)
08003.C.3=The underlying physical connection is stale or closed.
J122=a command requesting services of the database was issued prior to the command requesting access to database (ACCRDB)
08003.C.2=Lob method called after connection was closed
J121=the user is not authorized to access the database
08003.C.1=getConnection() is not valid on a closed PooledConnection.
J120=not specified
XJ110.S=Primary table name can not be null
XJ078.S=Offset ''{0}'' is either less than zero or is too large for the current BLOB/CLOB.
XJ207.S=executeQuery method can not be used for update.
24501.S=The identified cursor is not open.
X0X95.S=Operation ''{0}'' cannot be performed on object ''{1}'' because there is an open ResultSet dependent on that object.
22018=Invalid character string format for type {0}.
XJ074.S=Invalid parameter value ''{0}'' for Statement.setQueryTimeout(int seconds).
XJ203.S=Cursor name ''{0}'' is already in use
XJ070.S=Negative or zero position argument ''{0}'' passed in a Blob or Clob method.
J118=password expired
J117=SECTKN missing on ACCSEC when it is required or it is invalid
J116=local security service non-retryable error
J115=new password invalid
J114=userid revoked
J113=userid or password invalid
J112=userid missing
58015.C=The DDM object 0x{0} is not supported. The connection has been terminated.
J111=password missing
J110=security mechanism not supported
XJ042.S=''{0}'' is not a valid value for property ''{1}''.
XJ018.S=Column name cannot be null.
08006.D=Database ''{0}'' shutdown.
08006.C=A network protocol error was encountered and the connection has been terminated\: {0}
22005=An attempt was made to get a data value of type ''{0}'' from a data value of type ''{1}''.
XJ014.S=No name for un-named savepoints.
22003=The resulting value is outside the range for the data type {0}.
XJ099.S=The Reader/Stream object does not contain length characters
XN009.S=Error obtaining length of BLOB/CLOB object, exception follows.
XJ010.S=Cannot issue savepoint when autoCommit is on.
J109=Detected an improper TCP/IP client configuration. Unable to determine the IP address of your local host\: ''{0}''. Make sure your client machine has a properly configured IP address.
XJ107.S=Bad Padding
J108=Security manager does not permit access to system property {0}.
XCY00.S=Invalid value for property ''{0}''\=''{1}''.
J107=Error for batch element \#
J105=Precision exceeds 31 digits\!
J104=The object is already closed.
XJ095.S=An attempt to execute a privileged action failed.
J103=An exception was thrown during network server shutdown. {0}
J102=An exception was thrown during network server startup. {0}
J101=Cannot load the network server class, {0}. {1} Check the integrity of your derbynet.jar file.
J100=Cannot find the network server class, {0}. Your class path should contain derbynet.jar.
XJ103.S=Table name can not be null
XN001.S=Connection reset is not allowed when inside a unit of work.
XJ091.S=Invalid argument\: parameter index {0} is not an OUT or INOUT parameter.
XJ067.S=SQL text pointer is null.
XJ063.S=Invalid parameter value ''{0}'' for Statement.setMaxRows(int maxRows). Parameter value must be >\= 0.
XCL18.S=Stream or LOB value cannot be retrieved more than once
XCL14.S=The column position ''{0}'' is out of range. The number of columns for this ResultSet is ''{1}''.
08001.C.9=A connection could not be established because the database name ''{0}'' is larger than the maximum length allowed by the network protocol.
08001.C.8=Password can not be null.
08001.C.7=User id can not be null.
08001.C.6=Password length ({0}) is outside the range of 1 to {1}.
08001.C.5=User id length ({0}) is outside the range of 1 to {1}.
08001.C.4=Unable to open stream on socket\: ''{0}''.
08001.C.3=SocketException\: ''{0}''
08001.C.2={0} \: Error connecting to server {1} on port {2} with message {3}.
XJ128.S=Unable to unwrap for ''{0}''
08001.C.1=Required Derby DataSource property {0} not set.
XJ124.S=Column not updatable.
08004=Connection refused \: {0}
08003=No current connection.
08000=Connection closed by unknown interrupt.
XJ088.S=Invalid operation\: wasNull() called with no data retrieved.
XJ217.S=The locator that was supplied for this CLOB/BLOB is invalid
XJ084.U=Column does not correspond to a column in the base table. Cannot issue ''{0}'' on this column.
XJ05B.C=JDBC attribute ''{0}'' has an invalid value ''{1}'', valid values are ''{2}''.
XJ080.S=USING execute statement passed {0} parameters rather than {1}.
XJ056.S=Cannot set AUTOCOMMIT ON when in an XA connection.
XJ213.C=The traceLevel connection property does not have a valid format for a number.
XCL31.S=Statement closed.
J031=collation for chararcter datatypes
J030=backup path for restoring database from backup
22011.S.1=The range specified for the substring with offset {0} and len {1} is out of range for the String\: {2}.
XN019.S=Error executing a {0}, server returned {1}.
XJ028.C=The URL ''{0}'' is not properly formed.
XJ020.S=Object type not convertible to TYPE ''{0}'', invalid java.sql.Types value, or object was null.
XJ117.S=Batching of queries not allowed by J2EE compliance.
XN015.S=Network protocol error\: the specified size of the InputStream, parameter \#{0}, is less than the actual InputStream length.
XJ113.S=Unable to open file {0} \: {1}
J029=backup path for creating database from backup
J028=backup path for rollforward recovery
J025=log directory path
XN011.S=Procedure name length {0} is not within the valid range of 1 to {1}.
J023=user password
J022=user name
J021=territory for the database
XJ077.S=Got an exception when trying to read the first byte/character of the BLOB/CLOB pattern using getBytes/getSubString.
J020=secret cryptographic key
XJ206.S=SQL text ''{0}'' has no tokens.
XJ073.S=The data in this BLOB or CLOB is no longer available. The BLOB/CLOB''s transaction may be committed, its connection closed or it has been freed.
XJ202.S=Invalid cursor name ''{0}''.
0A000.S=Feature not implemented\: {0}.
XJ045.S=Invalid or (currently) unsupported isolation level, ''{0}'', passed to Connection.setTransactionIsolation(). The currently supported values are java.sql.Connection.TRANSACTION_SERIALIZABLE, java.sql.Connection.TRANSACTION_REPEATABLE_READ, java.sql.Connection.TRANSACTION_READ_COMMITTED, and java.sql.Connection.TRANSACTION_READ_UNCOMMITTED.
J019=external cryptographic key
J018=cryptographic key length
J017=cryptographic algorithm
J016=cryptographic service provider
J013=upgrade database
58014.C=The DDM command 0x{0} is not supported. The connection has been terminated.
XJ049.C=Conflicting create attributes specified.
J010=encrypt database on disk
XJ017.S=No savepoint command allowed inside the trigger code.
58010.C=A network protocol error was encountered. A connection could not be established because the manager {0} at level {1} is not supported by the server.
XJ013.S=No ID for named savepoints.
XJ041.C=Failed to create database ''{0}'', see the next exception for details.
XN008.S=Query processing has been terminated due to an error on the server.
XJ098.S=The auto-generated keys value {0} is invalid
42622=The name ''{0}'' is too long. The maximum length is ''{1}''.
J008=no details
XJ106.S=No such padding
J007=create database
J006=deregister AutoloadedDriver
J005=shut down Derby
J004=database identity
J003={0}\: Shutting down Derby engine
XJ094.S=This object is already closed.
XJ090.S=Invalid parameter\: calendar is null.
XJ066.S=Invalid parameter value ''{0}'' for Statement.setMaxFieldSize(int max).
3B502.S=A RELEASE or ROLLBACK TO SAVEPOINT was specified, but the savepoint does not exist.
XJ062.S=Invalid parameter value ''{0}'' for ResultSet.setFetchSize(int rows).
XCL13.S=The parameter position ''{0}'' is out of range. The number of parameters for this prepared statement is ''{1}''.
24000=Invalid cursor state - no current row.
XJ030.S=Cannot set AUTOCOMMIT ON when in a nested connection.
08004.C.12=Connection authentication failure occurred. Either the supplied credentials were invalid, or the database uses a password encryption scheme not compatible with the strong password substitution security mechanism. If this error started after upgrade, refer to the release note for DERBY-4483 for options.
08004.C.11=Missing permission for user ''{0}'' to create database ''{1}'' [{2}].
08004.C.10=Cannot check system permission to create database ''{0}'' [{1}].
XJ123.S=This method must be called to update values in the current row or the insert row.
XN021.S=An object of type {0} cannot be cast to an object of type {1}.
XJ087.S=Sum of position(''{0}'') and length(''{1}'') is greater than the size of the LOB plus one.
XJ216.S=The length of this BLOB/CLOB is not available yet. When a BLOB or CLOB is accessed as a stream, the length is not available until the entire stream has been processed.
01J13=Number of rows returned ({0}) is too large to fit in an integer; the value returned will be truncated.
XJ083.U=''{0}'' not allowed because the ResultSet is not an updatable ResultSet.
01J12=Unable to obtain message text from server. See the next exception. The stored procedure SYSIBM.SQLCAMESSAGE is not installed on the server. Please contact your database administrator.
01J10=Scroll sensitive result sets are not supported by server; remapping to forward-only cursor
XJ212.S=Invalid attribute syntax\: {0}
XJ059.S=Cannot close a connection while a global transaction is still active.
01J08=Unable to open resultSet type {0}. ResultSet type {1} opened.
01J07=ResultSetHoldability restricted to ResultSet.CLOSE_CURSORS_AT_COMMIT for a global transaction.
01J06=ResultSet not updatable. Query does not qualify to generate an updatable ResultSet.
XJ023.S=Input stream did not have exact amount of data as the requested length.
XBM0N.D=JDBC Driver registration with java.sql.DriverManager failed. See next exception for details.
XN018.S=Network protocol error\: the specified size of the Reader, parameter \#{0}, is less than the actual InputStream length.
58009.C.21=Network protocol exception\: SCLDTA length, {0}, is invalid for RDBNAM. The connection has been terminated.
58009.C.20=Network protocol exception\: only one of NVCM, NVCS can be non-null. The connection has been terminated.
XJ116.S=No more than {0} commands may be added to a single batch.
XN014.S=Encountered an Exception while reading from the stream specified by parameter \#{0}. The remaining data expected by the server has been filled with 0x0. The Exception had this message\: {1}.
X0Y78.S.2={0}.executeQuery() was called but no result set was returned. Use {1}.executeUpdate() for non-queries.
XJ112.S=Security exception encountered, see next exception for details.
X0Y78.S.1={0}.executeQuery() cannot be called because multiple result sets were returned. Use {1}.execute() to obtain multiple results.
XJ209.S=The required stored procedure is not installed on the server.
XN010.S=Procedure name can not be null.
XJ076.S=The position argument ''{0}'' exceeds the size of the BLOB/CLOB.
58009.C.19=Network protocol exception\: SECTKN was not returned. The connection has been terminated.
58009.C.18=Network protocol exception\: invalid FDOCA LID. The connection has been terminated.
58009.C.17=Network protocol exception\: end of stream prematurely reached while reading InputStream, parameter \#{0}. The connection has been terminated.
58009.C.16=Network protocol exception\: DSS chained with same id at end of same id chain parse. The connection has been terminated.
58009.C.15=Network protocol exception\: DSS length not 0 at end of same id chain parse. The connection has been terminated.
58009.C.14=Network protocol exception\: collection stack not empty at end of same id chain parse. The connection has been terminated.
58009.C.13=Network protocol exception\: DDM collection contains less than 4 bytes of data. The connection has been terminated.
58009.C.12=Network protocol exception\: actual code point, {0}, does not match expected code point, {1}. The connection has been terminated.
42X74=Invalid CALL statement syntax.
XJ072.S=Null pattern or searchStr passed in to a BLOB or CLOB position method.
58009.C.11=The connection was terminated because the encoding is not supported.
58009.C.10=Network protocol exception\: only one of the VCM, VCS length can be greater than 0. The connection has been terminated.
58017.C=The DDM parameter value 0x{0} is not supported. An input host variable may not be within the range the server supports. The connection has been terminated.
XJ044.S=''{0}'' is an invalid scale.
25001=Cannot close a connection while a transaction is still active.
08006.D.1=Database ''{0}'' dropped.
XJ048.C=Conflicting boot attributes specified\: {0}
XJ016.S=Method ''{0}'' not allowed on prepared statement.
XJ012.S=''{0}'' already closed.
XCY02.S=The requested property change is not supported ''{0}''\=''{1}''.
XJ040.C=Failed to start database ''{0}'' with class loader {1}, see the next exception for details.
XJ097.S=Cannot rollback or release a savepoint that was not created by this connection.
XJ105.S=DES key has the wrong length, expected length {0}, got length {1}.
XIE08.S=There is no column named\: {0}.
XJ093.S=Length of BLOB/CLOB, {0}, is too large. The length cannot exceed {1}.
XJ069.S=No SetXXX methods allowed in case of USING execute statement.
XJ065.S=Invalid parameter value ''{0}'' for Statement.setFetchSize(int rows).
X0Y79.S=Statement.executeUpdate() cannot be called with a statement that returns a ResultSet.
42ZA1=Invalid SQL in Batch\: ''{0}''.
XJ061.S=The ''{0}'' method is only allowed on scroll cursors.
XCL16.S=ResultSet not open. Operation ''{0}'' not permitted. Verify that autocommit is OFF.
XCL12.S=An attempt was made to put a data value of type ''{0}'' into a data value of type ''{1}''.
XJ009.S=Use of CallableStatement required for stored procedure call or use of output parameters\: {0}
XJ126.S=This method should not be called on sensitive dynamic cursors.
XJ122.S=No updateXXX methods were called on this row.
XJ001.U=Java exception\: ''{1}\: {0}''.
XN020.S=Error marshalling or unmarshalling a user defined type\: {0}
XJ086.S=This method cannot be invoked while the cursor is not on the insert row or if the concurrency of this ResultSet object is CONCUR_READ_ONLY.
XJ215.S=You cannot invoke other java.sql.Clob/java.sql.Blob methods after calling the free() method or after the Blob/Clob''s transaction has been committed or rolled back.
XJ082.U=BLOB/CLOB values are not allowed as method parameters or receiver.
57017.C=There is no available conversion for the source code page, {0}, to the target code page, {1}. The connection has been terminated.
XJ211.S=Non-recoverable chain-breaking exception occurred during batch processing. The batch is terminated non-atomically.
XJ058.S=Cannot rollback a global transaction using the Connection, commit processing must go thru XAResource interface.
42X30=Cursor ''{0}'' not found. Verify that autocommit is OFF.
XJ050.U=Database requires upgrade from version {0}, set the attribute ''upgrade\=true'' on the JDBC connection URL to allow upgrade to version {1}.
org/apache/derby/loc/clientmessages_es.properties
#Tue Apr 19 06:13:11 PDT 2011
XJ022.S=No es posible establecer la corriente\: ''{0}''.
XN017.S=Error de protocolo de red\: se ha alcanzado de forma prematura el final de la corriente, par\u00E1metro \#{0}. Los datos restantes se han rellenado con 0x0.
XJ115.S=No se puede abrir resultSet con la capacidad de retenci\u00F3n solicitada {0}.
XJ04C.S=El proceso por lotes CallableStatement no puede contener par\u00E1metros de salida.
XN013.S=Orientaci\u00F3n de desplazamiento no v\u00E1lida.
XJ079.S=La longitud ''{0}'' especificada supera el tama\u00F1o del BLOB/CLOB.
XJ111.S=El nombre de tabla for\u00E1nea no puede ser nulo
XJ208.S=Anomal\u00EDa de proceso por lotes no at\u00F3mico. Se ha sometido el proceso por lotes, pero se ha producido como m\u00EDnimo una excepci\u00F3n en un miembro individual del proceso por lotes. Utilice getNextException() para recuperar las excepciones para elementos procesados por lotes espec\u00EDficos.
XJ204.S=No se puede abrir el conjunto de resultados con la capacidad de retenci\u00F3n solicitada {0}.
XJ071.S=Se ha pasado un argumento de longitud negativo ''{0}'' en un m\u00E9todo BLOB o CLOB.
XJ200.S=Se ha excedido el n\u00FAmero m\u00E1ximo de secciones {0}
22005.S.6=Tipo SQL Java no reconocido {0}.
22005.S.5=Tipo JDBC no v\u00E1lido para el par\u00E1metro {0}.
22005.S.4=Tipo JDBC no reconocido. Tipo\: {0}, columnCount\: {1}, columnIndex\: {2}.
22005.S.3=La serie Unicode no se puede convertir a la serie Ebcdic
22005.S.2=El convertidor de caracteres necesario no est\u00E1 disponible.
X0X0D.S=Longitud de matriz de columna no v\u00E1lida ''{0}''. Para devolver claves generadas, la matriz de columna debe ser de longitud 1 y contener la columna de identidad.
22005.S.1=No se ha podido convertir un valor del tipo ''{0}'' al tipo ''{1}'' \: la codificaci\u00F3n no est\u00E1 soportada.
58016.C=El par\u00E1metro de DDM 0x{0} no est\u00E1 soportado. La conexi\u00F3n se ha finalizado.
08006.C.6=Se ha intentado materializar por completo datos lob demasiado grandes para JVM. La conexi\u00F3n se ha finalizado.
08006.C.5=No hay suficientes datos mientras se lee desde la red - se esperaba un m\u00EDnimo de {0} y s\u00F3lo se han recibido {1} bytes. La conexi\u00F3n se ha finalizado.
08006.C.4=Se ha producido un error durante un restablecimiento de conexi\u00F3n diferido y la conexi\u00F3n se ha finalizado. Consulte las excepciones encadenadas para obtener detalles.
08006.C.3=Se ha detectado un error de comunicaciones\: {0}.
08006.C.2=SocketException\: ''{0}''
08006.C.1=Se ha producido un error durante un restablecimiento de la conexi\u00F3n y se ha finalizado la conexi\u00F3n. Consulte las excepciones encadenadas para obtener detalles.
0A000.S.7=El tipo de datos ''{0}'' no est\u00E1 soportado.
0A000.S.5=El mecanismo de seguridad ''{0}'' no est\u00E1 soportado.
0A000.S.4=El servidor no da soporte a sercancel().
XJ015.M=Conclusi\u00F3n del sistema Derby.
0A000.S.3=La propiedad resultSetHoldability {0} no est\u00E1 soportada
0A000.S.2=El m\u00E9todo JDBC {0} no est\u00E1 soportado por el servidor. Actualice el servidor.
XJ011.S=No se puede pasar un valor nulo como nombre de SAVEPOINT.
0A000.S.1=El m\u00E9todo JDBC todav\u00EDa no se ha implementado.
XJ108.S=Tama\u00F1o de bloque no permitido
08001.C.12=No se ha podido establecer una conexi\u00F3n debido a que la contrase\u00F1a tiene una longitud de cero o es mayor que el m\u00E1ximo que permite el protocolo de red.
08001.C.11=No se ha podido establecer una conexi\u00F3n debido a que el id de usuario tiene una longitud de cero o es mayor que el m\u00E1ximo que permite el protocolo de red.
08001.C.10=No se ha podido establecer una conexi\u00F3n debido a que la se\u00F1al de seguridad es mayor que el m\u00E1ximo que permite el protocolo de red.
XJ096.S=No se ha encontrado un paquete de recursos en el paquete {0} para {1}
XJ104.S=La longitud de clave compartida no es v\u00E1lida\: {0}.
XN002.U=No se ha devuelto SECTKN.
XJ068.S=S\u00F3lo est\u00E1n permitidos executeBatch y clearBatch en mitad de un proceso por lotes.
XJ100.S=La escala proporcionada por el m\u00E9todo registerOutParameter no coincide con el m\u00E9todo setter. \u00A1Posible p\u00E9rdida de precisi\u00F3n\!
XJ064.S=Valor del par\u00E1metro no v\u00E1lido ''{0}'' para setFetchDirection(int direction).
0A000.C.6=El mandato DRDA {0} no est\u00E1 actualmente implementado. La conexi\u00F3n se ha finalizado.
XJ008.S=No se puede retrotraer o liberar un SAVEPOINT en modalidad AutoCommit.
XJ125.S=Este m\u00E9todo s\u00F3lo debe llamarse en objetos ResultSet que sean desplazables (tipo TYPE_SCROLL_INSENSITIVE).
XJ05C.S=No se puede establecer la constante de retenci\u00F3n ResultSet.HOLD_CURSORS_OVER_COMMIT para una transacci\u00F3n global.
XJ121.S=Operaci\u00F3n no v\u00E1lida en la posici\u00F3n actual del cursor.
XJ085.S=La corriente ya se ha le\u00EDdo, se ha alcanzado el fin de archivo y no se puede volver a utilizar.
XJ004.C=Base de datos ''{0}'' no encontrada.
XJ214.S=Se ha producido un error de E/S al llamar a free() en un CLOB o BLOB.
22003.S.3=Se ha producido un desbordamiento durante la conversi\u00F3n del tipo de datos num\u00E9rico de ''{0}'' a {1}.
08004.C.9=Falta permiso para el usuario ''{0}'' para apagar el sistema [{1}].
22003.S.2=El decimal s\u00F3lo puede tener un m\u00E1ximo de 31 d\u00EDgitos.
08004.C.8=El usuario ''{0}'' no puede emitir una operaci\u00F3n de repetici\u00F3n en la base de datos ''{1}''. S\u00F3lo el propietario de la base de datos puede realizar esta operaci\u00F3n.
22003.S.1=El a\u00F1o ({0}) excede el m\u00E1ximo ''{1}''.
08004.C.7=La conexi\u00F3n con la base de datos ''{0}'' ha sido rechazada porque est\u00E1 en modo esclavo de r\u00E9plica.
08004.C.6=El usuario ''{0}'' no puede efectuar un actualizaci\u00F3n completa (hard upgrade) de la base de datos ''{1}''. S\u00F3lo el propietario de la base de datos puede realizar esta operaci\u00F3n.
08004.C.5=El usuario ''{0}'' no puede (re)cifrar la base de datos ''{1}''. S\u00F3lo el propietario de la base de datos puede realizar esta operaci\u00F3n.
08004.C.4=El usuario ''{0}'' no puede cerrar la sesi\u00F3n de la base de datos ''{1}''. S\u00F3lo el propietario de la base de datos puede realizar esta operaci\u00F3n.
08004.C.3=Conexi\u00F3n de base de datos rechazada.
08004.C.2=Se ha rechazado la conexi\u00F3n porque no se ha encontrado la base de datos {0}.
XJ081.S=Se ha pasado el valor ''{0}'' no v\u00E1lido como par\u00E1metro ''{1}'' al m\u00E9todo ''{2}''
08004.C.1=Se ha producido una anomal\u00EDa de autenticaci\u00F3n de conexi\u00F3n. Raz\u00F3n\: {0}.
XJ210.S=No se ha encontrado el nombre del m\u00F3dulo de carga para el procedimiento almacenado en el servidor.
XJ057.S=No se puede comprometer una transacci\u00F3n global mediante la conexi\u00F3n, el proceso de comprometer debe ir a trav\u00E9s de la interfaz XAResource.
22015.S.1=Conversi\u00F3n de datos no v\u00E1lida\: la conversi\u00F3n solicitada producir\u00EDa una p\u00E9rdida de precisi\u00F3n de {0}
XCL08.S=El cursor ''{0}'' no est\u00E1 sobre una fila.
XJ081.C=Se han especificado atributos de creaci\u00F3n/restauraci\u00F3n/recuperaci\u00F3n que entran en conflicto.
J136=Hubo una transacci\u00F3n XA asociada con la conexi\u00F3n que se cierra. Se va a revertir la transacci\u00F3n. El Xid de transacci\u00F3n es {0}.
23502=La columna ''{0}'' no puede aceptar un valor NULL.
J135=Expir\u00F3 el tiempo de espera de la transacci\u00F3n XA y se va a revertir. El Xid de transacci\u00F3n es {0}.
J134=No se permiten valores negativos para la propiedad maxStatements\: {0}
J133=La contrase\u00F1a de usuario para la conexi\u00F3n
J132=El nombre de usuario para la conexi\u00F3n
J131=Se ha detectado un error de sintaxis de la secuencia de datos del protocolo. Raz\u00F3n\: 0x{0}. \u00BFSe ha intentado establecer una conexi\u00F3n no cifrada con un servidor SSL?
J130=Se ha detectado un error de descripci\u00F3n de FDOCA no v\u00E1lido de PROTOCOL
22007.S.181=La sintaxis de la representaci\u00F3n de serie de un valor de fecha y hora es incorrecta.
XJ025.S=La corriente de entrada no puede tener una longitud negativa.
2D521.S.2=COMMIT o ROLLBACK no v\u00E1lido para el entorno de ejecuci\u00F3n de aplicaci\u00F3n.
2D521.S.1=setAutoCommit(true) no v\u00E1lido durante una transacci\u00F3n global.
22028=La serie excede la longitud m\u00E1xima de {0}.
XJ021.S=El tipo no est\u00E1 soportado.
XJ118.S=Se ha solicitado un proceso por lotes de consulta en una sentencia que no referente a una consulta.
58009.C.9=Excepci\u00F3n de protocolo de red\: la longitud PKGNAMCSN, {0}, no es v\u00E1lida en SQLAM {1}. La conexi\u00F3n se ha finalizado.
XN016.S=Error de protocolo de red\: se ha encontrado un error en la verificaci\u00F3n de longitud de corriente, par\u00E1metro \#{0}. Mensaje\: {1}.
58009.C.8=Excepci\u00F3n de protocolo de red\: la longitud de SCLDTA, {0}, no es v\u00E1lida para PKGID. La conexi\u00F3n se ha finalizado.
58009.C.7=Excepci\u00F3n de protocolo de red\: la longitud de SCLDTA, {0}, no es v\u00E1lida para RDBCOLID. La conexi\u00F3n se ha finalizado.
J129=se ha emitido un mandato Open Query (Abrir consulta) para una consulta que ya estaba abierta
XJ114.S=Nombre de cursor no v\u00E1lido ''{0}''
J128=el cursor no est\u00E1 abierto
J127=parseSQLDIAGGRP todav\u00EDa no se ha implementado
J126=se ha detectado un error de protocolo de conversaci\u00F3n. Raz\u00F3n\: 0x{0}.
J125=se ha detectado un error de discrepancia de descriptor de datos.
XJ04B.S=El proceso por lotes no puede contener un mandatos que intente devolver un juego de resultados.
07000=Al menos un par\u00E1metro de la sentencia actual no est\u00E1 inicializado.
J124=el mandato de acceso a base de datos relacional (ACCRDB) no se puede emitir porque ya se ha accedido actualmente a la base de datos
XN012.S=En plataformas {0}, XA soporta la versi\u00F3n {1} y superiores, \u00E9sta es la versi\u00F3n {2}
J123=el comando solicitado encontr\u00F3 una condici\u00F3n no estructurada y espec\u00EDfica de la implementaci\u00F3n para la que no hab\u00EDa ning\u00FAn mensaje estructurado (puede encontrar m\u00E1s informaci\u00F3n al respecto en el archivo derby.log del servidor)
08003.C.3=La conexi\u00F3n f\u00EDsica subyacente est\u00E1 obsoleta o cerrada.
J122=se ha emitido un mandato que solicita servicios de la base de datos antes del mandato que solicita acceso a la base de datos (ACCRDB)
08003.C.2=El m\u00E9todo Lob llamado despu\u00E9s de una conexi\u00F3n se ha cerrado
J121=el usuario no tiene autorizaci\u00F3n para acceder a la base de datos
08003.C.1=getConnection() no v\u00E1lido en una Conexi\u00F3nAgrupada cerrada.
J120=no se ha especificado
XJ110.S=El nombre de tabla primaria no puede ser nulo
XJ078.S=El desplazamiento ''{0}'' es inferior a cero o es demasiado grande para el BLOB/CLOB actual.
XJ207.S=No se puede utilizar el m\u00E9todo executeQuery para la actualizaci\u00F3n.
24501.S=El cursor identificado no est\u00E1 abierto.
X0X95.S=No se puede realizar la operaci\u00F3n ''{0}'' sobre el objeto ''{1}'' porque existe un ResultSet abierto que depende de ese objeto.
22018=Formato de serie de caracteres no v\u00E1lido para tipo {0}.
XJ074.S=Valor del par\u00E1metro no v\u00E1lido ''{0}'' para Statement.setQueryTimeout(int segundos).
XJ203.S=El nombre de cursor ''{0}'' ya se utiliza
XJ070.S=Se ha pasado un argumento de posici\u00F3n negativo o cero ''{0}'' en un m\u00E9todo Blob o Clob.
J118=contrase\u00F1a caducada
J117=falta SECTKN en ACCSEC cuando es necesario o no es v\u00E1lido
J116=error no reintentable del servicio de seguridad local
J115=contrase\u00F1a nueva no v\u00E1lida
J114=id de usuario revocado
J113=id de usuario o contrase\u00F1a no v\u00E1lidos
J112=falta id de usuario
58015.C=El objeto de DDM 0x{0} no est\u00E1 soportado. La conexi\u00F3n se ha finalizado.
J111=falta contrase\u00F1a
J110=mecanismo de seguridad no soportado
XJ042.S=''{0}'' no es un valor v\u00E1lido para la propiedad ''{1}''.
XJ018.S=El nombre de columna no puede ser nulo.
08006.D=Conclusi\u00F3n de la base de datos ''{0}''.
08006.C=Se ha encontrado un error de protocolo de red y se ha finalizado la conexi\u00F3n\: {0}
22005=Se ha intentado obtener un valor de datos de tipo ''{0}'' de un valor de datos de tipo ''{1}''.
XJ014.S=No hay nombre para SAVEPOINT sin nombre.
22003=El valor resultante queda fuera del rango para el tipo de datos {0}.
XJ099.S=El objeto Reader/Stream (Lector/Corriente) no contiene caracteres de longitud
XN009.S=Error al obtener la longitud del objeto BLOB/CLOB, a continuaci\u00F3n se obtiene una excepci\u00F3n.
XJ010.S=No se puede emitir un SAVEPOINT cuando autoCommit est\u00E1 activado.
J109=Se ha detectado una configuraci\u00F3n de cliente TCP/IP incorrecto. No se puede determinar la direcci\u00F3n IP del sistema principal local\: ''{0}''. Aseg\u00FArese de que la m\u00E1quina cliente tenga configurada correctamente la direcci\u00F3n IP.
XJ107.S=Relleno incorrecto
J108=El gestor de seguridad no permite acceder a la propiedad del sistema {0}.
XCY00.S=Valor no v\u00E1lido para la propiedad ''{0}''\=''{1}''.
J107=Error para el elemento del proceso por lotes \#
J105=\u00A1La precisi\u00F3n excede de 31 d\u00EDgitos\!
J104=El objeto ya est\u00E1 cerrado.
XJ095.S=Ha fallado un intento de ejecutar una acci\u00F3n privilegiada.
J103=Se ha generado una excepci\u00F3n al cerrar el servidor de red. {0}
J102=Se ha generado una excepci\u00F3n al iniciar el servidor de red. {0}
J101=No se puede cargar la clase del servidor de red, {0}. {1} Compruebe la integridad del archivo derbynet.jar.
J100=No se puede encontrar la clase del servidor de red, {0}. La v\u00EDa de acceso a la clase deber\u00EDa contener derbynet.jar.
XJ103.S=El nombre de tabla no puede ser nulo
XN001.S=No se permite un restablecimiento de la conexi\u00F3n dentro de una unidad de trabajo.
XJ091.S=Argumento no v\u00E1lido\: el \u00EDndice de par\u00E1metro {0} no es un par\u00E1metro OUT o INOUT.
XJ067.S=El puntero de texto SQL es nulo.
XJ063.S=Valor del par\u00E1metro no v\u00E1lido ''{0}'' para Statement.setMaxRows(int maxRows). El valor del par\u00E1metro debe ser >\= 0.
XCL18.S=El valor de flujo o LOB no se puede recuperar m\u00E1s de una vez
XCL14.S=La posici\u00F3n de la columna ''{0}'' est\u00E1 fuera de rango. El n\u00FAmero de columnas de esta sentencia ResultSet es ''{1}''.
08001.C.9=No se ha podido establecer una conexi\u00F3n debido a que el nombre de base de datos ''{0}'' es mayor que la longitud m\u00E1xima que permite el protocolo de red.
08001.C.8=La contrase\u00F1a no puede ser nula.
08001.C.7=El id de usuario no puede ser nulo.
08001.C.6=La longitud de la contrase\u00F1a ({0}) est\u00E1 fuera del rango entre 1 y {1}.
08001.C.5=El id de usuario ({0}) est\u00E1 fuera del rango entre 1 y {1}.
08001.C.4=No se puede abrir la corriente en el socket\: ''{0}''.
08001.C.3=SocketException\: ''{0}''
08001.C.2={0} \: Error al conectarse al servidor {1} en el puerto {2} con el mensaje {3}.
XJ128.S=No se ha podido deshacer el recorte para ''{0}''
08001.C.1=La propiedad de Derby DataSource {0} necesaria no est\u00E1 establecida.
XJ124.S=Columna no actualizable.
08004=Conexi\u00F3n rechazada\: {0}
08003=Sin conexi\u00F3n actual.
08000=Conexi\u00F3n cerrada por una interrupci\u00F3n desconocida.
XJ088.S=Operaci\u00F3n no v\u00E1lida\: se ha llamado a wasNull() sin datos recuperados.
XJ217.S=El localizador suministrado para este CLOB/LOB no es v\u00E1lido.
XJ084.U=La columna no corresponde a una columna de la tabla base. No se puede emitir ''{0}'' en esta columna.
XJ05B.C=El atributo de JDBC ''{0}'' tiene un valor ''{1}'' no v\u00E1lido, los valores v\u00E1lidos son ''{2}''.
XJ080.S=USING execute statement ha pasado {0} par\u00E1metros en lugar de {1}.
XJ056.S=No se puede establecer AUTOCOMMIT ON si est\u00E1 en una conexi\u00F3n XA.
XJ213.C=La propiedad de conexi\u00F3n traceLevel no tiene un formato v\u00E1lido para un n\u00FAmero.
XCL31.S=Sentencia cerrada.
J031=ordenaci\u00F3n para tipos de datos de caracteres
J030=ruta de acceso de copia de seguridad para restaurar base de datos a partir de copia de seguridad
22011.S.1=El rango especificado para la subcadena con el desplazamiento {0} y el largo {1} est\u00E1 fuera de rango para la cadena\: {2}.
XN019.S=Error al ejecutar {0}, el servidor ha devuelto {1}.
XJ028.C=El URL ''{0}'' no est\u00E1 formado correctamente.
XJ020.S=El tipo de objeto no es convertible a TYPE ''{0}'', valor java.sql.Types no v\u00E1lido o el objeto es nulo.
XJ117.S=El proceso por lotes de consultas no est\u00E1 permitido por conformidad a J2EE.
XN015.S=Error de protocolo de red\: el tama\u00F1o especificado de InputStream, par\u00E1metro \#{0}, es inferior a la longitud real de InputStream.
XJ113.S=No se puede abrir el archivo {0} \: {1}
J029=ruta de acceso de copia de seguridad para crear base de datos a partir de copia de seguridad
J028=v\u00EDa de acceso de seguridad para la recuperaci\u00F3n en avance
J025=v\u00EDa de acceso del directorio de anotaci\u00F3n cronol\u00F3gica
XN011.S=La longitud del nombre de procedimiento {0} no est\u00E1 dentro del rango v\u00E1lido entre 1 y {1}.
J023=contrase\u00F1a de usuario
J022=nombre usuario
J021=territorio de la base de datos
XJ077.S=Se ha obtenido una excepci\u00F3n al intentar leer el primer byte/car\u00E1cter del patr\u00F3n BLOB/CLOB mediante getBytes/getSubString.
J020=clave de cifrado secreta
XJ206.S=El texto SQL ''{0}'' no contiene se\u00F1ales.
XJ073.S=Los datos de este BLOB o CLOB ya no est\u00E1n disponibles. La transacci\u00F3n BLOB / CLOB''s puede confirmarse, su conexi\u00F3n puede cerrarse o se ha liberado.
XJ202.S=Nombre de cursor no v\u00E1lido ''{0}''.
0A000.S=Caracter\u00EDstica no implementada\: {0}.
XJ045.S=Se ha pasador un nivel de aislamiento no v\u00E1lido o no soportado (actualmente), ''{0}'', a Connection.setTransactionIsolation(). Los valores a los que actualmente se da soporte son java.sql.Connection.TRANSACTION_SERIALIZABLE, java.sql.Connection.TRANSACTION_REPEATABLE_READ, java.sql.Connection.TRANSACTION_READ_COMMITTED y java.sql.Connection.TRANSACTION_READ_UNCOMMITTED.
J019=clave de cifrado externa
J018=longitud de clave de cifrado
J017=algoritmo criptogr\u00E1fico
J016=suministrador de servicio criptogr\u00E1fico
J013=actualizar base de datos
58014.C=El mandato de DDM 0x{0} no est\u00E1 soportado. La conexi\u00F3n se ha finalizado.
XJ049.C=Se han especificado atributos de creaci\u00F3n que entran en conflicto.
J010=cifrar base de datos en disco
XJ017.S=No se permite el mandato SAVEPOINT dentro de un c\u00F3digo de desencadenantes.
58010.C=Se ha encontrado un error de protocolo de red. No se ha podido establecer una conexi\u00F3n debido a que el gestor {0} en el nivel {1} no est\u00E1 soportado en el servidor.
XJ013.S=No hay ID para SAVEPOINT con nombre.
XJ041.C=No se ha podido crear la base de datos ''{0}'', consulte la excepci\u00F3n siguiente para obtener detalles.
XN008.S=El proceso de la consulta se ha finalizado debido a un error en el servidor.
XJ098.S=El valor de claves generadas autom\u00E1ticamente {0} no es v\u00E1lido
42622=El nombre ''{0}'' es demasiado largo. La longitud m\u00E1xima es ''{1}''.
J008=sin detalles
XJ106.S=No existe dicho relleno
J007=crear base de datos
J005=concluir Derby
J004=identidad de base de datos
XJ094.S=Este objeto ya est\u00E1 cerrado.
XJ090.S=Par\u00E1metro no v\u00E1lido\: el calendario es nulo.
XJ066.S=Valor del par\u00E1metro no v\u00E1lido ''{0}'' para Statement.setMaxFieldSize(int max).
3B502.S=Se ha especificado RELEASE o ROLLBACK TO SAVEPOINT, pero no existe ning\u00FAn SAVEPOINT.
XJ062.S=Valor del par\u00E1metro no v\u00E1lido ''{0}'' para ResultSet.setFetchSize(int rows).
XCL13.S=La posici\u00F3n del par\u00E1metro ''{0}'' est\u00E1 fuera de rango. El n\u00FAmero de par\u00E1metros de esta sentencia preparada es ''{1}''.
24000=Estado del cursor no v\u00E1lido - sin fila actual.
XJ030.S=No se puede establecer AUTOCOMMIT ON si est\u00E1 en una conexi\u00F3n anidada.
08004.C.12=Se ha producido una anomal\u00EDa de autenticaci\u00F3n de conexi\u00F3n. Las credenciales proporcionadas no son v\u00E1lidas o la base de datos utiliza un esquema de cifrado de contrase\u00F1as incompatible con el mecanismo de seguridad de contrase\u00F1as seguras de sustituci\u00F3n. Si este error se inici\u00F3 despu\u00E9s de la actualizaci\u00F3n, consulte las notas de la versi\u00F3n para ver las opciones de DERBY-4483.
08004.C.11=Falta permiso para el usuario ''{0}'' para crear la base de datos ''{1}'' [{2}].
08004.C.10=No se puede seleccionar permiso del sistema para crear la base de datos ''{0}'' [{1}].
XJ123.S=Este m\u00E9todo debe llamarse para actualizar los valores de la fila actual o de la fila de inserci\u00F3n.
XN021.S=Un objeto de tipo {0} no se puede convertir en un objeto de tipo {1}.
XJ087.S=La suma de la posici\u00F3n(''{0}'') y la longitud(''{1}'') es mayor que el tama\u00F1o del LOB m\u00E1s uno.
XJ216.S=La longitud de este BLOB/CLOB a\u00FAn no est\u00E1 disponible. Cuando se accede a BLOB o CLOB como una secuencia de datos, la longitud no est\u00E1 disponible hasta que se ha procesado la secuencia completa.
01J13=El n\u00FAmero de filas devueltas ({0}) es demasiado grande para caber en un entero; el valor devuelto se truncar\u00E1.
XJ083.U=''{0}'' no permitido porque el ResultSet no es un ResultSet actualizable.
01J12=No se puede obtener el texto de mensaje desde el servidor. Consulte la excepci\u00F3n siguiente. El procedimiento almacenado SYSIBM.SQLCAMESSAGE no est\u00E1 instalado en el servidor. P\u00F3ngase en contacto con el administrador de bases de datos.
01J10=Los conjuntos de resultados sensibles a desplazamiento no est\u00E1n soportados por el servidor; se est\u00E1 volviendo a correlacionar con el cursor de s\u00F3lo avance
XJ212.S=Sintaxis de atributo no v\u00E1lida\: {0}
XJ059.S=No se puede cerrar una conexi\u00F3n mientras siga activa una transacci\u00F3n global.
01J08=No se ha podido abrir el tipo de resultSet {0}. El tipo de ResultSet {1} est\u00E1 abierto.
01J07=ResultSetHoldability restringido a ResultSet.CLOSE_CURSORS_AT_COMMIT para una transacci\u00F3n global.
01J06=ResultSet no actualizable. La consulta no califica para generar un ResultSet actualizable.
XJ023.S=La corriente de entrada no conten\u00EDa la cantidad exacta de datos que la longitud solicitada.
XBM0N.D=No se ha podido registrar el controlador JDBC con java.sql.DriverManager. Consulte la excepci\u00F3n siguiente para obtener detalles.
XN018.S=Error de protocolo de red\: el tama\u00F1o especificado de Reader (Lector), par\u00E1metro \#{0}, es inferior a la longitud real de InputStream.
58009.C.21=Excepci\u00F3n de protocolo de red\: la longitud de SCLDTA, {0}, no es v\u00E1lida para RDBNAM. La conexi\u00F3n se ha finalizado.
58009.C.20=Excepci\u00F3n de protocolo de red\: s\u00F3lo uno de NVCM o NVCS puede ser no nulo. La conexi\u00F3n se ha finalizado.
XJ116.S=No se puede a\u00F1adir m\u00E1s de {0} mandatos a un \u00FAnico proceso por lotes.
XN014.S=Error de protocolo de red\: se ha encontrado una excepci\u00F3n de E/S (IOException), par\u00E1metro \#{0}. Los datos restantes se han rellenado con 0x0. Mensaje\: {1}.
X0Y78.S.2=Se ha llamado a {0}.executeQuery() pero no se ha devuelto ning\u00FAn conjunto de resultados. Utilice {1}.executeUpdate() si no se trata de consultas.
XJ112.S=Se ha encontrado una excepci\u00F3n de seguridad, consulte la excepci\u00F3n siguiente para obtener detalles.
X0Y78.S.1=No se puede llamar {0}.executeQuery() porque se han devuelto m\u00FAltiples conjuntos de resultados. Utilice {1}.execute() para obtener m\u00FAltiples resultados.
XJ209.S=El proceso almacenado necesario no est\u00E1 instalado en el servidor.
XN010.S=El nombre del procedimiento no puede ser nulo.
XJ076.S=El argumento de posici\u00F3n ''{0}'' supera el tama\u00F1o del BLOB/CLOB.
58009.C.19=Excepci\u00F3n de protocolo de red\: no se ha devuelto SECTKN. La conexi\u00F3n se ha finalizado.
58009.C.18=Excepci\u00F3n de protocolo de red\: FDOCA LID no v\u00E1lido. La conexi\u00F3n se ha finalizado.
58009.C.17=Excepci\u00F3n de protocolo de red\: se ha alcanzado de forma prematura el final de la corriente al leer InputStream, par\u00E1metro \#{0}. La conexi\u00F3n se ha finalizado.
58009.C.16=Excepci\u00F3n de protocolo de red\: DSS encadenado con el mismo id al final del mismo an\u00E1lisis de cadena de id. La conexi\u00F3n se ha finalizado.
58009.C.15=Excepci\u00F3n de protocolo de red\: la longitud de DSS no es 0 al final del mismo an\u00E1lisis de cadena de id. La conexi\u00F3n se ha finalizado.
58009.C.14=Excepci\u00F3n de protocolo de red\: la pila de la colecci\u00F3n no est\u00E1 vac\u00EDa al final del mismo an\u00E1lisis de cadena de id. La conexi\u00F3n se ha finalizado.
58009.C.13=Excepci\u00F3n de protocolo de red\: la colecci\u00F3n DDM contiene menos de 4 bytes de datos. La conexi\u00F3n se ha finalizado.
42X74=Sintaxis de la sentencia CALL no v\u00E1lida.
58009.C.12=Excepci\u00F3n de protocolo de red\: el punto de c\u00F3digo real, {0}, no coincide con el punto de c\u00F3digo esperado, {1}. La conexi\u00F3n se ha finalizado.
XJ072.S=Se ha pasado un patr\u00F3n o searchStr nulo a un m\u00E9todo de posici\u00F3n BLOB o CLOB.
58009.C.11=La conexi\u00F3n se ha finalizado porque la codificaci\u00F3n no est\u00E1 soportada.
58009.C.10=Excepci\u00F3n de protocolo de red\: s\u00F3lo una longitud de VCM o VCS puede ser mayor que 0. La conexi\u00F3n se ha finalizado.
58017.C=El valor del par\u00E1metro de DDM 0x{0} no est\u00E1 soportado. Es posible que una variable de lenguaje principal de entrada no est\u00E9 dentro del rango que soporta el servidor. La conexi\u00F3n se ha finalizado.
XJ044.S=''{0}'' no es una escala v\u00E1lida.
25001=No se puede cerrar una conexi\u00F3n mientras todav\u00EDa siga activa una transacci\u00F3n.
08006.D.1=Base de datos ''{0}'' eliminada.
XJ048.C=Se han especificado atributos de inicio que entran en conflicto\: {0}
XJ016.S=El m\u00E9todo ''{0}'' no est\u00E1 permitido en una sentencia preparada.
XJ012.S=''{0}'' ya est\u00E1 cerrado.
XCY02.S=El cambio de propiedad solicitado no est\u00E1 soportado ''{0}''\=''{1}''.
XJ040.C=No se ha podido iniciar la base de datos ''{0}'' con el cargador de clases {1}, consulte la excepci\u00F3n siguiente para obtener detalles.
XJ097.S=No se puede retrotraer o liberar un SAVEPOINT que no haya sido creado por esta conexi\u00F3n.
XJ105.S=La clave DES tiene una longitud incorrecta; longitud esperada {0}, longitud obtenida {1}.
XIE08.S=No existe una columna denominada\: {0}.
XJ093.S=La longitud de BLOB/CLOB, {0}, es demasiado grande. La longitud no puede exceder de {1}.
XJ069.S=No se permiten m\u00E9todos SetXXX en el caso de USING execute statement.
XJ065.S=Valor del par\u00E1metro no v\u00E1lido ''{0}'' para Statement.setFetchSize(int rows).
X0Y79.S=No se puede llamar Statement.executeUpdate() con una sentencia que devuelve un ResultSet.
42ZA1=SQL no v\u00E1lido en el proceso por lotes\: ''{0}''.
XJ061.S=El m\u00E9todo ''{0}'' s\u00F3lo est\u00E1 permitido sobre cursores de desplazamiento.
XCL16.S=ResultSet no abierto. Operaci\u00F3n ''{0}'' no permitida. Verifique que AutoCommit sea OFF.
XCL12.S=Se ha intentado colocar un valor de datos de tipo ''{0}'' en un valor de datos de tipo ''{1}''.
XJ009.S=Es necesario utilizar CallableStatement con llamadas de procedimientos almacenados o utilizar par\u00E1metros de salida\: {0}
XJ126.S=Este m\u00E9todo no debe llamarse en cursores din\u00E1micos sensibles.
XJ122.S=No se han llamado m\u00E9todos updateXXX en esta fila.
XJ001.U=Excepci\u00F3n de Java\: ''{1}\: {0}''.
XN020.S=Error al calcular o resolver un tipo definido por el usuario\: {0}
XJ086.S=Este m\u00E9todo no se puede invocar mientras el cursor no est\u00E1 en la fila de inserci\u00F3n o si la concurrencia de este objeto ResultSet es CONCUR_READ_ONLY.
XJ215.S=No puede llamar a otro m\u00E9todo java.sql.Clob o java.sql.Blob despu\u00E9s de haber llamado al m\u00E9todo free() ni despu\u00E9s de haber finalizado (COMMIT) o cancelado (ROLLBACK) la transacci\u00F3n de Blob/Clob.
XJ082.U=No se permiten los valores BLOB/CLOB como receptor o par\u00E1metros de m\u00E9todo.
57017.C=No existe ninguna conversi\u00F3n disponible para la p\u00E1gina de c\u00F3digos de origen, {0}, a la p\u00E1gina de c\u00F3digos de destino, {1}. La conexi\u00F3n se ha finalizado.
XJ211.S=Se ha producido una excepci\u00F3n de ruptura de cadena no recuperable durante el proceso por lotes. El proceso por lotes finaliza de manera no at\u00F3mica.
XJ058.S=No se puede retrotraer una transacci\u00F3n global mediante la conexi\u00F3n, el proceso de comprometer debe ir a trav\u00E9s de la interfaz XAResource.
42X30=Cursor ''{0}'' no encontrado. Verifique que AutoCommit sea OFF.
XJ050.U=La base de datos necesita actualizarse desde la versi\u00F3n {0}, establezca el atributo ''upgrade\=true'' en el URL de conexi\u00F3n JDBC para permitir la actualizaci\u00F3n a la versi\u00F3n {1}.
org/apache/derby/loc/clientmessages_fr.properties
#Tue Apr 19 06:13:16 PDT 2011
XJ022.S=Impossible de d\u00E9finir le flux \: ''{0}''.
XN017.S=Erreur de protocole r\u00E9seau \: fin de flux pr\u00E9matur\u00E9e, param\u00E8tre n\u00B0{0}. Les donn\u00E9es restantes ont \u00E9t\u00E9 remplies de 0x0.
XJ115.S=Impossible d''ouvrir le resultSet avec la stabilit\u00E9 {0} requise.
XJ04C.S=Le fichier de commandes CallableStatement ne peut pas contenir de param\u00E8tres de sortie.
XN013.S=Orientation de d\u00E9filement incorrecte.
XJ079.S=La longueur ''{0}'' indiqu\u00E9e d\u00E9passe la taille du BLOB/CLOB.
XJ111.S=Le nom de la table externe ne peut pas \u00EAtre null
XJ208.S=Echec de lot non atomique. Le lot a \u00E9t\u00E9 soumis, mais au moins une exception s''est produite sur un membre individuel du lot. Utilisez la m\u00E9thode getNextException() pour extraire les exceptions pour des \u00E9l\u00E9ments sp\u00E9cifiques trait\u00E9s par lot.
XJ204.S=Impossible d''ouvrir l''ensemble de r\u00E9sultats avec la stabilit\u00E9 {0} requise.
XJ071.S=Un argument de longueur n\u00E9gatif ''{0}'' est pass\u00E9 dans une m\u00E9thode BLOB ou CLOB.
XJ200.S=Nombre maximum de sections {0} d\u00E9pass\u00E9
22005.S.6=Type de langage SQL pour Java {0} non reconnu.
22005.S.5=Type de connectivit\u00E9 JDBC incorrect pour le param\u00E8tre {0}.
22005.S.4=Type de connectivit\u00E9 JDBC non reconnu. Type \: {0}, NombreColonne \: {1}, IndexColonne \: {2}.
22005.S.3=Une cha\u00EEne unicode ne peut \u00EAtre convertie en cha\u00EEne Ebcdic
22005.S.2=Le convertisseur de caract\u00E8res requis n''est pas disponible.
X0X0D.S=Longueur du tableau de colonnes ''{0}'' invalide. Pour renvoyer les cl\u00E9s g\u00E9n\u00E9r\u00E9es, le tableau de colonnes doit avoir une longueur de 1 et ne doit contenir que la colonne d''identit\u00E9.
22005.S.1=Conversion d''une valeur de type ''{0}'' en type ''{1}'' impossible \: le codage n''est pas pris en charge.
58016.C=Le param\u00E8tre du gestionnaire de donn\u00E9es r\u00E9parties 0x{0} n''est pas pris en charge. La connexion a \u00E9t\u00E9 ferm\u00E9e.
08006.C.6=Tentative de mat\u00E9rialisation totale de donn\u00E9es d''objet LOB trop importantes pour la machine virtuelle Java. La connexion a \u00E9t\u00E9 ferm\u00E9e.
08006.C.5=Donn\u00E9es insuffisantes lors de la lecture depuis le r\u00E9seau \: {0} octets \u00E9taient attendus, mais seulement {1} octets ont \u00E9t\u00E9 re\u00E7us. La connexion a \u00E9t\u00E9 ferm\u00E9e.
08006.C.4=Une erreur s''est produite au cours d''une r\u00E9initialisation de connexion diff\u00E9r\u00E9e et la connexion a \u00E9t\u00E9 ferm\u00E9e. Pour plus d''informations, voir les exceptions en cha\u00EEne.
08006.C.3=Une erreur de communication a \u00E9t\u00E9 d\u00E9tect\u00E9e \: {0}.
08006.C.2=Exception SocketException \: ''{0}''
08006.C.1=Une erreur s''est produite au cours de la r\u00E9initialisation de la connexion et la connexion a \u00E9t\u00E9 arr\u00EAt\u00E9e. Pour plus d''informations, voir les exceptions en cha\u00EEne.
0A000.S.7=Le type de donn\u00E9es ''{0}'' n''est pas pris en charge.
0A000.S.5=Le m\u00E9canisme de s\u00E9curit\u00E9 ''{0}'' n''est pas pris en charge.
0A000.S.4=La m\u00E9thode cancel() n''est pas pris en charge par le serveur.
XJ015.M=Arr\u00EAt du syst\u00E8me Derby.
0A000.S.3=La propri\u00E9t\u00E9 {0} de l''objet resultSetHoldability n''est pas prise en charge
0A000.S.2=La m\u00E9thode JDBC {0} n''est pas prise en charge par le serveur. Veuillez mettre le serveur \u00E0 niveau.
XJ011.S=Impossible de transmettre une valeur null comme nom du point de sauvegarde.
0A000.S.1=La m\u00E9thode JDBC n''est pas encore impl\u00E9ment\u00E9e.
XJ108.S=Taille de bloc non conforme
08001.C.12=Aucune connexion n''a pu \u00EAtre \u00E9tablie car le mot de passe a une longueur \u00E9gale \u00E0 z\u00E9ro ou est plus long que le maximum autoris\u00E9 par le protocole r\u00E9seau.
08001.C.11=Aucune connexion n''a pu \u00EAtre \u00E9tablie car l''ID utilisateur a une longueur \u00E9gale \u00E0 z\u00E9ro ou est plus long que le maximum autoris\u00E9 par le protocole r\u00E9seau.
08001.C.10=Aucune connexion n''a pu \u00EAtre \u00E9tablie car le jeton de s\u00E9curit\u00E9 est plus grand que la taille maximale autoris\u00E9e par le protocole r\u00E9seau.
XJ096.S=Aucun regroupement de ressources n''a \u00E9t\u00E9 d\u00E9tect\u00E9 dans le module {0} pour {1}
XJ104.S=La longueur de cl\u00E9 partag\u00E9e est incorrecte \: {0}.
XN002.U=SECTKN non renvoy\u00E9.
XJ068.S=Seuls executeBatch et clearBatch sont autoris\u00E9s au milieu d''un fichier de commandes.
XJ100.S=L''\u00E9chelle fournie par la m\u00E9thode registerOutParameter ne correspond pas \u00E0 la m\u00E9thode d''acc\u00E8s setter. Perte possible de pr\u00E9cision \!
XJ064.S=Valeur de param\u00E8tre non admise ''{0}'' pour setFetchDirection(int direction).
0A000.C.6=La commande DRDA {0} n''est pas impl\u00E9ment\u00E9e actuellement. La connexion a \u00E9t\u00E9 ferm\u00E9e.
XJ008.S=Impossible d''annuler ou d''\u00E9diter un point de sauvegarde en mode valider automatiquement.
XJ125.S=Cette m\u00E9thode ne doit \u00EAtre appel\u00E9e que sur les objets ResultSet qu''il est possible de faire d\u00E9filer (les objets de type TYPE_SCROLL_INSENSITIVE).
XJ05C.S=Impossible de d\u00E9finir la conservation de ResultSet.HOLD_CURSORS_OVER_COMMIT pour une transaction globale.
XJ121.S=Op\u00E9ration incorrecte \u00E0 l''emplacement actuel du curseur.
XJ085.S=Le flux a d\u00E9j\u00E0 \u00E9t\u00E9 lu et la fin du fichier atteinte, donc le flux ne peut pas \u00EAtre r\u00E9utilis\u00E9.
XJ004.C=Impossible de trouver la base de donn\u00E9es ''{0}''.
XJ214.S=Une erreur d''entr\u00E9e/sortie s''est produite lors d''un appel de m\u00E9thode free() sur un objet CLOB ou BLOB.
22003.S.3=Un d\u00E9passement de capacit\u00E9 s''est produit au cours de la conversion du type de donn\u00E9e num\u00E9rique de''{0}'' en {1}.
08004.C.9=L''utilisateur ''{0}'' ne dispose pas des droits requis pour arr\u00EAter le syst\u00E8me [{1}].
22003.S.2=Les nombres d\u00E9cimaux ne peuvent comporter que 31 d\u00E9cimales maximum.
08004.C.8=L''utilisateur ''{0}'' ne peut pas \u00E9mettre une op\u00E9ration de r\u00E9plication sur la base de donn\u00E9es ''{1}''. Seul le propri\u00E9taire de la base de donn\u00E9es est habilit\u00E9 \u00E0 effectuer cette op\u00E9ration.
22003.S.1=L''ann\u00E9e ({0}) d\u00E9passe le maximum, d\u00E9fini \u00E0 ''{1}''.
08004.C.7=La connexion \u00E0 la base de donn\u00E9es ''{0}'' a \u00E9t\u00E9 refus\u00E9e, car celle-ci est en mode de r\u00E9plication esclave.
08004.C.6=L''utilisateur ''{0}'' ne peut pas proc\u00E9der \u00E0 une mise \u00E0 niveau mat\u00E9rielle de la base de donn\u00E9es ''{1}''. Seul le propri\u00E9taire de la base de donn\u00E9es est habilit\u00E9 \u00E0 effectuer cette op\u00E9ration.
08004.C.5=L''utilisateur ''{0}'' ne peut pas (r\u00E9en)coder la base de donn\u00E9es ''{1}''. Seul le propri\u00E9taire de la base de donn\u00E9es est habilit\u00E9 \u00E0 effectuer cette op\u00E9ration.
08004.C.4=L''utilisateur ''{0}'' ne peut pas arr\u00EAter la base de donn\u00E9es ''{1}''. Seul le propri\u00E9taire de la base de donn\u00E9es est habilit\u00E9 \u00E0 effectuer cette op\u00E9ration.
08004.C.3=Connexion \u00E0 la base de donn\u00E9es refus\u00E9.
08004.C.2=La connexion a \u00E9t\u00E9 refus\u00E9e car la base de donn\u00E9es {0} n''a pas \u00E9t\u00E9 trouv\u00E9e.
XJ081.S=Valeur non valide ''{0}'' transmise en tant que param\u00E8tre ''{1}'' \u00E0 la m\u00E9thode ''{2}''
08004.C.1=Un \u00E9chec d''authentification de la connexion s''est produit. Motif \: {0}.
XJ210.S=Le nom du module de chargemment pour la proc\u00E9dure m\u00E9moris\u00E9e sur le serveur est introuvable.
XJ057.S=Impossible de valider une transaction globale qui utilise la connexion ; le traitement de la validation doit passer par l''interface XAResource.
22015.S.1=Conversion de donn\u00E9es incorrecte \: la conversion requise entra\u00EEnerait une perte de pr\u00E9cision de {0}
XCL08.S=Le curseur ''{0}'' ne se trouve pas sur une ligne.
XJ081.C=Des attributs de cr\u00E9ation/restauration/r\u00E9cup\u00E9ration incompatibles ont \u00E9t\u00E9 sp\u00E9cifi\u00E9s.
J136=Une transaction XA \u00E9tait associ\u00E9e \u00E0 la connexion en cours de fermeture. La transaction sera annul\u00E9e. La transaction Xid est {0}.
23502=La colonne ''{0}'' ne peut pas accepter de valeur NULL.
J135=La transaction XA a expir\u00E9 et sera annul\u00E9e. La transaction Xid est {0}.
J134=La propri\u00E9t\u00E9 maxStatements ne peut pas avoir de valeurs n\u00E9gatives \: {0}
J133=Le mot de passe de l''utilisateur pour la connexion
J132=Le nom d''utilisateur pour la connexion
J131=Une erreur de syntaxe du flux de donn\u00E9es PROTOCOL a \u00E9t\u00E9 d\u00E9tect\u00E9e. Motif \: 0x{0}. Tenter une connexion en texte simple \u00E0 un serveur dot\u00E9 de la fonction SSL ?
J130=Une erreur de description FDOCA incorrecte a \u00E9t\u00E9 d\u00E9tect\u00E9e
22007.S.181=La syntaxe de la repr\u00E9sentation de la cha\u00EEne d''une valeur date/heure n''est pas correcte.
XJ025.S=La longueur du flux en entr\u00E9e ne peut pas \u00EAtre n\u00E9gative.
2D521.S.2=Op\u00E9ration COMMIT ou ROLLBACK incorrecte pour l''environnement d''ex\u00E9cution de l''application.
2D521.S.1=Param\u00E8tre setAutoCommit(true) incorrect au cours de la transaction globale.
22028=La cha\u00EEne d\u00E9passe la longueur maximale de {0}.
XJ021.S=Ce type n''est pas pris en charge.
XJ118.S=Le traitement par lots des requ\u00EAtes est requis sur une instruction qui n''est pas une requ\u00EAte.
58009.C.9=Exception de protocole r\u00E9seau \: la longueur PKGNAMCSN, {0}, n''est pas valide \u00E0 SQLAM {1}. La connexion a \u00E9t\u00E9 ferm\u00E9e.
XN016.S=Erreur de protocole r\u00E9seau \: une erreur a \u00E9t\u00E9 rencontr\u00E9e lors de la v\u00E9rification de la longueur du flux, param\u00E8tre n\u00B0{0}. Message \: {1}.
58009.C.8=Exception de protocole r\u00E9seau \: la longueur SCLDTA, {0}, est incorrecte pour PKGID. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.7=Exception de protocole r\u00E9seau \: la longueur SCLDTA, {0}, est incorrecte pour RDBCOLID. La connexion a \u00E9t\u00E9 ferm\u00E9e.
J129=Une commande Open Query a \u00E9t\u00E9 \u00E9mise pour une requ\u00EAte d\u00E9j\u00E0 ouverte
XJ114.S=Nom de curseur incorrect ''{0}''
J128=Le curseur n''est pas ouvert
J127=La m\u00E9thode parseSQLDIAGGRP n''est pas encore impl\u00E9ment\u00E9e
J126=Une erreur de protocole de conversation a \u00E9t\u00E9 d\u00E9tect\u00E9e. Motif \: 0x{0}.
J125=Une erreur de non-concordance de descripteur a \u00E9t\u00E9 d\u00E9tect\u00E9e.
XJ04B.S=Le fichier de commandes ne peut pas contenir de commande qui essaye de renvoyer un ensemble de r\u00E9sultats.
07000=Au moins un param\u00E8tre de l''instruction en cours n''est pas initialis\u00E9.
J124=La commande d''acc\u00E8s \u00E0 la base de donn\u00E9es relationnelle (ACCRDB) ne peut \u00EAtre \u00E9mise car un acc\u00E8s \u00E0 la base de donn\u00E9es est en cours
XN012.S=Sur les plateformes {0}, XA prend en charge la version {1} et les versions ult\u00E9rieures ; il s''agit de la version {2}
J123=la commande requise a rencontr\u00E9 une condition non structur\u00E9e sp\u00E9cifique \u00E0 l''impl\u00E9mentation pour laquelle aucun message structur\u00E9 n''existe (des informations suppl\u00E9mentaires sont peut-\u00EAtre disponibles dans le fichier derby.log enregistr\u00E9 sur le serveur)
08003.C.3=La connexion physique sous-jacente est p\u00E9rim\u00E9e ou ferm\u00E9e.
J122=Une commande demandant des services de la base de donn\u00E9es a \u00E9t\u00E9 \u00E9mise avant celle demandant un acc\u00E8s \u00E0 la base de donn\u00E9es (ACCRDB)
08003.C.2=Appel de m\u00E9thode d''objet LOB apr\u00E8s fermeture de la connexion
J121=L''utilisateur n''est pas autoris\u00E9 \u00E0 acc\u00E9der \u00E0 la base de donn\u00E9es
08003.C.1=La m\u00E9thode getConnection() est incorrecte sur un objet PooledConnection ferm\u00E9.
J120=Non d\u00E9fini
XJ110.S=Le nom de la table principale ne peut pas \u00EAtre null
XJ078.S=Le d\u00E9calage ''{0}'' est soit inf\u00E9rieur \u00E0 z\u00E9ro, soit trop important pour le BLOB/CLOB actuel.
XJ207.S=La m\u00E9thode executeQuery ne peut pas \u00EAtre utilis\u00E9e pour la mise \u00E0 jour.
24501.S=Le curseur identifi\u00E9 n''est pas ouvert.
X0X95.S=L''op\u00E9ration ''{0}'' ne peut pas \u00EAtre ex\u00E9cut\u00E9e sur l''objet ''{1}'' parce qu''il existe un ResultSet ouvert d\u00E9pendant de cet objet.
22018=Le format de la cha\u00EEne de caract\u00E8res n''est pas valide pour le type {0}.
XJ074.S=Valeur de param\u00E8tre ''{0}'' incorrecte pour le param\u00E8tre Statement.setQueryTimeout(int secondes).
XJ203.S=Le nom de curseur ''{0}'' est d\u00E9j\u00E0 utilis\u00E9
XJ070.S=Un argument de position n\u00E9gatif ou \u00E9gal \u00E0 z\u00E9ro ''{0}'' a \u00E9t\u00E9 transmis dans une m\u00E9thode Blob ou Clob.
J118=Mot de passe expir\u00E9
J117=SECTKN absent sur ACCSEC lorsqu''il est requis, ou incorrect
J116=Erreur irr\u00E9parable du service de s\u00E9curit\u00E9 locale
J115=Nouveau mot de passe incorrect
J114=ID utilisateur r\u00E9voqu\u00E9
J113=ID utilisateur ou mot de passe incorrects
J112=ID utilisateur absent
58015.C=L''objet du gestionnaire de donn\u00E9es r\u00E9parties 0x{0} n''est pas pris en charge. La connexion a \u00E9t\u00E9 ferm\u00E9e.
J111=Mot de passe manquant
J110=M\u00E9canisme de s\u00E9curit\u00E9 non pris en charge
XJ042.S=''{0}'' n''est pas une valeur admise pour la propri\u00E9t\u00E9 ''{1}''.
XJ018.S=Le nom de colonne ne peut pas \u00EAtre nul.
08006.D=Arr\u00EAt de la base de donn\u00E9es ''{0}''.
08006.C=Une erreur de protocole r\u00E9seau s''est produite et la connexion a \u00E9t\u00E9 ferm\u00E9e \: {0}
22005=Une tentative d''extraction d''une valeur de donn\u00E9es de type ''{0}'' \u00E0 partir d''une valeur de donn\u00E9es de type ''{1}'' a \u00E9t\u00E9 effectu\u00E9e.
XJ014.S=Aucun nom pour les points de sauvegarde dont le nom n''est pas indiqu\u00E9.
22003=La valeur r\u00E9sultante se situe hors de la fourchette admise pour le type de donn\u00E9es {0}.
XJ099.S=L''objet Reader/Stream ne contient pas de caract\u00E8re de longueur
XN009.S=Erreur d''obtention de la longueur de l''objet BLOB/CLOB, l''exception est la suivante.
XJ010.S=Impossible de g\u00E9n\u00E9rer un point de sauvegarde lorsque autoCommit est activ\u00E9.
J109=Configuration client TCP/IP incorrecte d\u00E9tect\u00E9e. Impossible de d\u00E9terminer l''adresse IP de votre h\u00F4te local \: ''{0}''. Assurez-vous que votre machine client poss\u00E8de une adresse IP correctement configur\u00E9e.
XJ107.S=Mauvais remplissage
J108=Le gestionnaire de s\u00E9curit\u00E9 n''autorise pas l''acc\u00E8s \u00E0 la propri\u00E9t\u00E9 syst\u00E8me {0}.
XCY00.S=Valeur non valide pour la propri\u00E9t\u00E9 ''{0}''\=''{1}''.
J107=Erreur pour l''\u00E9l\u00E9ment de traitement par lot \#
J105=La pr\u00E9cision d\u00E9passe 31 chiffres \!
J104=Cet objet est d\u00E9j\u00E0 ferm\u00E9.
XJ095.S=Une tentative d''ex\u00E9cution d''une action privil\u00E9gi\u00E9e a \u00E9chou\u00E9.
J103=Une exception a \u00E9t\u00E9 \u00E9mise lors de l''arr\u00EAt du serveur de r\u00E9seau. {0}
J102=Une exception a \u00E9t\u00E9 \u00E9mise au cours du d\u00E9marrage du serveur de r\u00E9seau. {0}
J101=Impossible de charger la classe du serveur de r\u00E9seau, {0}. {1} V\u00E9rifiez l''int\u00E9grit\u00E9 du fichier derbynet.jar.
J100=Impossible de trouver la classe de serveur de r\u00E9seau, {0}. Votre chemin d''acc\u00E8s aux classes doit contenir le fichier derbynet.jar.
XJ103.S=Le nom de table ne peut pas \u00EAtre null
XN001.S=La r\u00E9initialisation de la connexion n''est pas autoris\u00E9e \u00E0 l''int\u00E9rieur d''une unit\u00E9 de travail.
XJ091.S=Argument incorrect \: l''index de param\u00E8tre {0} n''est pas un param\u00E8tre OUT ou INOUT.
XJ067.S=Le pointeur de texte SQL est nul.
XJ063.S=Valeur de param\u00E8tre non admise ''{0}'' pour Statement.setMaxRows(int maxRows). La valeur du param\u00E8tre doit \u00EAtre >\= 0.
XCL18.S=Le flux ou la valeur LOB ne peut pas \u00EAtre extrait(e) plus d''une fois
XCL14.S=La position de colonne ''{0}'' est en dehors des limites. Le nombre de colonnes de ce ResultSet est ''{1}''.
08001.C.9=Aucune connexion n''a pu \u00EAtre \u00E9tablie car le nom de la base de donn\u00E9es ''{0}'' est plus long que la longueur maximale autoris\u00E9e par le protocole r\u00E9seau.
08001.C.8=Le mot de passe ne peut pas \u00EAtre null.
08001.C.7=L''ID utilisateur ne peut pas \u00EAtre null.
08001.C.6=La longueur du mot de passe ({0}) se situe hors de l''intervalle de 1 \u00E0 {1}.
08001.C.5=La longueur de l''ID utilisateur ({0}) se situe hors de l''intervalle de 1 \u00E0 {1}.
08001.C.4=Impossible d''ouvrir le flux sur le connecteur ''{0}''.
08001.C.3=Exception SocketException \: ''{0}''
08001.C.2={0} \: l''erreur lors de la connexion au serveur {1} sur le port {2} a \u00E9mis le message {3}.
XJ128.S=D\u00E9sencapsulation impossible pour ''{0}''
08001.C.1=La propri\u00E9t\u00E9 requise Derby DataSource {0} n''a pas \u00E9t\u00E9 d\u00E9finie.
XJ124.S=Mise \u00E0 jour de la colonne impossible.
08004=Connexion refus\u00E9e \: {0}
08003=Aucune connexion en cours.
08000=Connexion ferm\u00E9e par une interruption inconnue.
XJ088.S=Op\u00E9ration incorrecte \: m\u00E9thode wasNull() appel\u00E9e sans donn\u00E9es extraites.
XJ217.S=Le localisateur fourni pour cet objet CLOB/BLOB est incorrect
XJ084.U=La colonne ne correspond pas \u00E0 une colonne de la table de base. Impossible d''\u00E9mettre {0} sur cette colonne.
XJ05B.C=L''attribut JDBC ''{0}'' a une valeur incorrecte ''{1}'', les valeurs valides sont ''{2}''.
XJ080.S=L''instruction d''ex\u00E9cution USING a transmis {0} param\u00E8tres et non {1}.
XJ056.S=Impossible de d\u00E9finir AUTOCOMMIT sur ON dans une connexion XA.
XJ213.C=Le format d''un nombre de la propri\u00E9t\u00E9 de connexion NiveauDeTrace est incorrect.
XCL31.S=Instruction ferm\u00E9e.
J031=interclassement pour les types de donn\u00E9es caract\u00E8res
J030=chemin de sauvegarde pour restauration de base de donn\u00E9es \u00E0 partir de la sauvegarde
22011.S.1=La plage sp\u00E9cifi\u00E9e pour la sous-cha\u00EEne au d\u00E9calage {0} et au nbcar {1} est hors plage pour la cha\u00EEne \: {2}.
XN019.S=Erreur lors de l''ex\u00E9cution d''un {0}, le serveur a renvoy\u00E9 {1}.
XJ028.C=L''URL ''{0}'' n''est pas au format correct.
XJ020.S=Le type d''objet n''est pas convertible en TYPE ''{0}'', la valeur java.sql.Types est incorrecte ou l''objet \u00E9tait null.
XJ117.S=Le traitement par lots des requ\u00EAtes est interdit de fa\u00E7on \u00E0 permettre la conformit\u00E9 \u00E0 la sp\u00E9cification J2EE.
XN015.S=Erreur de protocole r\u00E9seau \: la taille d\u00E9finie de l''InputStream, param\u00E8tre n\u00B0{0}, est inf\u00E9rieure \u00E0 la longueur r\u00E9elle de l''InputStream.
XJ113.S=Impossible d''ouvrir le fichier {0} \: {1}
J029=chemin de sauvegarde pour cr\u00E9ation de base de donn\u00E9es \u00E0 partir de la sauvegarde
J028=chemin de sauvegarde pour r\u00E9cup\u00E9ration aval
J025=chemin d''acc\u00E8s du r\u00E9pertoire du fichier journal
XN011.S=La longueur du nom de la proc\u00E9dure {0} ne se situe pas dans l''intervalle valide de 1 \u00E0 {1}.
J023=mot de passe de l''utilisateur
J022=nom d''utilisateur
J021=territoire de la base de donn\u00E9es
XJ077.S=Une exception s''est produite lors de la tentative de lecture du premier octet/caract\u00E8re du sch\u00E9ma BLOB/CLOB en utilisant getBytes/getSubString.
J020=cl\u00E9 de cryptographie secr\u00E8te
XJ206.S=Le texte SQL ''{0}'' n''a pas de jeton.
XJ073.S=Les donn\u00E9es de data de ce BLOB ou CLOB ne sont plus disponibles. La transaction des BLOB/CLOB est peut \u00EAtre valid\u00E9e, sa connexion est peut \u00EAtre ferm\u00E9e ou elle a \u00E9t\u00E9 lib\u00E9r\u00E9e.
XJ202.S=Nom de curseur ''{0}'' incorrect.
0A000.S=Fonction non impl\u00E9ment\u00E9e \: {0}.
XJ045.S=Un niveau d''isolement non valide ou non pris en charge (actuellement), ''{0}'', a \u00E9t\u00E9 transmis \u00E0 Connection.setTransactionIsolation(). Les valeurs actuellement prises ne charge sont java.sql.Connection.TRANSACTION_SERIALIZABLE, java.sql.Connection.TRANSACTION_REPEATABLE_READ, java.sql.Connection.TRANSACTION_READ_COMMITTED et java.sql.Connection.TRANSACTION_READ_UNCOMMITTED.
J019=cl\u00E9 de cryptographie externe
J018=longueur de la cl\u00E9 de cryptographie
J017=algorithme de cryptographie
J016=fournisseur de service cryptographique
J013=mettre la base de donn\u00E9es \u00E0 niveau
58014.C=La commande du gestionnaire de donn\u00E9es r\u00E9parties 0x{0} n''est pas prise en charge. La connexion a \u00E9t\u00E9 ferm\u00E9e.
XJ049.C=Des attributs de cr\u00E9ation incompatibles ont \u00E9t\u00E9 sp\u00E9cifi\u00E9s.
J010=chiffrer la base de donn\u00E9es sur disque
XJ017.S=Aucune commande savepoint autoris\u00E9e dans le code de d\u00E9clenchement.
58010.C=Une erreur de protocole r\u00E9seau s''est produite. Impossible d''\u00E9tablir une connexion car le gestionnaire {0} de niveau {1} n''est pas pris en charge par le serveur.
XJ013.S=Aucun ID pour les points de sauvegarde nomm\u00E9s.
XJ041.C=Echec de la cr\u00E9ation de la base de donn\u00E9es ''{0}'' ; pour plus de d\u00E9tails, voir l''exception suivante.
XN008.S=Le traitement de la requ\u00EAte a \u00E9t\u00E9 arr\u00EAt\u00E9 en raison d''une erreur sur le serveur.
XJ098.S=La valeur de cl\u00E9s auto-g\u00E9n\u00E9r\u00E9es {0} est incorrecte
42622=Le nom ''{0}'' est trop long. La longueur maximale est ''{1}''.
J008=aucun d\u00E9tail
XJ106.S=Pas de remplissage
J007=cr\u00E9er une base de donn\u00E9es
J005=arr\u00EAter Derby
J004=identit\u00E9 de la base de donn\u00E9es
XJ094.S=Cet objet est d\u00E9j\u00E0 ferm\u00E9.
XJ090.S=Param\u00E8tre incorrect \: l''agenda est null.
XJ066.S=Valeur de param\u00E8tre non admise ''{0}'' pour Statement.setMaxFieldSize(int max).
3B502.S=Une LIBERATION ou ANNULATION JUSQU''AU POINT DE SAUVEGARDE a \u00E9t\u00E9 indiqu\u00E9e mais le point de sauvegarde n''existe pas.
XJ062.S=Valeur de param\u00E8tre non admise ''{0}'' pour ResultSet.setFetchSize(int rows).
XCL13.S=La position de param\u00E8tre ''{0}'' est en dehors des limites. Le nombre de param\u00E8tres pour cette instruction pr\u00E9par\u00E9e est ''{1}''.
24000=Etat du curseur non valide - pas de ligne en cours.
XJ030.S=Impossible de d\u00E9finir AUTOCOMMIT sur ON dans une connexion imbriqu\u00E9e.
08004.C.12=Un \u00E9chec d''authentification de la connexion s''est produit. Les informations d''authentification fournies sont incorrectes ou la base de donn\u00E9es utilise un mode de chiffrement de mot de passe non compatible avec le mode de s\u00E9curit\u00E9 renforc\u00E9e de substitution des mots de passe. Si cette erreur s''est produite \u00E0 la suite de la mise \u00E0 jour, reportez-vous \u00E0 la note de version relative \u00E0 DERBY-4483 pour consulter les options disponibles.
08004.C.11=L''utilisateur ''{0}'' ne dispose pas des droits requis pour cr\u00E9er la base de donn\u00E9es ''{1}'' [{2}].
08004.C.10=Impossible de cr\u00E9er l''autorisation syst\u00E8me pour cr\u00E9er la base de donn\u00E9es ''{0}'' [{1}].
XJ123.S=Cette m\u00E9thode doit \u00EAtre appel\u00E9e pour mettre \u00E0 jour les valeurs de la ligne actuelle ou de la ligne d''insertion.
XN021.S=Un objet de type {0} ne peut pas \u00EAtre converti en objet de type {1}.
XJ087.S=La somme des valeurs position(''{0}'') et length(''{1}'') est sup\u00E9rieure \u00E0 la taille de l''objet LOB plus un.
XJ216.S=La longueur de cet objet BLOB/CLOB n''est pas encore disponible. Lorsque vous acc\u00E9dez \u00E0 un objet BLOB ou CLOB en tant que flux, sa longueur est disponible seulement apr\u00E8s le traitement complet du flux.
01J13=Le nombre de lignes renvoy\u00E9 ({0}) est trop important pour correspondre \u00E0 un entier ; la valeur renvoy\u00E9e sera tronqu\u00E9e.
XJ083.U=''{0}'' n''est pas admis car le ResultSet n''est pas un ResultSet pouvant \u00EAtre mis \u00E0 jour.
01J12=Impossible d''obtenir un texte de message du serveur. Voir l''exception suivante. La proc\u00E9dure m\u00E9moris\u00E9e SYSIBM.SQLCAMESSAGE n''est pas install\u00E9e sur le serveur. Veuillez contacter votre administrateur de base de donn\u00E9es.
01J10=Les ensembles de r\u00E9sultats sensibles au d\u00E9filement ne sont pas pris en charge par le serveur ; r\u00E9affectation des touches au curseur permettant uniquement d''avancer
XJ212.S=Syntaxe d''attribut incorrecte \: {0}
XJ059.S=Impossible de fermer une connexion tandis qu''une transaction globale est toujours active.
01J08=Impossible d''ouvrir le ResultSet de type {0}. Le ResultSet de type {1} a \u00E9t\u00E9 ouvert.
01J07=L''objet ResultSetHoldability est limit\u00E9 \u00E0 ResultSet.CLOSE_CURSORS_AT_COMMIT dans le cadre d''une transaction globale.
01J06=L''\u00E9l\u00E9ment ResultSet ne peut pas \u00EAtre mis \u00E0 jour. La requ\u00EAte n''est pas qualifi\u00E9e pour g\u00E9n\u00E9rer un \u00E9l\u00E9ment ResultSet pouvant \u00EAtre mis \u00E0 jour.
XJ023.S=Le flux en entr\u00E9e ne comprenait pas exactement la m\u00EAme quantit\u00E9 de donn\u00E9es que la longueur requise.
XBM0N.D=Echec de l''enregistrement du pilote JDBC dans java.sql.DriverManager. Pour plus de d\u00E9tails, reportez-vous \u00E0 l''exception suivante.
XN018.S=Erreur de protocole r\u00E9seau \: la taille d\u00E9finie de l''objet Reader, param\u00E8tre n\u00B0{0}, est inf\u00E9rieure \u00E0 la longueur r\u00E9elle de Reader.
58009.C.21=Exception de protocole r\u00E9seau \: la longueur SCLDTA, {0}, est incorrecte pour RDBNAM. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.20=Exception de protocole r\u00E9seau \: seule l''une des valeurs NVCM ou NVCS peut \u00EAtre non nulle. La connexion a \u00E9t\u00E9 ferm\u00E9e.
XJ116.S=Impossible d''ajouter plus de {0} \u00E0 un lot unique.
XN014.S=Erreur de protocole r\u00E9seau \: une exception d''entr\u00E9e/sortie a \u00E9t\u00E9 rencontr\u00E9e, param\u00E8tre n\u00B0{0}. Les donn\u00E9es restantes ont \u00E9t\u00E9 remplies de 0x0. Message \: {1}.
X0Y78.S.2=La m\u00E9thode {0}.executeQuery() a \u00E9t\u00E9 appel\u00E9e, mais aucun ensemble de r\u00E9sultats n''a \u00E9t\u00E9 renvoy\u00E9. Utilisez la m\u00E9thode {1}.executeUpdate() pour les \u00E9l\u00E9ments qui ne sont pas des requ\u00EAtes.
XJ112.S=Exception de s\u00E9curit\u00E9 rencontr\u00E9e \: pour plus d''informations, voir l''exception suivante.
X0Y78.S.1=La m\u00E9thode {0}.executeQuery() ne peut \u00EAtre appel\u00E9e car plusieurs ensembles de r\u00E9sultats ont \u00E9t\u00E9 renvoy\u00E9s. Utilisez {1}.execute() pour obtenir plusieurs r\u00E9sultats.
XJ209.S=La proc\u00E9dure m\u00E9moris\u00E9e requise n''est pas install\u00E9e sur le serveur.
XN010.S=Le nom de la proc\u00E9dure ne peut pas \u00EAtre null.
XJ076.S=L''argument de position ''{0}'' d\u00E9passe la taille du BLOB/CLOB.
58009.C.19=Exception de protocole r\u00E9seau \: SECTKN non renvoy\u00E9. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.18=Exception de protocole r\u00E9seau \: FDOCA LID incorrect. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.17=Exception de protocole r\u00E9seau \: fin de flux pr\u00E9matur\u00E9e lors de la lecture d''InputStream, param\u00E8tre n\u00B0{0}. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.16=Exception de protocole r\u00E9seau \: Le segment DDS suivant et le segment actuel de la cha\u00EEne DDS ont un ID identiques. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.15=Exception de protocole r\u00E9seau \: longueur DSS non nulle \u00E0 la fin de l''analyse syntaxique de la cha\u00EEne d''ID identiques. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.14=Exception de protocole r\u00E9seau \: pile de collecte non vide \u00E0 la fin de l''analyse syntaxique de la cha\u00EEne d''ID identiques. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58009.C.13=Exception de protocole r\u00E9seau \: l''ensemble de gestionnaires de donn\u00E9es r\u00E9parties contient moins de 4 octets de donn\u00E9es. La connexion a \u00E9t\u00E9 ferm\u00E9e.
42X74=Syntaxe de l''instruction CALL incorrecte.
58009.C.12=Exception de protocole r\u00E9seau \: le point de code effectif, {0}, ne correspond pas au point de code pr\u00E9vu, {1}. La connexion a \u00E9t\u00E9 ferm\u00E9e.
XJ072.S=Un sch\u00E9ma ou un searchStr nul a \u00E9t\u00E9 transmis dans une m\u00E9thode de position BLOB ou CLOB.
58009.C.11=La connexion a \u00E9t\u00E9 ferm\u00E9e car le codage n''est pas pris en charge.
58009.C.10=Exception de protocole r\u00E9seau \: seule l''une des longueurs VCM ou VCS peut \u00EAtre sup\u00E9rieure \u00E0 0. La connexion a \u00E9t\u00E9 ferm\u00E9e.
58017.C=La valeur du param\u00E8tre du gestionnaire de donn\u00E9es r\u00E9parties 0x{0} n''est pas pris en charge. Une variable h\u00F4te en entr\u00E9e ne se situe peut-\u00EAtre pas dans l''intervalle pris en charge par le serveur. La connexion a \u00E9t\u00E9 ferm\u00E9e.
XJ044.S=''{0}'' est une \u00E9chelle non valide.
25001=Impossible de fermer une connexion tandis qu''une transaction est toujours active.
08006.D.1=Base de donn\u00E9es ''{0}'' d\u00E9pos\u00E9e.
XJ048.C=Conflit d''attributs sp\u00E9cifi\u00E9s d''initialisation \: {0}
XJ016.S=La m\u00E9thode ''{0}'' n''est pas autoris\u00E9e sur une instruction pr\u00E9par\u00E9e.
XJ012.S=''{0}'' est d\u00E9j\u00E0 ferm\u00E9.
XCY02.S=La modification de propri\u00E9t\u00E9 demand\u00E9e n''est pas prise en charge ''{0}''\=''{1}''.
XJ040.C=\u00C9chec du d\u00E9marrage de la base de donn\u00E9es ''{0}'' avec le chargeur de classe {1} ; pour plus de d\u00E9tails, voir l''exception suivante.
XJ097.S=Impossible d''annuler ou d''\u00E9diter un point de sauvegarde qui n''a pas \u00E9t\u00E9 cr\u00E9\u00E9 par cette connexion.
XJ105.S=La longueur de la cl\u00E9 DES est incorrecte \: longueur attendue {0}, longueur obtenue {1}.
XIE08.S=Il n''existe aucune colonne nomm\u00E9e \: {0}.
XJ093.S=La longueur de BLOB/CLOB, {0}, est trop importante. La longueur ne peut d\u00E9passer {1}.
XJ069.S=Aucune m\u00E9thode SetXXX autoris\u00E9e avec l''instruction d''ex\u00E9cution USING.
XJ065.S=Valeur de param\u00E8tre non admise ''{0}'' pour Statement.setFetchSize(int rows).
X0Y79.S=Statement.executeUpdate() ne peut pas \u00EAtre appel\u00E9e avec une instruction qui renvoie un ResultSet.
42ZA1=Langage SQL incorrect dans le lot \: ''{0}''.
XJ061.S=La m\u00E9thode ''{0}'' est uniquement autoris\u00E9e sur les curseurs de d\u00E9filement.
XCL16.S=L''\u00E9l\u00E9ment ResultSet n''est pas ouvert. L''op\u00E9ration ''{0}'' n''est pas autoris\u00E9e. V\u00E9rifiez que la fonction de validation automatique est d\u00E9sactiv\u00E9e (OFF).
XCL12.S=Une tentative de placement d''une valeur de donn\u00E9es de type ''{0}'' dans une valeur de donn\u00E9es de type ''{1}'' a \u00E9t\u00E9 effectu\u00E9e.
XJ009.S=Utilisation de CallableStatement requise pour un appel de proc\u00E9dure stock\u00E9e ou l''utilisation de param\u00E8tres de sortie \: {0}
XJ126.S=Cette m\u00E9thode ne doit pas \u00EAtre appel\u00E9e sur les curseurs dynamiques sensibles.
XJ122.S=Aucune m\u00E9thode de mise \u00E0 jour XXX n''a \u00E9t\u00E9 appel\u00E9e sur cette ligne.
XJ001.U=Exception Java \: ''{1}\: {0}''.
XN020.S=Une erreur s''est produite lors de la conversion ou d\u00E9conversion d''un type d\u00E9fini d''utilisateur \: {0}
XJ086.S=Il est impossible d''appeler cette m\u00E9thode quand le curseur n''est pas sur la ligne d''insertion ou si l''acc\u00E8s concurrent de ce ResultSet est CONCUR_READ_ONLY.
XJ215.S=Vous ne pouvez pas appeler d''autres m\u00E9thodes java.sql.Clob/java.sql.Blob apr\u00E8s avoir appel\u00E9 la m\u00E9thode free() ou apr\u00E8s avoir valid\u00E9 ou restaur\u00E9 la transaction Blob/Clob.
XJ082.U=Les valeurs BLOB/CLOB ne sont pas autoris\u00E9es en tant que param\u00E8tres de m\u00E9thode ou r\u00E9cepteur.
57017.C=Aucune conversion n''est disponible pour la page de code source, {0}, vers la page de code cible, {1}. La connexion a \u00E9t\u00E9 ferm\u00E9e.
XJ211.S=Une exception de rupture de cha\u00EEne irr\u00E9cup\u00E9rable s''est produite au cours du traitement par lot. Le lot s''est termin\u00E9 de mani\u00E8re non atomique.
XJ058.S=Impossible d''annuler une transaction globale qui utilise la connexion ; le traitement de la validation doit passer par l''interface XAResource.
42X30=Le curseur ''{0}'' est introuvable. V\u00E9rifiez que la fonction de validation automatique est d\u00E9sactiv\u00E9e (OFF).
XJ050.U=La base de donn\u00E9es n\u00E9cessite une mise \u00E0 niveau de la version {0}. D\u00E9finissez l''attribut ''upgrade\=true'' sur l''URL de connexion JDBC pour permettre une mise \u00E0 niveau en version {1}.
org/apache/derby/loc/clientmessages_hu.properties
#Tue Apr 19 06:13:11 PDT 2011
XJ111.S=Az idegen t\u00E1blan\u00E9v nem lehet \u00FCres
XJ020.S=Az objektumt\u00EDpus nem alak\u00EDthat\u00F3 ''{0}'' t\u00EDpuss\u00E1. \u00C9rv\u00E9nytelen java.sql.Types \u00E9rt\u00E9k vagy az objektum null\u00E9rt\u00E9k\u0171.
XJ200.S=A szakaszok maxim\u00E1lis {0} sz\u00E1ma t\u00FAll\u00E9pve
XCL31.S=Az utas\u00EDt\u00E1s le van z\u00E1rva.
58010.C=H\u00E1l\u00F3zati protokollhiba t\u00F6rt\u00E9nt. Nem hozhat\u00F3 l\u00E9tre kapcsolat, mivel a kiszolg\u00E1l\u00F3 nem t\u00E1mogatja a(z) {0} kezel\u0151t a(z) {1} szinten.
XJ091.S=\u00C9rv\u00E9nytelen argumentum\: a(z) {0} param\u00E9terindex nem kimen\u0151 (OUT) vagy bej\u00F6v\u0151 (INOUT) param\u00E9ter.
XJ078.S=A(z) ''{0}'' eltol\u00E1s null\u00E1n\u00E1l kisebb, vagy t\u00FAl nagy az aktu\u00E1lis BLOB/CLOB met\u00F3dushoz.
XN009.S=Hiba t\u00F6rt\u00E9nt a BLOB/CLOB objektum hossz\u00E1nak lek\u00E9r\u00E9se sor\u00E1n. Kiv\u00E9tel k\u00F6vetkezik.
XCL16.S=A ResultSet nincs megnyitva. A(z) ''{0}'' m\u0171velet nem megengedett. Ellen\u0151rizze, hogy az autocommit ki van-e kapcsolva (OFF).
XJ076.S=A(z) ''{0}'' poz\u00EDci\u00F3argumentum meghaladja a BLOB/CLOB m\u00E9ret\u00E9t.
XCL14.S=A(z) ''{0}'' oszloppoz\u00EDci\u00F3 k\u00EDv\u00FCl van a megengedett tartom\u00E1nyon. A ResultSet oszlopainak sz\u00E1ma ''{1}''.
J109=A rendszer helytelen TCP/IP \u00FCgyf\u00E9lkonfigur\u00E1ci\u00F3t \u00E9szlelt. A helyi gazda IP c\u00EDme nem hat\u00E1rozhat\u00F3 meg\: ''{0}''. Gy\u0151z\u0151dj\u00F6n meg r\u00F3la, hogy az \u00FCgyf\u00E9lg\u00E9p megfelel\u0151en be\u00E1ll\u00EDtott IP c\u00EDmmel rendelkezik.
XJ074.S=\u00C9rv\u00E9nytelen ''{0}'' param\u00E9ter\u00E9rt\u00E9k a Statement.setQueryTimeout(int seconds) met\u00F3dushoz.
J108=A biztons\u00E1gkezel\u0151 nem enged\u00E9lyezi a(z) {0} rendszertulajdons\u00E1g el\u00E9r\u00E9s\u00E9t.
J107=Hiba a k\u00F6teg elemhez \#
XJ001.U=Java kiv\u00E9tel\: ''{1}\: {0}''.
J105=A pontoss\u00E1g meghaladja a 31 sz\u00E1mjegyet\!
J104=Az objektum m\u00E1r be van z\u00E1rva.
J103=A h\u00E1l\u00F3zati kiszolg\u00E1l\u00F3 le\u00E1ll\u00EDt\u00E1sa sor\u00E1n kiv\u00E9tel t\u00F6rt\u00E9nt. {0}
XCL12.S=''{0}'' t\u00EDpus\u00FA adat\u00E9rt\u00E9k ''{1}'' t\u00EDpus\u00FA adat\u00E9rt\u00E9kbe helyez\u00E9s\u00E9re t\u00F6rt\u00E9nt k\u00EDs\u00E9rlet.
J102=A h\u00E1l\u00F3zati kiszolg\u00E1l\u00F3 ind\u00EDt\u00E1sa sor\u00E1n kiv\u00E9tel t\u00F6rt\u00E9nt. {0}
XJ072.S=\u00DCres minta vagy searchStr ker\u00FClt \u00E1tad\u00E1sra a BLOB vagy CLOB poz\u00EDci\u00F3met\u00F3dusnak.
J101=A h\u00E1l\u00F3zati kiszolg\u00E1l\u00F3oszt\u00E1ly nem t\u00F6lthet\u0151 be, {0}. {1} Ellen\u0151rizze a derbynet.jar f\u00E1jl integrit\u00E1s\u00E1t.
XJ059.S=A glob\u00E1lis kapcsolat nem z\u00E1rhat\u00F3 le, am\u00EDg van akt\u00EDv tranzakci\u00F3.
J100=A h\u00E1l\u00F3zati kiszolg\u00E1l\u00F3oszt\u00E1ly nem tal\u00E1lhat\u00F3, {0}. Az oszt\u00E1ly\u00FAtvonalnak tartalmaznia kell a derbynet.jar f\u00E1jlt.
08001.C.12=Nem alak\u00EDthat\u00F3 ki kapcsolat, mivel a jelsz\u00F3 hossza nulla vagy a h\u00E1l\u00F3zati protokoll \u00E1ltal megengedett maximumn\u00E1l nagyobb.
08001.C.11=Nem alak\u00EDthat\u00F3 ki kapcsolat, mivel a felhaszn\u00E1l\u00F3i azonos\u00EDt\u00F3 hossza nulla vagy a h\u00E1l\u00F3zati protokoll \u00E1ltal megengedett maximumn\u00E1l nagyobb.
08001.C.10=Nem alak\u00EDthat\u00F3 ki kapcsolat, mivel a biztons\u00E1gi jelsor nagyobb a h\u00E1l\u00F3zati protokoll \u00E1ltal megengedett maximumn\u00E1l.
XJ070.S=Negat\u00EDv vagy nulla poz\u00EDci\u00F3argumentum (''{0}'') ker\u00FClt \u00E1tad\u00E1sra a Blob vagy Clob met\u00F3dusban.
XJ057.S=Glob\u00E1lis tranzakci\u00F3 a kapcsolattal nem v\u00E9gleges\u00EDthet\u0151. A v\u00E9gleges\u00EDt\u00E9si feldolgoz\u00E1snak XAResource fel\u00FCleten kell v\u00E9gigmennie.
XBM0N.D=A JDBC illeszt\u0151program regisztr\u00E1ci\u00F3ja meghi\u00FAsult a java.sql.DriverManagerhez. R\u00E9szletek\u00E9rt tekintse meg a k\u00F6vetkez\u0151 kiv\u00E9telt.
XN001.S=A kapcsolat-vissza\u00E1ll\u00EDt\u00E1s munkaegys\u00E9gen bel\u00FCl nem enged\u00E9lyezett.
22028=A karaktersorozat meghaladja a maxim\u00E1lis hosszt ({0}).
42X30=A(z) ''{0}'' nem tal\u00E1lhat\u00F3. Ellen\u0151rizze, hogy az autocommit ki van-e kapcsolva (OFF).
08004.C.3=Az adatb\u00E1zis-kapcsolat visszautas\u00EDt\u00E1sra ker\u00FClt.
08004.C.2=A kapcsolat visszautas\u00EDt\u00E1sra ker\u00FCl, mivel a(z) {0} adatb\u00E1zis nem tal\u00E1lhat\u00F3.
08004=Visszautas\u00EDtott kapcsolat\: {0}
08004.C.1=Kapcsolathiteles\u00EDt\u00E9si hiba t\u00F6rt\u00E9nt. Ok\: {0}.
08003=Nincs aktu\u00E1lis kapcsolat.
08000=A kapcsolatot ismeretlen megszak\u00EDt\u00E1s lez\u00E1rta.
22003.S.3=T\u00FAlcsordul\u00E1s t\u00F6rt\u00E9nt a(z) ''{0}'' numerikus adatt\u00EDpus \u00E1talak\u00EDt\u00E1sa sor\u00E1n a k\u00F6vetkez\u0151re\: {1}.
22003.S.2=A decim\u00E1lis \u00E9rt\u00E9k legfeljebb 31 sz\u00E1mjegy\u0171 lehet.
22003.S.1=A(z) {0} \u00E9v meghaladja a maxim\u00E1lis ''{1}'' \u00E9rt\u00E9ket.
XJ125.S=A met\u00F3dus csak g\u00F6rgethet\u0151 ResultSet objektumon h\u00EDvhat\u00F3 meg (TYPE_SCROLL_INSENSITIVE t\u00EDpus).
22018=\u00C9rv\u00E9nytelen karaktersorozat-form\u00E1tum a k\u00F6vetkez\u0151 t\u00EDpushoz\: {0}.
XCY02.S=A k\u00E9rt tulajdons\u00E1gm\u00F3dos\u00EDt\u00E1s nem t\u00E1mogatott\: ''{0}''\=''{1}''.
XJ214.S=IO hiba t\u00F6rt\u00E9nt a free() f\u00FCggv\u00E9ny CLOB vagy BLOB met\u00F3duson megh\u00EDv\u00E1sa sor\u00E1n.
0A000.S=A szolg\u00E1ltat\u00E1s nem ker\u00FClt megval\u00F3s\u00EDt\u00E1sra\: {0}.
57017.C=Nem \u00E9rhet\u0151 el \u00E1talak\u00EDt\u00E1s a forr\u00E1s k\u00F3dlapr\u00F3l ({0}) a c\u00E9l k\u00F3dlapra ({1}). A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
XJ123.S=A met\u00F3dust meg kell h\u00EDvni az aktu\u00E1lis vagy besz\u00FAr\u00E1s sorban l\u00E9v\u0151 \u00E9rt\u00E9kek friss\u00EDt\u00E9s\u00E9hez.
XCY00.S=\u00C9rv\u00E9nytelen \u00E9rt\u00E9k a tulajdons\u00E1ghoz\: ''{0}''\=''{1}''.
XJ212.S=\u00C9rv\u00E9nytelen attrib\u00FAtumszintaxis\: {0}
XJ121.S=\u00C9rv\u00E9nytelen m\u0171velet az aktu\u00E1lis kurzorpoz\u00EDci\u00F3n.
XJ108.S=Illeg\u00E1lis blokkm\u00E9ret
XJ030.S=Az AUTOCOMMIT ON be\u00E1gyazott kapcsolatban nem \u00E1ll\u00EDthat\u00F3 be.
XJ210.S=A t\u00E1rolt elj\u00E1r\u00E1s bet\u00F6lt\u0151 modulj\u00E1nak neve a kiszolg\u00E1l\u00F3n nem tal\u00E1lhat\u00F3.
X0Y79.S=A Statement.executeUpdate() nem h\u00EDvhat\u00F3 meg ResultSet fel\u00FCletet visszaad\u00F3 utas\u00EDt\u00E1ssal.
XJ017.S=A trigger k\u00F3dban ment\u00E9si pont parancs nem enged\u00E9lyezett.
XJ088.S=\u00C9rv\u00E9nytelen m\u0171velet\: a wasNull() adatok lek\u00E9r\u00E9se n\u00E9lk\u00FCl ker\u00FCl megh\u00EDv\u00E1sra.
XJ106.S=Nincs ilyen kit\u00F6lt\u00E9s
XN019.S=A(z) {0} v\u00E9grehajt\u00E1s\u00E1hoz a kiszolg\u00E1l\u00F3 {1} \u00E9rt\u00E9ket adott vissza.
XJ086.S=A met\u00F3dus nem h\u00EDvhat\u00F3 meg, am\u00EDg a kurzor nem a k\u00E9rd\u00E9ses soron van, vagy ha a ResultSet objektum p\u00E1rhuzamoss\u00E1ga CONCUR_READ_ONLY.
XJ104.S=A megosztott kulcshossz \u00E9rv\u00E9nytelen\: {0}.
XJ015.M=A Derby rendszer le\u00E1ll.
XN017.S=H\u00E1l\u00F3zati protokoll hiba\: a folyam v\u00E9ge t\u00FAl kor\u00E1n lett el\u00E9rve, \#{0} param\u00E9ter. A marad\u00E9k adatok 0x0 \u00E9rt\u00E9kkel lettek kit\u00F6ltve.
XJ013.S=A megnevezett ment\u00E9si pontokhoz nem tal\u00E1lhat\u00F3 azonos\u00EDt\u00F3.
XJ084.U=Az oszlop nem felel meg az alapt\u00E1bla oszlop\u00E1nak. Az oszlopon ''{0}'' nem adhat\u00F3 ki.
22005=K\u00EDs\u00E9rlet t\u00F6rt\u00E9nt ''{0}'' t\u00EDpus\u00FA adat\u00E9rt\u00E9k lek\u00E9r\u00E9s\u00E9re egy ''{1}'' t\u00EDpus\u00FA adat\u00E9rt\u00E9kb\u0151l.
XJ04B.S=A k\u00F6teg nem tartalmazhat olyan parancsot, amely eredm\u00E9nyhalmazt pr\u00F3b\u00E1l visszaadni.
22003=Az eredm\u00E9ny\u00FCl kapott \u00E9rt\u00E9k k\u00EDv\u00FCl esik a(z) {0} adatt\u00EDpus tartom\u00E1ny\u00E1n.
XN015.S=H\u00E1l\u00F3zati protokoll hiba\: az InputStream megadott m\u00E9rete (\#{0} param\u00E9ter) az aktu\u00E1lis InputStream hosszn\u00E1l kisebb.
XJ011.S=Null\u00E9rt\u00E9k nem adhat\u00F3 \u00E1t a ment\u00E9si pont nevek\u00E9nt.
XJ082.U=A BLOB/CLOB \u00E9rt\u00E9kek met\u00F3dusparam\u00E9terk\u00E9nt vagy fogad\u00F3k\u00E9nt nem megengedettek.
XJ069.S=USING v\u00E9grehajt\u00E1si utas\u00EDt\u00E1s eset\u00E9n a SetXXX met\u00F3dus nem enged\u00E9lyezett.
XJ100.S=A registerOutParameter met\u00F3dus \u00E1ltal biztos\u00EDtott sk\u00E1la nem felel meg a setter met\u00F3dusnak. Pontoss\u00E1gveszt\u00E9s l\u00E9phet fel\!
XN013.S=\u00C9rv\u00E9nytelen g\u00F6rget\u00E9si t\u00E1jol\u00E1s.
01J13=A visszaadott sorok sz\u00E1ma ({0}) t\u00FAl nagy ahhoz, hogy eg\u00E9sz (integer) \u00E9rt\u00E9knek megfeleljen; a visszaadott \u00E9rt\u00E9k csonkol\u00E1sra ker\u00FCl.
XJ080.S=A USING v\u00E9grehajt\u00E1si utas\u00EDt\u00E1s {1} helyett {0} param\u00E9tert adott \u00E1t.
01J12=A kiszolg\u00E1l\u00F3r\u00F3l nem k\u00E9rdezhet\u0151 le sz\u00F6veg. Tekintse meg a k\u00F6vetkez\u0151 kiv\u00E9telt. A SYSIBM.SQLCAMESSAGE t\u00E1rolt elj\u00E1r\u00E1s a kiszolg\u00E1l\u00F3n nem t\u00E1mogatott. L\u00E9pjen kapcsolatba az adatb\u00E1zis-adminisztr\u00E1torral.
XJ067.S=Az SQL sz\u00F6vegmutat\u00F3 null.
01J10=A g\u00F6rget\u00E9s ig\u00E9nyes eredm\u00E9nyhalmazokat a kiszolg\u00E1l\u00F3 nem t\u00E1mogatja; \u00FAjb\u00F3li lek\u00E9pez\u00E9s a csak el\u0151re kurzorra
XN011.S=Az elj\u00E1r\u00E1sn\u00E9v {0} hossza nem esik az 1 - {1} \u00E9rv\u00E9nyes tartom\u00E1nyba.
58009.C.9=H\u00E1l\u00F3zati protokollkiv\u00E9tel\: Az PKGNAMCSN hossz ({0}) \u00E9rv\u00E9nytelen az SQLAM {1} eset\u00E9n. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
58009.C.8=H\u00E1l\u00F3zati protokollkiv\u00E9tel\: Az SCLDTA hossz ({0}) \u00E9rv\u00E9nytelen a PKGID eset\u00E9n. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
XIE08.S=Nincs {0} nev\u0171 oszlop.
58009.C.7=H\u00E1l\u00F3zati protokollkiv\u00E9tel\: Az SCLDTA hossz ({0}) \u00E9rv\u00E9nytelen az RDBCOLID eset\u00E9n. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
XJ065.S=\u00C9rv\u00E9nytelen ''{0}'' param\u00E9ter\u00E9rt\u00E9k a Statement.setFetchSize(int rows) met\u00F3dushoz.
XJ063.S=\u00C9rv\u00E9nytelen ''{0}'' param\u00E9ter\u00E9rt\u00E9k a Statement.setMaxRows(int maxRows) met\u00F3dushoz. A param\u00E9ter\u00E9rt\u00E9k >\= 0 kell legyen.
X0Y78.S.2=A(z) {0}.executeQuery() megh\u00EDv\u00E1sra ker\u00FClt, de nem adott vissza eredm\u00E9nyt. A(z) {1}.executeUpdate() met\u00F3dust ne haszn\u00E1lja lek\u00E9rdez\u00E9sekhez.
X0Y78.S.1=A(z) {0}.executeQuery() nem h\u00EDvhat\u00F3 meg, mivel t\u00F6bb eredm\u00E9nyhalmaz ker\u00FClt visszaad\u00E1sra. A(z) {1}.execute() seg\u00EDts\u00E9g\u00E9vel t\u00F6bb eredm\u00E9nyt is lek\u00E9rhet.
XJ061.S=A(z) ''{0}'' met\u00F3dus csak g\u00F6rgethet\u0151 kurzorokon enged\u00E9lyezett.
01J08=A(z) {0} resultSet t\u00EDpus nem nyithat\u00F3 meg. A(z) {1} ResultSet t\u00EDpus meg van nyitva.
01J07=A ResultSetHoldability ResultSet.CLOSE_CURSORS_AT_COMMIT-ra korl\u00E1tozott egy glob\u00E1lis tranzakci\u00F3 eset\u00E9n.
01J06=A ResultSet nem friss\u00EDthet\u0151. A lek\u00E9rdez\u00E9s nem k\u00E9pes friss\u00EDthet\u0151 ResultSet el\u0151\u00E1ll\u00EDt\u00E1s\u00E1ra.
J028=ment\u00E9si el\u00E9r\u00E9si \u00FAt a visszag\u00F6rget\u00E9ses helyre\u00E1ll\u00EDt\u00E1shoz
XJ044.S=A(z) ''{0}'' \u00E9rv\u00E9nytelen sk\u00E1l\u00E1j\u00FA.
J025=napl\u00F3k\u00F6nyvt\u00E1r el\u00E9r\u00E9si \u00FAtja
J023=felhaszn\u00E1l\u00F3i jelsz\u00F3
08003.C.3=Az alapul szolg\u00E1l\u00F3 fizikai kapcsolat el\u00E9v\u00FClt vagy bez\u00E1rt.
J022=felhaszn\u00E1l\u00F3n\u00E9v
08003.C.2=A Lob met\u00F3dus a kapcsolat lez\u00E1r\u00E1sa ut\u00E1n ker\u00FClt megh\u00EDv\u00E1sra
J021=az adatb\u00E1zis ter\u00FClete
08003.C.1=A getConnection() a bez\u00E1rt PooledConnection kapcsolaton nem \u00E9rv\u00E9nyes.
J020=titkos kriptogr\u00E1fiai kulcs
XJ042.S=A(z) ''{0}'' a(z) ''{1}'' tulajdons\u00E1g \u00E9rv\u00E9nytelen \u00E9rt\u00E9k.
XJ209.S=A k\u00EDv\u00E1nt t\u00E1rolt elj\u00E1r\u00E1s nincs telep\u00EDtve a kiszolg\u00E1l\u00F3n.
XJ118.S=A lek\u00E9rdez\u00E9s k\u00F6tegel\u00E9st nem lek\u00E9rdez\u00E9s utas\u00EDt\u00E1son k\u00E9rt\u00E9k.
XJ207.S=Az executeQuery met\u00F3dus friss\u00EDt\u00E9shez nem haszn\u00E1lhat\u00F3.
58017.C=A 0x{0} DDM param\u00E9ter\u00E9rt\u00E9k nem t\u00E1mogatott. Elk\u00E9pzelhet\u0151, hogy a bemeneti gazda v\u00E1ltoz\u00F3 nem a kiszolg\u00E1l\u00F3 \u00E1ltal t\u00E1mogatott tartom\u00E1nyba esik. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
XJ098.S=Az automatikusan el\u0151\u00E1ll\u00EDtott kulcsok {0} \u00E9rt\u00E9ke \u00E9rv\u00E9nytelen
XJ116.S=Egy k\u00F6teghez maximum {0} parancs adhat\u00F3 hozz\u00E1.
XJ025.S=A bemen\u0151 folyam hossza nem lehet negat\u00EDv.
XJ096.S=A(z) {0} csomagban a(z) {1} elemhez nem tal\u00E1lhat\u00F3 er\u0151forr\u00E1sk\u00F6teg
58015.C=A 0x{0} DDM objektum nem t\u00E1mogatott. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
XJ114.S=\u00C9rv\u00E9nytelen kurzorn\u00E9v\: ''{0}''
XJ023.S=A bemen\u0151 folyam nem pontosan a k\u00E9rt hossznyi mennyis\u00E9g\u0171 adattal rendelkezik.
J019=k\u00FCls\u0151 kriptogr\u00E1fiai kulcs
XJ203.S=A(z) ''{0}'' kurzor m\u00E1r haszn\u00E1latban van
J018=kriptogr\u00E1fiai kulcs hossza
XJ040.C=A(z) ''{0}'' adatb\u00E1zis ind\u00EDt\u00E1sa meghi\u00FAsult, r\u00E9szlek\u00E9rt tekintse meg a k\u00F6vetkez\u0151 kiv\u00E9telt.
J017=kriptogr\u00E1fiai algoritmus
J016=kriptogr\u00E1fiai szolg\u00E1ltat\u00F3
XJ094.S=Az objektum m\u00E1r be lett z\u00E1rva.
XJ112.S=Biztons\u00E1gi kiv\u00E9tel t\u00F6rt\u00E9nt. R\u00E9szletek\u00E9rt tekintse meg a kiv\u00E9telt.
J013=adatb\u00E1zis friss\u00EDt\u00E9se
42622=A(z) ''{0}'' n\u00E9v t\u00FAl hossz\u00FA. A maxim\u00E1lis hossz ''{1}''.
XJ021.S=A t\u00EDpus nem t\u00E1mogatott.
22007.S.181=A d\u00E1tum/id\u0151pont \u00E9rt\u00E9k karaktersorozat \u00E1br\u00E1zol\u00E1s\u00E1nak szintaxisa helytelen.
XJ008.S=Automatikus v\u00E9gleges\u00EDt\u00E9s m\u00F3dban a ment\u00E9si pont nem g\u00F6rgethet\u0151 vissza vagy szabad\u00EDthat\u00F3 fel.
J010=adatb\u00E1zis titkos\u00EDt\u00E1sa a lemezen
XJ110.S=Az els\u0151dleges t\u00E1blan\u00E9v nem lehet \u00FCres
XJ079.S=A(z) ''{0}'' megadott hossz t\u00FAll\u00E9pi a BLOB/CLOB m\u00E9ret\u00E9t.
2D521.S.2=A COMMIT vagy ROLLBACK \u00E9rv\u00E9nytelen alkalmaz\u00E1sv\u00E9grehajt\u00E1si k\u00F6rnyezetben.
2D521.S.1=A setAutoCommit(true) \u00E9rv\u00E9nytelen glob\u00E1lis tranzakci\u00F3 sor\u00E1n.
XJ090.S=\u00C9rv\u00E9nytelen param\u00E9ter\: a napt\u00E1r null\u00E9rt\u00E9k\u0171.
XJ077.S=Kiv\u00E9tel \u00E9rkezett a BLOB/CLOB minta els\u0151 byte-j\u00E1nak/karakter\u00E9nek getBytes/getSubString paranccsal val\u00F3 olvas\u00E1sa sor\u00E1n.
58009.C.21=H\u00E1l\u00F3zati protokollkiv\u00E9tel\: Az SCLDTA hossz ({0}) \u00E9rv\u00E9nytelen az RDBNAMhoz. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
58009.C.20=H\u00E1l\u00F3zati protokollkiv\u00E9tel\: az NVCM \u00E9s NVCS k\u00F6z\u00FCl csak az egyik lehet nem null \u00E9rt\u00E9k\u0171. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
XJ05B.C=A(z) ''{0}'' JDBC \u00E9rv\u00E9nytelen ''{1}'' \u00E9rt\u00E9kkel rendelkezik. \u00C9rv\u00E9nyes \u00E9rt\u00E9kek\: ''{2}''.
XN008.S=A lek\u00E9rdez\u00E9sfeldolgoz\u00E1s a kiszolg\u00E1l\u00F3 hib\u00E1ja miatt lez\u00E1rult.
XCL13.S=A(z) ''{0}'' param\u00E9terpoz\u00EDci\u00F3 k\u00EDv\u00FCl van a megengedett tartom\u00E1nyon. Az el\u0151k\u00E9sz\u00EDtett utas\u00EDt\u00E1s param\u00E9tereinek sz\u00E1ma ''{1}''.
08006.C.6=A lob adatok teljes megval\u00F3sul\u00E1s\u00EDt\u00E1s\u00E1ra t\u00F6rt\u00E9nt k\u00EDs\u00E9rlet, amely a JVM-hez t\u00FAl nagy. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
08006.C.5=Nem \u00E9rkezett elegend\u0151 adat a h\u00E1l\u00F3zatr\u00F3l olvas\u00E1s k\u00F6zben - a minim\u00E1lisan v\u00E1rt {0} byte helyett csak {1} byte \u00E9rkezett. A kapcsolat lez\u00E1r\u00E1sra ker\u00FClt.
J008=nincsenek r\u00E9szletek
XJ073.S=A BLOB vagy CLOB adatai m\u00E1r nem el\u00E9rhet\u0151k. A BLOB/CLOB tranzakci\u00F3ja v\u00E9gleges\u00EDtve lett, vagy kapcsolata lez\u00E1rult.
08006.C.4=Hiba t\u00F6rt\u00E9nt egy visszautas\u00EDtott csatlakoz\u00E1s alaphelyzetbe \u00E1ll\u00EDt\u00E1s sor\u00E1n \u00E9s a kapcsolat lez\u00E1r\u00E1sra ker\u00FClt. R\u00E9szletek\u00E9rt tekintse meg a l\u00E1ncolt kiv\u00E9teleket.
J007=adatb\u00E1zis l\u00E9trehoz\u00E1sa
08006.C.3=Kommunik\u00E1ci\u00F3s hiba t\u00F6rt\u00E9nt\: {0}.
08006.C.2=SocketException kiv\u00E9tel\: ''{0}''
J005=Derby le\u00E1ll\u00EDt\u00E1sa
08006.C.1=Hiba t\u00F6rt\u00E9nt egy kapcsolat alaphelyzetbe \u00E1ll\u00EDt\u00E1s sor\u00E1n \u00E9s a kapcsolat lez\u00E1r\u00E1sra ker\u00FClt. R\u00E9szletek\u00E9rt tekintse meg a l\u00E1ncolt kiv\u00E9teleket.
J004=adatb\u00E1zis-azonoss\u00E1g
XJ004.C=A(z) ''{0}'' adatb\u00E1zis nem tal\u00E1lhat\u00F3.
XJ071.S=''{0}'' negat\u00EDv hosszargumentum ker\u00FClt \u00E1tad\u00E1sra a BLOB vagy CLOB...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions ยป

Submit New Assignment

Copy and Paste Your Assignment Here