Java Servlet

profileqrtwrmsb0rnu
c2_c2_c2_readwriteoradb.zip

.settings/.jsdtscope

.settings/org.eclipse.jdt.core.prefs

#Sun Nov 16 14:55:09 IST 2014 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 org.eclipse.jdt.core.compiler.compliance=1.7 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.source=1.7

.settings/org.eclipse.wst.common.component

.settings/org.eclipse.wst.common.project.facet.core.xml

.settings/org.eclipse.wst.jsdt.ui.superType.container

org.eclipse.wst.jsdt.launching.baseBrowserLibrary

.settings/org.eclipse.wst.jsdt.ui.superType.name

Window

build/classes/readwrite/ReadWriteDB.class

                package readwrite;

                public 
                synchronized 
                class ReadWriteDB 
                extends javax.servlet.http.HttpServlet {
    
                public void ReadWriteDB();
    
                public void 
                doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) 
                throws javax.servlet.ServletException, java.io.IOException;
    
                public void 
                doPost(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) 
                throws javax.servlet.ServletException, java.io.IOException;
    
                private void 
                readFromDB(java.sql.Connection, java.io.PrintWriter) 
                throws java.sql.SQLException;
    
                private java.sql.Connection 
                writeToDB(javax.servlet.http.HttpServletRequest) 
                throws Exception;
}

            

src/readwrite/ReadWriteDB.java

package readwrite; /** * Table script CREATE table "SERVLETTBLEMPLOYEE" ( "FNAME" VARCHAR2(4000), "MNAME" VARCHAR2(4000), "LNAME" VARCHAR2(4000) ) */ import java.io.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import javax.servlet.*; import javax.servlet.http.*; public class ReadWriteDB extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { PrintWriter out = res.getWriter(); out.println(""); out.println(""); out.println("Enter First name: "); out.println("Enter middle name: "); out.println("Enter last name: "); out.println(" "); out.println(" "); out.println(""); out.close(); } public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { PrintWriter out = res.getWriter(); Connection con = null; try { con = writeToDB(req); if (con != null) { readFromDB(con,out); con.close(); } } catch (Exception e) { } } private void readFromDB(Connection con, PrintWriter pw) throws SQLException { Statement st=con.createStatement(); System.out.println("connection established successfully...!!"); ResultSet rs=st.executeQuery("Select * from SERVLETTBLEMPLOYEE"); pw.println(" "); while(rs.next()) { pw.println("
"+rs.getString(1)+" "+rs.getString(2)+"
"+ "
"+rs.getString(3)+"
"); } pw.println(""); pw.close(); } private Connection writeToDB(HttpServletRequest req) throws Exception { Connection con = null; PreparedStatement ps = null; try { Class.forName("oracle.jdbc.driver.OracleDriver"); con = DriverManager.getConnection( "jdbc:oracle:thin:@localhost:1521:xe", "system", "manager"); ps = con.prepareStatement("insert into SERVLETTBLEMPLOYEE values(?,?,?)"); ps.setString(1, req.getParameter("fname")); ps.setString(2, req.getParameter("mname")); ps.setString(3, req.getParameter("lname")); int i = ps.executeUpdate(); } catch (Exception e2) { System.out.println(e2); } finally { ps.close(); } return con; } }

WebContent/META-INF/MANIFEST.MF

Manifest-Version: 1.0 Class-Path:

WebContent/WEB-INF/lib/ojdbc14.jar

META-INF/MANIFEST.MF

Manifest-Version: 1.0 Specification-Title: Oracle JDBC driver classes for use with JDK14 Sealed: true Created-By: 1.4.2_08 (Sun Microsystems Inc.) Implementation-Title: ojdbc14.jar Specification-Vendor: Oracle Corporation Specification-Version: Oracle JDBC Driver version - "10.2.0.1.0XE" Implementation-Version: Oracle JDBC Driver version - "10.2.0.1.0XE" Implementation-Vendor: Oracle Corporation Implementation-Time: Wed Jan 25 01:28:31 2006 Name: oracle/sql/converter/ Sealed: false Name: oracle/sql/ Sealed: false Name: oracle/sql/converter_xcharset/ Sealed: false

oracle/net/TNSAddress/Address.class

                    package oracle.net.TNSAddress;

                    public 
                    synchronized 
                    class Address 
                    implements SchemaObject {
    
                    public String 
                    addr;
    
                    public String 
                    prot;
    
                    protected SchemaObjectFactoryInterface 
                    f;
    
                    public void Address(SchemaObjectFactoryInterface);
    
                    public int 
                    isA();
    
                    public String 
                    isA_String();
    
                    public void 
                    initFromString(String) 
                    throws oracle.net.nl.NLException, SOException;
    
                    public void 
                    initFromNVPair(oracle.net.nl.NVPair) 
                    throws SOException;
    
                    public String 
                    toString();
    
                    public String 
                    getProtocol();
    
                    protected void 
                    init();
}

                

oracle/net/TNSAddress/AddressList.class

                    package oracle.net.TNSAddress;

                    public 
                    synchronized 
                    class AddressList 
                    implements SchemaObject {
    
                    public java.util.Vector 
                    children;
    
                    private SchemaObject 
                    child;
    
                    private oracle.net.nl.NVPair 
                    childnv;
    
                    public boolean 
                    sourceRoute;
    
                    public boolean 
                    loadBalance;
    
                    public boolean 
                    failover;
    
                    protected SchemaObjectFactoryInterface 
                    f;
    
                    public void AddressList(SchemaObjectFactoryInterface);
    
                    public int 
                    isA();
    
                    public String 
                    isA_String();
    
                    public void 
                    initFromString(String) 
                    throws oracle.net.nl.NLException, SOException;
    
                    public void 
                    initFromNVPair(oracle.net.nl.NVPair) 
                    throws SOException;
    
                    public String 
                    toString();
    
                    protected void 
                    init();
}

                

oracle/net/TNSAddress/Description.class

                    package oracle.net.TNSAddress;

                    public 
                    synchronized 
                    class Description 
                    implements SchemaObject {
    
                    public java.util.Vector 
                    children;
    
                    private SchemaObject 
                    child;
    
                    private oracle.net.nl.NVPair 
                    childnv;
    
                    protected SchemaObjectFactoryInterface 
                    f;
    
                    public boolean 
                    sourceRoute;
    
                    public boolean 
                    loadBalance;
    
                    public boolean 
                    failover;
    
                    public boolean 
                    keepAlive;
    
                    public String 
                    SDU;
    
                    public String 
                    TDU;
    
                    public java.util.Vector 
                    protocolStacks;
    
                    public String 
                    sendBufSize;
    
                    public String 
                    receiveBufSize;
    
                    public String 
                    connectData;
    
                    public String 
                    SID;
    
                    public String 
                    server;
    
                    public String 
                    failoverMode;
    
                    public String 
                    instanceRole;
    
                    public String 
                    serviceName;
    
                    public String 
                    instanceName;
    
                    public String 
                    handlerName;
    
                    public String 
                    oracleHome;
    
                    public String 
                    authTypes;
    
                    public String 
                    sslServerCertDN;
    
                    public java.util.Vector 
                    authParams;
    
                    public java.util.Vector 
                    extraConnInfo;
    
                    public java.util.Vector 
                    extraInfo;
    
                    public void Description(SchemaObjectFactoryInterface);
    
                    public int 
                    isA();
    
                    public String 
                    isA_String();
    
                    public void 
                    initFromString(String) 
                    throws oracle.net.nl.NLException, SOException;
    
                    public void 
                    initFromNVPair(oracle.net.nl.NVPair) 
                    throws SOException;
    
                    public String 
                    toString();
    
                    protected void 
                    init();
}

                

oracle/net/TNSAddress/DescriptionList.class

                    package oracle.net.TNSAddress;

                    public 
                    synchronized 
                    class DescriptionList 
                    implements SchemaObject {
    
                    public java.util.Vector 
                    children;
    
                    private SchemaObject 
                    child;
    
                    private oracle.net.nl.NVPair 
                    childnv;
    
                    public boolean 
                    sourceRoute;
    
                    public boolean 
                    loadBalance;
    
                    public boolean 
                    failover;
    
                    protected SchemaObjectFactoryInterface 
                    f;
    
                    public void DescriptionList(SchemaObjectFactoryInterface);
    
                    public int 
                    isA();
    
                    public String 
                    isA_String();
    
                    public void 
                    initFromString(String) 
                    throws oracle.net.nl.NLException, SOException;
    
                    public void 
                    initFromNVPair(oracle.net.nl.NVPair) 
                    throws SOException;
    
                    public String 
                    toString();
    
                    protected void 
                    init();
}

                

oracle/net/TNSAddress/SOException.class

                    package oracle.net.TNSAddress;

                    public 
                    synchronized 
                    class SOException 
                    extends Throwable {
    
                    public String 
                    error;
    
                    public void SOException();
    
                    public void SOException(String);
}

                

oracle/net/TNSAddress/SchemaObject.class

                    package oracle.net.TNSAddress;

                    public 
                    abstract 
                    interface SchemaObject {
    
                    public 
                    static 
                    final int 
                    ADDR = 0;
    
                    public 
                    static 
                    final int 
                    ADDR_LIST = 1;
    
                    public 
                    static 
                    final int 
                    DESC = 2;
    
                    public 
                    static 
                    final int 
                    DESC_LIST = 3;
    
                    public 
                    static 
                    final int 
                    ALIAS = 4;
    
                    public 
                    static 
                    final int 
                    SERVICE = 5;
    
                    public 
                    static 
                    final int 
                    DB_SERVICE = 6;
    
                    public 
                    abstract int 
                    isA();
    
                    public 
                    abstract String 
                    isA_String();
    
                    public 
                    abstract void 
                    initFromString(String) 
                    throws oracle.net.nl.NLException, SOException;
    
                    public 
                    abstract void 
                    initFromNVPair(oracle.net.nl.NVPair) 
                    throws SOException;
    
                    public 
                    abstract String 
                    toString();
}

                

oracle/net/TNSAddress/SchemaObjectFactory.class

                    package oracle.net.TNSAddress;

                    public 
                    synchronized 
                    class SchemaObjectFactory 
                    implements SchemaObjectFactoryInterface {
    
                    public void SchemaObjectFactory();
    
                    public SchemaObject 
                    create(int);
}

                

oracle/net/TNSAddress/SchemaObjectFactoryInterface.class

                    package oracle.net.TNSAddress;

                    public 
                    abstract 
                    interface SchemaObjectFactoryInterface {
    
                    public 
                    static 
                    final int 
                    ADDR = 0;
    
                    public 
                    static 
                    final int 
                    ADDR_LIST = 1;
    
                    public 
                    static 
                    final int 
                    DESC = 2;
    
                    public 
                    static 
                    final int 
                    DESC_LIST = 3;
    
                    public 
                    static 
                    final int 
                    ALIAS = 4;
    
                    public 
                    static 
                    final int 
                    SERVICE = 5;
    
                    public 
                    static 
                    final int 
                    DB_SERVICE = 6;
    
                    public 
                    abstract SchemaObject 
                    create(int);
}

                

oracle/net/TNSAddress/ServiceAlias.class

                    package oracle.net.TNSAddress;

                    public 
                    synchronized 
                    class ServiceAlias 
                    implements SchemaObject {
    
                    protected SchemaObject 
                    child;
    
                    public String 
                    name;
    
                    private SchemaObjectFactoryInterface 
                    f;
    
                    public void ServiceAlias(SchemaObjectFactoryInterface);
    
                    public int 
                    isA();
    
                    public String 
                    isA_String();
    
                    public void 
                    initFromString(String) 
                    throws oracle.net.nl.NLException, SOException;
    
                    public void 
                    initFromNVPair(oracle.net.nl.NVPair) 
                    throws SOException;
    
                    public String 
                    toString();
}

                

oracle/net/nl/InvalidSyntaxException.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class InvalidSyntaxException 
                    extends NLException {
    
                    public void InvalidSyntaxException(String);
    
                    public void InvalidSyntaxException(String, Object);
    
                    public void InvalidSyntaxException(String, Object[]);
}

                

oracle/net/nl/NLException.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class NLException 
                    extends Exception {
    
                    public Object[] 
                    msg_params;
    
                    private String 
                    error_index;
    
                    private String 
                    error_msg;
    
                    public void NLException(String);
    
                    public void NLException(String, Object);
    
                    public void NLException(String, Object[]);
    
                    private void 
                    initErrorMessage();
    
                    public String 
                    toString();
    
                    public String 
                    getErrorIndex();
    
                    public String 
                    getErrorMessage();
    
                    public String 
                    getMessage();
}

                

oracle/net/nl/NLParamParser.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class NLParamParser {
    
                    private String 
                    filename;
    
                    private java.util.Hashtable 
                    ht;
    
                    private java.util.Vector 
                    linebuffer;
    
                    private int 
                    filePermissions;
    
                    private int 
                    Commentcnt;
    
                    private int 
                    nvStringcnt;
    
                    private int 
                    Groupcnt;
    
                    private boolean 
                    hasComments;
    
                    private boolean 
                    hasGroups;
    
                    private String[] 
                    errstr;
    
                    private int 
                    errstrcnt;
    
                    public 
                    static 
                    final byte 
                    IGNORE_NONE = 0;
    
                    public 
                    static 
                    final byte 
                    IGNORE_NL_EXCEPTION = 1;
    
                    public 
                    static 
                    final byte 
                    IGNORE_FILE_EXCEPTION = 2;
    
                    public 
                    static 
                    final byte 
                    NLPASUCC = 1;
    
                    public 
                    static 
                    final byte 
                    NLPAOVWR = 2;
    
                    public 
                    static 
                    final byte 
                    NLPAFAIL = -1;
    
                    private 
                    static boolean 
                    DEBUG;
    
                    public 
                    static NLParamParser 
                    createEmptyParamParser();
    
                    private void NLParamParser();
    
                    public void NLParamParser(String) 
                    throws java.io.IOException, NLException;
    
                    public void NLParamParser(String, byte) 
                    throws NLException, java.io.IOException;
    
                    public void NLParamParser(java.io.Reader) 
                    throws java.io.IOException, NLException;
    
                    public void NLParamParser(java.io.Reader, byte) 
                    throws java.io.IOException, NLException;
    
                    private void 
                    initializeNlpa(java.io.BufferedReader, byte) 
                    throws java.io.IOException, NLException;
    
                    private String 
                    modifyCommentString(String);
    
                    private String 
                    checkNLPforComments(String);
    
                    private String 
                    eatNLPWS(String);
    
                    public void 
                    saveNLParams() 
                    throws java.io.IOException;
    
                    public void 
                    writeToStream(java.io.Writer, String, String);
    
                    public void 
                    saveNLParams(String) 
                    throws java.io.FileNotFoundException, java.io.IOException;
    
                    public String 
                    getFilename();
    
                    public boolean 
                    configuredInFile();
    
                    public int 
                    getNLPListSize();
    
                    public boolean 
                    inErrorList(String);
    
                    public NVPair 
                    getNLPListElement(String);
    
                    public String[] 
                    getNLPAllNames();
    
                    public String[] 
                    getNLPAllElements();
    
                    public byte 
                    addNLPListElement(String, Object);
    
                    public void 
                    addNLPGroupProfile(String[]);
    
                    private String[] 
                    getNLPGroupProfile(String);
    
                    private void 
                    saveNLPGroups(java.io.PrintWriter);
    
                    public void 
                    addNLPListElement(String) 
                    throws NLException;
    
                    public NVPair 
                    removeNLPListElement(String);
    
                    public void 
                    removeNLPGroupProfile(String);
    
                    public void 
                    removeNLPAllElements();
    
                    public String 
                    toString();
    
                    public boolean 
                    fileHasComments();
    
                    public void 
                    println();
    
                    public void 
                    setFilePermissions(int);
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/NVFactory.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class NVFactory {
    
                    public void NVFactory();
    
                    public NVPair 
                    createNVPair(String) 
                    throws InvalidSyntaxException, NLException;
    
                    private NVPair 
                    _readTopLevelNVPair(NVTokens) 
                    throws InvalidSyntaxException, NLException;
    
                    private NVPair 
                    _readNVPair(NVTokens) 
                    throws InvalidSyntaxException, NLException;
    
                    private NVPair 
                    _readRightHandSide(NVPair, NVTokens) 
                    throws InvalidSyntaxException, NLException;
    
                    private String 
                    _readNVLiteral(NVTokens) 
                    throws InvalidSyntaxException, NLException;
    
                    private void 
                    _readNVList(NVTokens, NVPair) 
                    throws InvalidSyntaxException, NLException;
    
                    private String 
                    getContext(NVTokens) 
                    throws NLException;
}

                

oracle/net/nl/NVNavigator.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class NVNavigator {
    
                    public void NVNavigator();
    
                    public NVPair 
                    findNVPairRecurse(NVPair, String);
    
                    public NVPair 
                    findNVPair(NVPair, String);
    
                    public NVPair 
                    findNVPair(NVPair, String[]);
}

                

oracle/net/nl/NVPair.class

                    package oracle.net.nl;

                    public 
                    final 
                    synchronized 
                    class NVPair {
    
                    public 
                    static int 
                    RHS_NONE;
    
                    public 
                    static int 
                    RHS_ATOM;
    
                    public 
                    static int 
                    RHS_LIST;
    
                    public 
                    static int 
                    LIST_REGULAR;
    
                    public 
                    static int 
                    LIST_COMMASEP;
    
                    private String 
                    _name;
    
                    private int 
                    _rhsType;
    
                    private String 
                    _atom;
    
                    private java.util.Vector 
                    _list;
    
                    private int 
                    _listType;
    
                    private NVPair 
                    _parent;
    
                    private String 
                    _linesep;
    
                    public void NVPair(String);
    
                    public void NVPair(String, String) 
                    throws InvalidSyntaxException;
    
                    public void NVPair(String, NVPair);
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public NVPair 
                    getParent();
    
                    private void 
                    _setParent(NVPair);
    
                    public int 
                    getRHSType();
    
                    public int 
                    getListType();
    
                    public void 
                    setListType(int);
    
                    public String 
                    getAtom();
    
                    public void 
                    setAtom(String) 
                    throws InvalidSyntaxException;
    
                    private boolean 
                    containsComment(String);
    
                    public int 
                    getListSize();
    
                    public NVPair 
                    getListElement(int);
    
                    public void 
                    addListElement(NVPair);
    
                    public void 
                    removeListElement(int);
    
                    private String 
                    space(int);
    
                    public String 
                    trimValueToString();
    
                    public String 
                    valueToString();
    
                    public String 
                    toString();
    
                    public String 
                    toString(int, boolean);
    
                    public String 
                    modifyCommentString(String);
    
                    public void 
                    println();
    
                    public void 
                    println(java.io.PrintStream);
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/NVTokens.class

                    package oracle.net.nl;

                    public 
                    final 
                    synchronized 
                    class NVTokens {
    
                    public 
                    static 
                    final int 
                    TKN_NONE = 0;
    
                    public 
                    static 
                    final int 
                    TKN_LPAREN = 1;
    
                    public 
                    static 
                    final int 
                    TKN_RPAREN = 2;
    
                    public 
                    static 
                    final int 
                    TKN_COMMA = 3;
    
                    public 
                    static 
                    final int 
                    TKN_EQUAL = 4;
    
                    public 
                    static 
                    final int 
                    TKN_LITERAL = 8;
    
                    public 
                    static 
                    final int 
                    TKN_EOS = 9;
    
                    private 
                    static 
                    final char 
                    TKN_LPAREN_VALUE = 40;
    
                    private 
                    static 
                    final char 
                    TKN_RPAREN_VALUE = 41;
    
                    private 
                    static 
                    final char 
                    TKN_COMMA_VALUE = 44;
    
                    private 
                    static 
                    final char 
                    TKN_EQUAL_VALUE = 61;
    
                    private 
                    static 
                    final char 
                    TKN_BKSLASH_VALUE = 92;
    
                    private 
                    static 
                    final char 
                    TKN_DQUOTE_VALUE = 34;
    
                    private 
                    static 
                    final char 
                    TKN_SQUOTE_VALUE = 39;
    
                    private 
                    static 
                    final char 
                    TKN_EOS_VALUE = 37;
    
                    private 
                    static 
                    final char 
                    TKN_SPC_VALUE = 32;
    
                    private 
                    static 
                    final char 
                    TKN_TAB_VALUE = 9;
    
                    private 
                    static 
                    final char 
                    TKN_LF_VALUE = 10;
    
                    private 
                    static 
                    final char 
                    TKN_CR_VALUE = 13;
    
                    private java.util.Vector 
                    _tkType;
    
                    private java.util.Vector 
                    _tkValue;
    
                    private int 
                    _numTokens;
    
                    private int 
                    _tkPos;
    
                    public void NVTokens();
    
                    private 
                    static boolean 
                    _isWhiteSpace(char);
    
                    private 
                    static String 
                    _trimWhiteSpace(String);
    
                    public boolean 
                    parseTokens(String);
    
                    public int 
                    getToken() 
                    throws NLException;
    
                    public int 
                    popToken() 
                    throws UninitializedObjectException, NLException;
    
                    public String 
                    getLiteral() 
                    throws NLException;
    
                    public String 
                    popLiteral() 
                    throws NLException;
    
                    public void 
                    eatToken();
    
                    public String 
                    toString();
    
                    public void 
                    println();
    
                    private void 
                    _addToken(int, char);
    
                    private void 
                    _addToken(int, String);
}

                

oracle/net/nl/NetStrings.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class NetStrings {
    java.util.ResourceBundle 
                    strBundle;
    java.util.Locale 
                    loc;
    
                    public void NetStrings(String, java.util.Locale);
    
                    public void NetStrings(java.util.Locale);
    
                    public void NetStrings();
    
                    public String 
                    getString(String);
    
                    public String 
                    getString(String, Object[]);
}

                

oracle/net/nl/RepConversion.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class RepConversion {
    
                    public void RepConversion();
    
                    public 
                    static void 
                    printInHex(byte);
    
                    public 
                    static byte 
                    nibbleToHex(byte);
    
                    public 
                    static byte 
                    asciiHexToNibble(byte);
    
                    public 
                    static void 
                    bArray2nibbles(byte[], byte[]);
    
                    public 
                    static String 
                    bArray2String(byte[]);
    
                    public 
                    static byte[] 
                    nibbles2bArray(byte[]);
    
                    public 
                    static void 
                    printInHex(long);
    
                    public 
                    static void 
                    printInHex(int);
    
                    public 
                    static void 
                    printInHex(short);
    
                    public 
                    static byte[] 
                    toHex(long);
    
                    public 
                    static byte[] 
                    toHex(int);
    
                    public 
                    static byte[] 
                    toHex(short);
}

                

oracle/net/nl/UninitializedObjectException.class

                    package oracle.net.nl;

                    public 
                    synchronized 
                    class UninitializedObjectException 
                    extends NLException {
    
                    public void UninitializedObjectException(String);
    
                    public void UninitializedObjectException(String, Object);
    
                    public void UninitializedObjectException(String, Object[]);
}

                

oracle/net/nl/mesg/NLSR.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_ar.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_ar 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_ar();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_cs.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_cs 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_cs();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_da.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_da 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_da();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_de.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_de 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_de();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_el.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_el 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_el();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_en.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_en 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_en();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_es.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_es 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_es();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_fi.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_fi 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_fi();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_fr.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_fr 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_fr();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_hu.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_hu 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_hu();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_it.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_it 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_it();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_iw.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_iw 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_iw();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_ja.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_ja 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_ja();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_ko.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_ko 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_ko();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_nl.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_nl 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_nl();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_no.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_no 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_no();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_pl.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_pl 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_pl();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_pt.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_pt 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_pt();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_pt_BR.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_pt_BR 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_pt_BR();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_ro.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_ro 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_ro();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_ru.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_ru 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_ru();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_sk.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_sk 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_sk();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_sv.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_sv 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_sv();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_th.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_th 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_th();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_tr.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_tr 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_tr();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_zh_CN.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_zh_CN 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_zh_CN();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nl/mesg/NLSR_zh_TW.class

                    package oracle.net.nl.mesg;

                    public 
                    synchronized 
                    class NLSR_zh_TW 
                    extends java.util.ListResourceBundle {
    
                    static 
                    final Object[][] 
                    contents;
    
                    public void NLSR_zh_TW();
    
                    public Object[][] 
                    getContents();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nt/ConnOption.class

                    package oracle.net.nt;

                    public 
                    synchronized 
                    class ConnOption {
    
                    public NTAdapter 
                    nt;
    
                    public int 
                    port;
    
                    public int 
                    tdu;
    
                    public int 
                    sdu;
    
                    public String 
                    protocol;
    
                    public String 
                    host;
    
                    public String 
                    sid;
    
                    public String 
                    addr;
    
                    public String 
                    service_name;
    
                    public String 
                    instance_name;
    
                    public StringBuffer 
                    conn_data;
    
                    public String 
                    sslServerCertDN;
    
                    public String 
                    origSSLServerCertDN;
    
                    public String 
                    origServiceName;
    
                    public String 
                    origSid;
    
                    public boolean 
                    done;
    
                    public void ConnOption();
    
                    private NTAdapter 
                    getNT(java.util.Properties) 
                    throws oracle.net.ns.NetException;
    
                    public void 
                    connect(java.util.Properties) 
                    throws java.io.IOException;
    
                    private void 
                    populateProtocol() 
                    throws oracle.net.nl.NLException;
    
                    public void 
                    restoreFromOrigCoption(ConnOption) 
                    throws java.io.IOException;
}

                

oracle/net/nt/ConnStrategy.class

                    package oracle.net.nt;

                    public 
                    synchronized 
                    class ConnStrategy {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    private boolean 
                    optFound;
    
                    public boolean 
                    reuseOpt;
    
                    private ConnOption 
                    copt;
    
                    public int 
                    sdu;
    
                    public int 
                    tdu;
    
                    public int 
                    nextOptToTry;
    
                    public java.util.Properties 
                    socketOptions;
    
                    public java.util.Vector 
                    cOpts;
    
                    public void ConnStrategy(java.util.Properties);
    
                    public void 
                    createSocketOptions(java.util.Properties);
    
                    public void 
                    addSocketOptions(boolean);
    
                    public void 
                    addOption(ConnOption);
    
                    public boolean 
                    hasMoreOptions();
    
                    public ConnOption 
                    execute() 
                    throws oracle.net.ns.NetException;
    
                    public boolean 
                    optAvailable();
    
                    public void 
                    clearElements();
    
                    public ConnOption 
                    getOption();
}

                

oracle/net/nt/CustomSSLSocketFactory.class

                    package oracle.net.nt;

                    public 
                    synchronized 
                    class CustomSSLSocketFactory {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    public 
                    static 
                    final String 
                    CLEAR_WALLET_FILE_NAME = cwallet.sso;
    
                    public 
                    static 
                    final String 
                    CLEAR_WALLET_TYPE = SSO;
    
                    public 
                    static 
                    final String 
                    SUPPORTED_METHOD_TYPE = FILE;
    
                    public 
                    static javax.net.ssl.SSLSocketFactory 
                    defSSLFactory;
    
                    public 
                    static String 
                    defPropString;
    
                    public 
                    static boolean 
                    initDefFactory;
    
                    private void CustomSSLSocketFactory();
    
                    public 
                    static javax.net.ssl.SSLSocketFactory 
                    getSSLSocketFactory(java.util.Properties) 
                    throws java.io.IOException;
    
                    public 
                    static javax.net.ssl.KeyManager[] 
                    getKeyManagerArray(String, String, String, String) 
                    throws java.io.IOException;
    
                    public 
                    static javax.net.ssl.TrustManager[] 
                    getTrustManagerArray(String, String, String, String) 
                    throws java.io.IOException;
    
                    public 
                    static String 
                    processWalletLocation(String) 
                    throws oracle.net.ns.NetException;
    
                    public 
                    static String 
                    getDefaultPropertiesString();
    
                    static void 
                    <clinit>();
}

                

oracle/net/nt/NTAdapter.class

                    package oracle.net.nt;

                    public 
                    abstract 
                    interface NTAdapter {
    
                    public 
                    abstract void 
                    connect() 
                    throws java.io.IOException;
    
                    public 
                    abstract void 
                    disconnect() 
                    throws java.io.IOException;
    
                    public 
                    abstract java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public 
                    abstract java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
    
                    public 
                    abstract void 
                    setOption(int, Object) 
                    throws java.io.IOException, oracle.net.ns.NetException;
    
                    public 
                    abstract Object 
                    getOption(int) 
                    throws java.io.IOException, oracle.net.ns.NetException;
    
                    public 
                    abstract void 
                    abort() 
                    throws java.io.IOException, oracle.net.ns.NetException;
}

                

oracle/net/nt/TcpNTAdapter.class

                    package oracle.net.nt;

                    public 
                    synchronized 
                    class TcpNTAdapter 
                    implements NTAdapter {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    int 
                    port;
    String 
                    host;
    
                    protected java.net.Socket 
                    socket;
    
                    protected int 
                    sockTimeout;
    
                    protected java.util.Properties 
                    socketOptions;
    
                    public void TcpNTAdapter(String, java.util.Properties) 
                    throws oracle.net.nl.NLException;
    
                    public void 
                    connect() 
                    throws java.io.IOException;
    
                    public void 
                    setSocketOptions() 
                    throws java.io.IOException;
    
                    public void 
                    disconnect() 
                    throws java.io.IOException;
    
                    public java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
    
                    public void 
                    setOption(int, Object) 
                    throws java.io.IOException, oracle.net.ns.NetException;
    
                    public Object 
                    getOption(int) 
                    throws java.io.IOException, oracle.net.ns.NetException;
    
                    private void 
                    setSocketTimeout(int) 
                    throws java.io.IOException;
    
                    public void 
                    abort() 
                    throws oracle.net.ns.NetException, java.io.IOException;
}

                

oracle/net/nt/TcpsConfigure.class

                    package oracle.net.nt;

                    public 
                    synchronized 
                    class TcpsConfigure {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    public 
                    static 
                    final String[] 
                    VALID_SSL_VERSION_STRINGS;
    
                    public 
                    static 
                    final String[][] 
                    TABLE_ENABLED_SSL_PROTOCOLS;
    
                    public 
                    static 
                    final int[] 
                    VALID_SSL_STRING_TO_PROTOCOLS_MAP;
    
                    private void TcpsConfigure();
    
                    public 
                    static void 
                    configureVersion(javax.net.ssl.SSLSocket, String) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public 
                    static void 
                    configureCipherSuites(javax.net.ssl.SSLSocket, String) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public 
                    static boolean 
                    matchServerDN(String, String, boolean);
    
                    public 
                    static String 
                    normalizeDN(String);
    
                    public 
                    static String 
                    reverseDN(String);
    
                    static void 
                    <clinit>();
}

                

oracle/net/nt/TcpsNTAdapter.class

                    package oracle.net.nt;

                    public 
                    synchronized 
                    class TcpsNTAdapter 
                    extends TcpNTAdapter {
    String 
                    matchSSLServerCertDNWith;
    boolean 
                    fullDNMatch;
    
                    public void TcpsNTAdapter(String, java.util.Properties) 
                    throws oracle.net.nl.NLException;
    
                    public void 
                    connect() 
                    throws java.io.IOException;
    
                    public void 
                    setSSLSocketOptions() 
                    throws java.io.IOException;
    
                    public void 
                    setOption(int, Object) 
                    throws java.io.IOException, oracle.net.ns.NetException;
    
                    public Object 
                    getOption(int) 
                    throws java.io.IOException, oracle.net.ns.NetException;
    
                    public void 
                    setServerDNMatchValue(String[]);
}

                

oracle/net/jndi/CustomSSLSocketFactory.class

                    package oracle.net.jndi;

                    public 
                    synchronized 
                    class CustomSSLSocketFactory 
                    extends javax.net.ssl.SSLSocketFactory {
    
                    private 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    private 
                    static javax.net.ssl.SSLSocketFactory 
                    ossl;
    
                    protected 
                    static boolean 
                    isFactorySet();
    
                    protected 
                    static void 
                    setFactory(javax.net.ssl.SSLSocketFactory);
    
                    protected void 
                    setDefaultFactory();
    
                    protected void CustomSSLSocketFactory();
    
                    public 
                    static javax.net.SocketFactory 
                    getDefault();
    
                    public java.net.Socket 
                    createSocket(String, int) 
                    throws java.io.IOException;
    
                    public java.net.Socket 
                    createSocket(java.net.InetAddress, int) 
                    throws java.io.IOException;
    
                    public java.net.Socket 
                    createSocket(String, int, java.net.InetAddress, int) 
                    throws java.io.IOException;
    
                    public java.net.Socket 
                    createSocket(java.net.InetAddress, int, java.net.InetAddress, int) 
                    throws java.io.IOException;
    
                    public java.net.Socket 
                    createSocket(java.net.Socket, String, int, boolean) 
                    throws java.io.IOException;
    
                    public String[] 
                    getDefaultCipherSuites();
    
                    public String[] 
                    getSupportedCipherSuites();
    
                    private javax.net.ssl.SSLSocket 
                    init(javax.net.ssl.SSLSocket) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/net/jndi/JndiAttrs.class

                    package oracle.net.jndi;

                    public 
                    synchronized 
                    class JndiAttrs {
    
                    private java.util.Properties 
                    env;
    
                    private 
                    static 
                    final String 
                    nFactory = java.naming.factory.initial;
    
                    private 
                    static 
                    final String 
                    nProvider = java.naming.provider.url;
    
                    private 
                    static 
                    final String 
                    nProfile = ora-net-profile;
    
                    private 
                    static 
                    final String 
                    default_nFactory = com.sun.jndi.ldap.LdapCtxFactory;
    javax.naming.directory.DirContext 
                    ctx;
    
                    public void JndiAttrs(java.util.Properties) 
                    throws oracle.net.ns.NetException;
    
                    public java.util.Vector 
                    getProfileAttrs(String) 
                    throws oracle.net.ns.NetException;
    
                    public java.util.Vector 
                    getAttrs(String, String[]) 
                    throws oracle.net.ns.NetException;
    
                    private java.util.Vector 
                    setAttrs(javax.naming.directory.Attributes) 
                    throws oracle.net.ns.NetException;
    
                    public void 
                    setEnv(String, String);
    
                    public void 
                    close() 
                    throws oracle.net.ns.NetException;
    
                    public 
                    final String 
                    getLdapUrlUsed() 
                    throws oracle.net.ns.NetException;
}

                

oracle/net/jndi/TrustManager.class

                    package oracle.net.jndi;

                    public 
                    synchronized 
                    class TrustManager 
                    implements javax.net.ssl.X509TrustManager {
    javax.net.ssl.X509TrustManager 
                    nativeTm;
    
                    public void TrustManager();
    
                    public void 
                    checkServerTrusted(java.security.cert.X509Certificate[], String) 
                    throws java.security.cert.CertificateException;
    
                    public void 
                    checkClientTrusted(java.security.cert.X509Certificate[], String) 
                    throws java.security.cert.CertificateException;
    
                    public java.security.cert.X509Certificate[] 
                    getAcceptedIssuers();
}

                

oracle/net/jndi/TrustManagerSSLSocketFactory.class

                    package oracle.net.jndi;

                    public 
                    final 
                    synchronized 
                    class TrustManagerSSLSocketFactory 
                    extends CustomSSLSocketFactory {
    
                    private 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    protected void TrustManagerSSLSocketFactory();
    
                    protected void 
                    setDefaultFactory();
}

                

oracle/net/resolver/AddrResolution.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class AddrResolution {
    
                    private oracle.net.nt.ConnStrategy 
                    cs;
    
                    private java.util.Properties 
                    up;
    
                    private 
                    static 
                    final String 
                    default_proxy_rules = __jdbc__;
    
                    private 
                    static 
                    final String 
                    service_alias_name = ora-net-service-alias;
    
                    private 
                    static 
                    final String 
                    service_attr_name = orclnetdescstring;
    
                    private 
                    static 
                    final int 
                    length_of_alias_prefix = 6;
    
                    public 
                    static 
                    final int 
                    DEFAULT_DATABASE_PORT = 1521;
    
                    public 
                    static 
                    final String 
                    DEFAULT_CONNECT_PROTOCOL = TCP;
    
                    private boolean 
                    newSyntax;
    
                    public boolean 
                    connection_revised;
    
                    public boolean 
                    connection_redirected;
    
                    private String 
                    TNSAddress;
    
                    public void AddrResolution(String, java.util.Properties) 
                    throws oracle.net.ns.NetException;
    
                    private void 
                    processLdapFailoverLoadblance(String) 
                    throws oracle.net.ns.NetException;
    
                    public String 
                    getTNSAddress();
    
                    public oracle.net.nt.ConnOption 
                    resolveAndExecute(String) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    private void 
                    resolveSimple(String) 
                    throws oracle.net.ns.NetException;
    
                    private void 
                    resolveAddr(String) 
                    throws oracle.net.ns.NetException;
    
                    private void 
                    resolveAddrTree(String) 
                    throws oracle.net.ns.NetException;
    
                    private StringBuffer 
                    insertCID(String) 
                    throws oracle.net.ns.NetException;
    
                    public java.util.Properties 
                    getUp();
}

                

oracle/net/resolver/HostnameNamingAdapter.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class HostnameNamingAdapter 
                    implements NamingAdapterInterface {
    
                    public 
                    static 
                    final int 
                    DEFAULT_DATABASE_PORT = 1521;
    
                    public 
                    static 
                    final String 
                    DEFAULT_PROTOCOL = TCP;
    
                    public void HostnameNamingAdapter();
    
                    public String 
                    resolve(String) 
                    throws oracle.net.ns.NetException;
}

                

oracle/net/resolver/NameResolver.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NameResolver {
    
                    private String 
                    tnsAdmin;
    
                    private String[] 
                    readPath;
    
                    private java.util.Hashtable 
                    adapterHash;
    
                    private 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    private 
                    static 
                    final String[] 
                    DEFAULT_SEARCH_PATH;
    
                    private 
                    static 
                    final String 
                    TNS_ADMIN_PROPERTY = oracle.net.tns_admin;
    
                    private 
                    static 
                    final String 
                    READ_PATH_PROPERTY = oracle.net.names.directory_path;
    
                    protected void NameResolver(String) 
                    throws oracle.net.ns.NetException;
    
                    public String 
                    resolveName(String) 
                    throws oracle.net.ns.NetException;
    
                    private void 
                    addAdapters();
    
                    private void 
                    bootNameResolver() 
                    throws oracle.net.ns.NetException;
    
                    private boolean 
                    checkForValidAdapter(String);
    
                    private void 
                    setDefaultPath();
    
                    private void 
                    setReadPath() 
                    throws oracle.net.ns.NetException;
    
                    private String[] 
                    getUserReadPath() 
                    throws oracle.net.ns.NetException;
    
                    static void 
                    <clinit>();
}

                

oracle/net/resolver/NameResolverFactory.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NameResolverFactory {
    
                    private 
                    static java.util.HashMap 
                    resolverMap;
    
                    private 
                    static 
                    final String 
                    TNS_ADMIN_PROPERTY = oracle.net.tns_admin;
    
                    private 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    public void NameResolverFactory();
    
                    public 
                    static NameResolver 
                    getNameResolver(String) 
                    throws oracle.net.ns.NetException;
    
                    static void 
                    <clinit>();
}

                

oracle/net/resolver/NamingAdapterInterface.class

                    package oracle.net.resolver;

                    public 
                    abstract 
                    interface NamingAdapterInterface {
    
                    public 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    public 
                    abstract String 
                    resolve(String) 
                    throws oracle.net.ns.NetException;
}

                

oracle/net/resolver/NavAddress.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NavAddress 
                    extends oracle.net.TNSAddress.Address 
                    implements NavSchemaObject {
    
                    public void NavAddress(oracle.net.TNSAddress.SchemaObjectFactoryInterface);
    
                    public void 
                    navigate(oracle.net.nt.ConnStrategy, StringBuffer);
    
                    public void 
                    addToString(oracle.net.nt.ConnStrategy);
}

                

oracle/net/resolver/NavAddressList.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NavAddressList 
                    extends oracle.net.TNSAddress.AddressList 
                    implements NavSchemaObject {
    
                    private java.util.Vector 
                    activeChildren;
    
                    private int 
                    sBuflength;
    
                    public void NavAddressList(oracle.net.TNSAddress.SchemaObjectFactoryInterface);
    
                    public void 
                    navigate(oracle.net.nt.ConnStrategy, StringBuffer);
    
                    public void 
                    addToString(oracle.net.nt.ConnStrategy);
    
                    public String 
                    toString();
    
                    public int 
                    getChildrenSize();
    
                    public int 
                    getChildrenType(int);
    
                    public NavAddress 
                    getChild(int);
    
                    private void 
                    closeNVPair(oracle.net.nt.ConnStrategy);
}

                

oracle/net/resolver/NavDescription.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NavDescription 
                    extends oracle.net.TNSAddress.Description 
                    implements NavSchemaObject {
    
                    private java.util.Vector 
                    activeChildren;
    
                    private int 
                    descProcessed;
    
                    private boolean 
                    done;
    
                    public void NavDescription(oracle.net.TNSAddress.SchemaObjectFactoryInterface);
    
                    public void 
                    navigate(oracle.net.nt.ConnStrategy, StringBuffer);
    
                    public void 
                    closeNVPair(oracle.net.nt.ConnStrategy);
    
                    public void 
                    addToString(oracle.net.nt.ConnStrategy);
    
                    private boolean 
                    backwardCompatibilityCase(java.util.Vector, oracle.net.nt.ConnStrategy);
    
                    private void 
                    setConnectionOption(oracle.net.nt.ConnStrategy, StringBuffer);
}

                

oracle/net/resolver/NavDescriptionList.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NavDescriptionList 
                    extends oracle.net.TNSAddress.DescriptionList 
                    implements NavSchemaObject {
    
                    private java.util.Vector 
                    activeChildren;
    
                    private int 
                    descProcessed;
    
                    private boolean 
                    done;
    
                    public void NavDescriptionList(oracle.net.TNSAddress.SchemaObjectFactoryInterface);
    
                    public void 
                    navigate(oracle.net.nt.ConnStrategy, StringBuffer);
    
                    public void 
                    addToString(oracle.net.nt.ConnStrategy);
    
                    public 
                    static java.util.Vector 
                    setActiveChildren(java.util.Vector, boolean, boolean);
}

                

oracle/net/resolver/NavSchemaObject.class

                    package oracle.net.resolver;

                    public 
                    abstract 
                    interface NavSchemaObject 
                    extends oracle.net.TNSAddress.SchemaObject {
    
                    public 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    public 
                    static 
                    final String 
                    SR = (SOURCE_ROUTE=yes);
    
                    public 
                    static 
                    final String 
                    HC = (HOP_COUNT=0);
    
                    public 
                    static 
                    final String 
                    LB = (LOAD_BALANCE=yes);
    
                    public 
                    static 
                    final String 
                    NFO = (FAILOVER=false);
    
                    public 
                    static 
                    final String 
                    CD = (CONNECT_DATA=;
    
                    public 
                    static 
                    final String 
                    CID = (CID=(PROGRAM=)(HOST=__jdbc__)(USER=));
    
                    public 
                    abstract void 
                    navigate(oracle.net.nt.ConnStrategy, StringBuffer);
    
                    public 
                    abstract void 
                    addToString(oracle.net.nt.ConnStrategy);
}

                

oracle/net/resolver/NavSchemaObjectFactory.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NavSchemaObjectFactory 
                    implements oracle.net.TNSAddress.SchemaObjectFactoryInterface {
    
                    public void NavSchemaObjectFactory();
    
                    public oracle.net.TNSAddress.SchemaObject 
                    create(int);
}

                

oracle/net/resolver/NavServiceAlias.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class NavServiceAlias 
                    extends oracle.net.TNSAddress.ServiceAlias 
                    implements NavSchemaObject {
    
                    public void NavServiceAlias(oracle.net.TNSAddress.SchemaObjectFactoryInterface);
    
                    public void 
                    navigate(oracle.net.nt.ConnStrategy, StringBuffer);
    
                    public void 
                    addToString(oracle.net.nt.ConnStrategy);
}

                

oracle/net/resolver/TNSNamesNamingAdapter.class

                    package oracle.net.resolver;

                    public 
                    synchronized 
                    class TNSNamesNamingAdapter 
                    implements NamingAdapterInterface {
    
                    private oracle.net.nl.NLParamParser 
                    tnsEntriesHdl;
    
                    private String 
                    tnsDir;
    
                    private long 
                    lastModifiedTime;
    
                    private long 
                    nextPollTime;
    
                    private 
                    static 
                    final String 
                    TNSFILE = tnsnames.ora;
    
                    private 
                    static 
                    final long 
                    REFRESH_INTERVAL = 0;
    
                    public void TNSNamesNamingAdapter(String);
    
                    private void 
                    resetAttr();
    
                    public String 
                    resolve(String) 
                    throws oracle.net.ns.NetException;
    
                    private void 
                    loadFile() 
                    throws oracle.net.ns.NetException;
    
                    private void 
                    checkAndReload() 
                    throws oracle.net.ns.NetException;
}

                

oracle/net/ns/AcceptPacket.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class AcceptPacket 
                    extends Packet 
                    implements SQLnetDef {
    
                    protected int 
                    version;
    
                    protected int 
                    options;
    
                    protected int 
                    sduSize;
    
                    protected int 
                    tduSize;
    
                    protected int 
                    myHWByteOrder;
    
                    protected int 
                    flag0;
    
                    protected int 
                    flag1;
    
                    public void AcceptPacket(Packet) 
                    throws java.io.IOException, NetException;
}

                

oracle/net/ns/BreakNetException.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class BreakNetException 
                    extends NetException {
    
                    public void BreakNetException(int);
}

                

oracle/net/ns/ClientProfile.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class ClientProfile 
                    extends java.util.Properties {
    
                    private 
                    static 
                    final String 
                    profile_name = ora-net-profile;
    
                    private 
                    static 
                    final String 
                    shared_profile_name = ora-shared-profile;
    
                    public void ClientProfile();
    
                    public void ClientProfile(java.util.Properties);
    
                    public String[] 
                    getAuthenticationServices();
    
                    public String[] 
                    getEncryptionServices();
    
                    public String[] 
                    getDataIntegrityServices();
    
                    public String 
                    getEncryptionLevel();
    
                    public int 
                    getEncryptionLevelNum();
    
                    public String 
                    getDataIntegrityLevel();
    
                    public int 
                    getDataIntegrityLevelNum();
    
                    public void 
                    print();
    
                    private String[] 
                    getServices(String);
    
                    private String 
                    removeParenths(String);
    
                    private int 
                    translateAnoValue(String);
}

                

oracle/net/ns/Communication.class

                    package oracle.net.ns;

                    public 
                    abstract 
                    interface Communication {
    
                    public 
                    abstract void 
                    connect(String, java.util.Properties) 
                    throws java.io.IOException, NetException;
    
                    public 
                    abstract void 
                    disconnect() 
                    throws java.io.IOException, NetException;
    
                    public 
                    abstract void 
                    sendBreak() 
                    throws java.io.IOException, NetException;
    
                    public 
                    abstract void 
                    sendReset() 
                    throws java.io.IOException, NetException;
    
                    public 
                    abstract java.io.InputStream 
                    getInputStream() 
                    throws NetException;
    
                    public 
                    abstract java.io.OutputStream 
                    getOutputStream() 
                    throws NetException;
    
                    public 
                    abstract void 
                    setO3logSessionKey(byte[]) 
                    throws NetException, NetException;
    
                    public 
                    abstract void 
                    setOption(int, Object) 
                    throws NetException, java.io.IOException;
    
                    public 
                    abstract Object 
                    getOption(int) 
                    throws NetException, java.io.IOException;
    
                    public 
                    abstract void 
                    abort() 
                    throws NetException, java.io.IOException;
}

                

oracle/net/ns/ConnectPacket.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class ConnectPacket 
                    extends Packet 
                    implements SQLnetDef {
    
                    private boolean 
                    connDataOflow;
    
                    public void ConnectPacket(SessionAtts);
    
                    protected void 
                    send() 
                    throws java.io.IOException;
}

                

oracle/net/ns/DataPacket.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class DataPacket 
                    extends Packet 
                    implements SQLnetDef {
    
                    static 
                    final boolean 
                    DEBUG2 = 0;
    
                    protected int 
                    pktOffset;
    
                    protected int 
                    dataFlags;
    
                    protected boolean 
                    isBufferFull;
    
                    protected boolean 
                    isBufferEmpty;
    
                    protected int 
                    availableBytesToSend;
    
                    protected int 
                    availableBytesToRead;
    
                    public void DataPacket(SessionAtts, int);
    
                    public void DataPacket(SessionAtts);
    
                    protected void 
                    receive() 
                    throws java.io.IOException, NetException;
    
                    protected void 
                    send() 
                    throws java.io.IOException;
    
                    protected void 
                    send(int) 
                    throws java.io.IOException;
    
                    protected int 
                    putDataInBuffer(byte[], int, int) 
                    throws java.io.IOException;
    
                    protected int 
                    getDataFromBuffer(byte[], int, int) 
                    throws NetException;
    
                    protected void 
                    setBufferLength(int) 
                    throws NetException;
    
                    protected void 
                    initialize(int);
}

                

oracle/net/ns/MarkerPacket.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class MarkerPacket 
                    extends Packet 
                    implements SQLnetDef {
    
                    protected int 
                    type;
    
                    protected int 
                    data;
    
                    private boolean 
                    isReset;
    
                    private boolean 
                    isBreak;
    
                    public void MarkerPacket(SessionAtts);
    
                    public void MarkerPacket(SessionAtts, int);
    
                    public void MarkerPacket(Packet) 
                    throws NetException;
    
                    public boolean 
                    isBreakPkt();
}

                

oracle/net/ns/Message.class

                    package oracle.net.ns;

                    public 
                    abstract 
                    interface Message {
    
                    public 
                    abstract String 
                    getMessage(int, String);
}

                

oracle/net/ns/Message10.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class Message10 
                    implements Message {
    
                    public void Message10();
    
                    public String 
                    getMessage(int, String);
    
                    private String 
                    number2string(int, String);
}

                

oracle/net/ns/Message11.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class Message11 
                    implements Message {
    
                    private 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    private String 
                    msg;
    
                    private java.util.ResourceBundle 
                    rBundle;
    
                    private 
                    static 
                    final String 
                    messageFile = oracle.net.mesg.Message;
    
                    public void Message11();
    
                    public String 
                    getMessage(int, String);
    
                    private String 
                    number2string(int, String) 
                    throws java.util.MissingResourceException;
}

                

oracle/net/ns/NSProtocol.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class NSProtocol 
                    implements Communication, SQLnetDef {
    
                    private 
                    static 
                    final boolean 
                    ACTIVATE_ANO = 1;
    
                    private oracle.net.resolver.AddrResolution 
                    addrRes;
    
                    private SessionAtts 
                    sAtts;
    
                    private MarkerPacket 
                    mkPkt;
    
                    private Packet 
                    packet;
    
                    public void NSProtocol();
    
                    public void 
                    connect(String, java.util.Properties) 
                    throws java.io.IOException, NetException;
    
                    public void 
                    disconnect() 
                    throws java.io.IOException, NetException;
    
                    public void 
                    sendBreak() 
                    throws java.io.IOException, NetException;
    
                    public void 
                    sendReset() 
                    throws java.io.IOException, NetException;
    
                    public java.io.InputStream 
                    getInputStream() 
                    throws NetException;
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws NetException;
    
                    private SessionAtts 
                    establishConnection(String) 
                    throws NetException, java.io.IOException;
    
                    private void 
                    setNetStreams() 
                    throws NetException, java.io.IOException;
    
                    private void 
                    sendMarker(int) 
                    throws java.io.IOException, NetException;
    
                    public void 
                    setO3logSessionKey(byte[]) 
                    throws NetException, NetException;
    
                    public void 
                    setOption(int, Object) 
                    throws NetException, java.io.IOException;
    
                    public Object 
                    getOption(int) 
                    throws NetException, java.io.IOException;
    
                    public void 
                    abort() 
                    throws NetException, java.io.IOException;
}

                

oracle/net/ns/NetException.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class NetException 
                    extends java.io.IOException {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    private int 
                    errorNumber;
    
                    private String 
                    msg;
    
                    private String 
                    userMsg;
    
                    private Message 
                    message;
    
                    static 
                    final int 
                    FIRST_ERROR = 0;
    
                    static 
                    final int 
                    LAST_ERROR = 299;
    
                    public 
                    static 
                    final int 
                    GOT_MINUS_ONE = 0;
    
                    public 
                    static 
                    final int 
                    ASSERTION_FAILED = 1;
    
                    public 
                    static 
                    final int 
                    NT_CONNECTION_FAILED = 20;
    
                    public 
                    static 
                    final int 
                    INVALID_NT_ADAPTER = 21;
    
                    public 
                    static 
                    final int 
                    PROTOCOL_NOT_SPECIFIED = 100;
    
                    public 
                    static 
                    final int 
                    CSTRING_PARSING = 101;
    
                    public 
                    static 
                    final int 
                    INVALID_CONNECT_DATA = 102;
    
                    public 
                    static 
                    final int 
                    HOSTNAME_NOT_SPECIFIED = 103;
    
                    public 
                    static 
                    final int 
                    PORT_NOT_SPECIFIED = 104;
    
                    public 
                    static 
                    final int 
                    CONNECT_DATA_MISSING = 105;
    
                    public 
                    static 
                    final int 
                    SID_INFORMATION_MISSING = 106;
    
                    public 
                    static 
                    final int 
                    ADDRESS_NOT_DEFINED = 107;
    
                    public 
                    static 
                    final int 
                    JNDI_THREW_EXCEPTION = 108;
    
                    public 
                    static 
                    final int 
                    JNDI_NOT_INITIALIZED = 109;
    
                    public 
                    static 
                    final int 
                    JNDI_CLASSES_NOT_FOUND = 110;
    
                    public 
                    static 
                    final int 
                    USER_PROPERTIES_NOT_DEFINED = 111;
    
                    public 
                    static 
                    final int 
                    NAMING_FACTORY_NOT_DEFINED = 112;
    
                    public 
                    static 
                    final int 
                    NAMING_PROVIDER_NOT_DEFINED = 113;
    
                    public 
                    static 
                    final int 
                    PROFILE_NAME_NOT_DEFINED = 114;
    
                    public 
                    static 
                    final int 
                    HOST_PORT_SID_EXPECTED = 115;
    
                    public 
                    static 
                    final int 
                    PORT_NUMBER_ERROR = 116;
    
                    public 
                    static 
                    final int 
                    EZ_CONNECT_FORMAT_EXPECTED = 117;
    
                    public 
                    static 
                    final int 
                    EZ_CONNECT_UNKNOWN_HOST = 118;
    
                    public 
                    static 
                    final int 
                    TNS_ADMIN_EMPTY = 119;
    
                    public 
                    static 
                    final int 
                    CONNECT_STRING_EMPTY = 120;
    
                    public 
                    static 
                    final int 
                    INVALID_READ_PATH = 121;
    
                    public 
                    static 
                    final int 
                    NAMELOOKUP_FAILED = 122;
    
                    public 
                    static 
                    final int 
                    NAMELOOKUP_FILE_ERROR = 123;
    
                    public 
                    static 
                    final int 
                    INVALID_LDAP_URL = 124;
    
                    public 
                    static 
                    final int 
                    NOT_CONNECTED = 200;
    
                    public 
                    static 
                    final int 
                    CONNECTED_ALREADY = 201;
    
                    public 
                    static 
                    final int 
                    DATA_EOF = 202;
    
                    public 
                    static 
                    final int 
                    SDU_MISMATCH = 203;
    
                    public 
                    static 
                    final int 
                    BAD_PKT_TYPE = 204;
    
                    public 
                    static 
                    final int 
                    UNEXPECTED_PKT = 205;
    
                    public 
                    static 
                    final int 
                    REFUSED_CONNECT = 206;
    
                    public 
                    static 
                    final int 
                    INVALID_PKT_LENGTH = 207;
    
                    public 
                    static 
                    final int 
                    CONNECTION_STRING_NULL = 208;
    
                    public 
                    static 
                    final int 
                    FAILED_TO_TURN_ENCRYPTION_ON = 300;
    
                    public 
                    static 
                    final int 
                    WRONG_BYTES_IN_NAPACKET = 301;
    
                    public 
                    static 
                    final int 
                    WRONG_MAGIC_NUMBER = 302;
    
                    public 
                    static 
                    final int 
                    UNKNOWN_ALGORITHM_12649 = 303;
    
                    public 
                    static 
                    final int 
                    INVALID_ENCRYPTION_PARAMETER = 304;
    
                    public 
                    static 
                    final int 
                    WRONG_SERVICE_SUBPACKETS = 305;
    
                    public 
                    static 
                    final int 
                    SUPERVISOR_STATUS_FAILURE = 306;
    
                    public 
                    static 
                    final int 
                    AUTHENTICATION_STATUS_FAILURE = 307;
    
                    public 
                    static 
                    final int 
                    SERVICE_CLASSES_NOT_INSTALLED = 308;
    
                    public 
                    static 
                    final int 
                    INVALID_DRIVER = 309;
    
                    public 
                    static 
                    final int 
                    ARRAY_HEADER_ERROR = 310;
    
                    public 
                    static 
                    final int 
                    RECEIVED_UNEXPECTED_LENGTH_FOR_TYPE = 311;
    
                    public 
                    static 
                    final int 
                    INVALID_NA_PACKET_TYPE_LENGTH = 312;
    
                    public 
                    static 
                    final int 
                    INVALID_NA_PACKET_TYPE = 313;
    
                    public 
                    static 
                    final int 
                    UNEXPECTED_NA_PACKET_TYPE_RECEIVED = 314;
    
                    public 
                    static 
                    final int 
                    UNKNOWN_ENC_OR_DATAINT_ALGORITHM = 315;
    
                    public 
                    static 
                    final int 
                    INVALID_ENCRYPTION_ALGORITHM_FROM_SERVER = 316;
    
                    public 
                    static 
                    final int 
                    ENCRYPTION_CLASS_NOT_INSTALLED = 317;
    
                    public 
                    static 
                    final int 
                    DATAINTEGRITY_CLASS_NOT_INSTALLED = 318;
    
                    public 
                    static 
                    final int 
                    INVALID_DATAINTEGRITY_ALGORITHM_FROM_SERVER = 319;
    
                    public 
                    static 
                    final int 
                    INVALID_SERVICES_FROM_SERVER = 320;
    
                    public 
                    static 
                    final int 
                    INCOMPLETE_SERVICES_FROM_SERVER = 321;
    
                    public 
                    static 
                    final int 
                    INVALID_LEVEL = 322;
    
                    public 
                    static 
                    final int 
                    INVALID_SERVICE = 323;
    
                    public 
                    static 
                    final int 
                    INVALID_SSL_VERSION = 400;
    
                    public 
                    static 
                    final int 
                    UNSUPPORTED_SSL_PROTOCOL = 401;
    
                    public 
                    static 
                    final int 
                    INVALID_SSL_CIPHER_SUITES = 403;
    
                    public 
                    static 
                    final int 
                    UNSUPPORTED_SSL_CIPHER_SUITE = 404;
    
                    public 
                    static 
                    final int 
                    MISMATCH_SERVER_CERT_DN = 405;
    
                    public 
                    static 
                    final int 
                    DOUBLE_ENCRYPTION_NOT_ALLOWED = 406;
    
                    public 
                    static 
                    final int 
                    UNABLE_TO_PARSE_WALLET_LOCATION = 407;
    
                    public 
                    static 
                    final int 
                    UNABLE_TO_INIT_KEY_STORE = 408;
    
                    public 
                    static 
                    final int 
                    UNABLE_TO_INIT_TRUST_STORE = 409;
    
                    public 
                    static 
                    final int 
                    UNABLE_TO_INIT_SSL_CONTEXT = 410;
    
                    public 
                    static 
                    final int 
                    SSL_UNVERIFIED_PEER = 411;
    
                    public 
                    static 
                    final int 
                    UNSUPPORTED_METHOD_IN_WALLET_LOCATION = 412;
    
                    public 
                    static 
                    final int 
                    NS_BREAK = 500;
    
                    public 
                    static 
                    final int 
                    NL_EXCEPTION = 501;
    
                    public 
                    static 
                    final int 
                    SO_EXCEPTION = 502;
    
                    public 
                    static 
                    final int 
                    SO_CONNECTTIMEDOUT = 503;
    
                    public 
                    static 
                    final int 
                    SO_READTIMEDOUT = 504;
    
                    public 
                    static 
                    final int 
                    INVALID_CONNECTTIMEOUT = 505;
    
                    public 
                    static 
                    final int 
                    INVALID_READTIMEOUT = 506;
    
                    public void NetException(int);
    
                    public void NetException(int, String);
    
                    public int 
                    getErrorNumber();
    
                    public String 
                    getMessage();
}

                

oracle/net/ns/NetInputStream.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class NetInputStream 
                    extends java.io.InputStream 
                    implements SQLnetDef {
    
                    protected DataPacket 
                    daPkt;
    
                    protected MarkerPacket 
                    mkPkt;
    
                    protected SessionAtts 
                    sAtts;
    
                    private byte[] 
                    tmpBuf;
    
                    public void NetInputStream(SessionAtts);
    
                    public int 
                    read() 
                    throws java.io.IOException, NetException, BreakNetException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException, NetException, BreakNetException;
    
                    public int 
                    read(byte[], int, int) 
                    throws java.io.IOException, NetException, BreakNetException;
    
                    public int 
                    available() 
                    throws java.io.IOException;
    
                    protected void 
                    getNextPacket() 
                    throws java.io.IOException, NetException, BreakNetException;
    
                    protected void 
                    processMarker() 
                    throws java.io.IOException, NetException, BreakNetException;
}

                

oracle/net/ns/NetOutputStream.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class NetOutputStream 
                    extends java.io.OutputStream 
                    implements SQLnetDef {
    
                    protected DataPacket 
                    daPkt;
    
                    protected SessionAtts 
                    sAtts;
    
                    private byte[] 
                    tmpBuf;
    
                    public void NetOutputStream(SessionAtts);
    
                    public void NetOutputStream(SessionAtts, int);
    
                    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 int 
                    available() 
                    throws java.io.IOException;
    
                    public void 
                    flush() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
}

                

oracle/net/ns/Packet.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class Packet 
                    implements SQLnetDef {
    
                    private int 
                    buffer2send;
    
                    protected int 
                    sdu;
    
                    protected int 
                    tdu;
    
                    protected int 
                    length;
    
                    public int 
                    type;
    
                    protected int 
                    flags;
    
                    protected int 
                    dataLen;
    
                    protected int 
                    dataOff;
    
                    protected String 
                    data;
    
                    protected byte[] 
                    buffer;
    
                    protected byte[] 
                    header;
    
                    public SessionAtts 
                    sAtts;
    
                    public void Packet(SessionAtts);
    
                    public void Packet(SessionAtts, int);
    
                    public void Packet(SessionAtts, int, int, int);
    
                    public void Packet(Packet);
    
                    protected void 
                    createBuffer(int);
    
                    protected void 
                    createBuffer(int, int, int);
    
                    protected void 
                    receive() 
                    throws java.io.IOException, NetException;
    
                    protected void 
                    send() 
                    throws java.io.IOException;
    
                    protected void 
                    extractData() 
                    throws java.io.IOException, NetException;
    
                    protected String 
                    getData();
    
                    protected void 
                    dump(byte[], int, int);
}

                

oracle/net/ns/RedirectPacket.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class RedirectPacket 
                    extends Packet 
                    implements SQLnetDef {
    
                    public void RedirectPacket(Packet) 
                    throws java.io.IOException, NetException;
}

                

oracle/net/ns/RefusePacket.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class RefusePacket 
                    extends Packet 
                    implements SQLnetDef {
    
                    protected int 
                    userReason;
    
                    protected int 
                    systemReason;
    
                    public void RefusePacket(Packet) 
                    throws java.io.IOException, NetException;
}

                

oracle/net/ns/SQLnetDef.class

                    package oracle.net.ns;

                    public 
                    abstract 
                    interface SQLnetDef {
    
                    public 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    public 
                    static 
                    final boolean 
                    ASSERT = 0;
    
                    public 
                    static 
                    final int 
                    NSPTCN = 1;
    
                    public 
                    static 
                    final int 
                    NSPTAC = 2;
    
                    public 
                    static 
                    final int 
                    NSPTAK = 3;
    
                    public 
                    static 
                    final int 
                    NSPTRF = 4;
    
                    public 
                    static 
                    final int 
                    NSPTRD = 5;
    
                    public 
                    static 
                    final int 
                    NSPTDA = 6;
    
                    public 
                    static 
                    final int 
                    NSPTNL = 7;
    
                    public 
                    static 
                    final int 
                    NSPTAB = 9;
    
                    public 
                    static 
                    final int 
                    NSPTRS = 11;
    
                    public 
                    static 
                    final int 
                    NSPTMK = 12;
    
                    public 
                    static 
                    final int 
                    NSPTAT = 13;
    
                    public 
                    static 
                    final int 
                    NSPTCNL = 14;
    
                    public 
                    static 
                    final int 
                    NSPTHI = 19;
    
                    public 
                    static 
                    final byte 
                    NSPHDLEN = 0;
    
                    public 
                    static 
                    final byte 
                    NSPHDPSM = 2;
    
                    public 
                    static 
                    final byte 
                    NSPHDTYP = 4;
    
                    public 
                    static 
                    final byte 
                    NSPHDFLGS = 5;
    
                    public 
                    static 
                    final byte 
                    NSPHDHSM = 6;
    
                    public 
                    static 
                    final byte 
                    NSPSIZHD = 8;
    
                    public 
                    static 
                    final byte 
                    NO_HEADER_FLAGS = 0;
    
                    public 
                    static 
                    final byte 
                    NSPFSRN = 8;
    
                    public 
                    static 
                    final byte 
                    NSPCNVSN = 8;
    
                    public 
                    static 
                    final byte 
                    NSPCNLOV = 10;
    
                    public 
                    static 
                    final byte 
                    NSPCNOPT = 12;
    
                    public 
                    static 
                    final byte 
                    NSPCNSDU = 14;
    
                    public 
                    static 
                    final byte 
                    NSPCNTDU = 16;
    
                    public 
                    static 
                    final byte 
                    NSPCNNTC = 18;
    
                    public 
                    static 
                    final byte 
                    NSPCNTNA = 20;
    
                    public 
                    static 
                    final byte 
                    NSPCNONE = 22;
    
                    public 
                    static 
                    final byte 
                    NSPCNLEN = 24;
    
                    public 
                    static 
                    final byte 
                    NSPCNOFF = 26;
    
                    public 
                    static 
                    final byte 
                    NSPCNMXC = 28;
    
                    public 
                    static 
                    final byte 
                    NSPCNFL0 = 32;
    
                    public 
                    static 
                    final byte 
                    NSPCNFL1 = 33;
    
                    public 
                    static 
                    final byte 
                    NSPCNDAT = 34;
    
                    public 
                    static 
                    final int 
                    NSPMXCDATA = 230;
    
                    public 
                    static 
                    final int 
                    NSINAWANTED = 1;
    
                    public 
                    static 
                    final int 
                    NSINAINTCHG = 2;
    
                    public 
                    static 
                    final int 
                    NSINADISABLEFORCONNECTION = 4;
    
                    public 
                    static 
                    final int 
                    NSINANOSERVICES = 8;
    
                    public 
                    static 
                    final int 
                    NSINAREQUIRED = 16;
    
                    public 
                    static 
                    final int 
                    NSINAAUTHWANTED = 32;
    
                    public 
                    static 
                    final byte 
                    NSPACVSN = 8;
    
                    public 
                    static 
                    final byte 
                    NSPACOPT = 10;
    
                    public 
                    static 
                    final byte 
                    NSPACSDU = 12;
    
                    public 
                    static 
                    final byte 
                    NSPACTDU = 14;
    
                    public 
                    static 
                    final byte 
                    NSPACONE = 16;
    
                    public 
                    static 
                    final byte 
                    NSPACLEN = 18;
    
                    public 
                    static 
                    final byte 
                    NSPACOFF = 20;
    
                    public 
                    static 
                    final byte 
                    NSPACFL0 = 22;
    
                    public 
                    static 
                    final byte 
                    NSPACFL1 = 23;
    
                    public 
                    static 
                    final byte 
                    NSPRFURS = 8;
    
                    public 
                    static 
                    final byte 
                    NSPRFSRS = 9;
    
                    public 
                    static 
                    final byte 
                    NSPRFLEN = 10;
    
                    public 
                    static 
                    final byte 
                    NSPRFDAT = 12;
    
                    public 
                    static 
                    final byte 
                    NSPRDLEN = 8;
    
                    public 
                    static 
                    final byte 
                    NSPRDDAT = 10;
    
                    public 
                    static 
                    final int 
                    NSPDAFLG = 8;
    
                    public 
                    static 
                    final int 
                    NSPDADAT = 10;
    
                    public 
                    static 
                    final int 
                    NSPDAFZER = 0;
    
                    public 
                    static 
                    final int 
                    NSPDAFTKN = 1;
    
                    public 
                    static 
                    final int 
                    NSPDAFRCF = 2;
    
                    public 
                    static 
                    final int 
                    NSPDAFCFM = 4;
    
                    public 
                    static 
                    final int 
                    NSPDAFRSV = 8;
    
                    public 
                    static 
                    final int 
                    NSPDAFMOR = 32;
    
                    public 
                    static 
                    final int 
                    NSPDAFEOF = 64;
    
                    public 
                    static 
                    final int 
                    NSPDAFIMM = 128;
    
                    public 
                    static 
                    final int 
                    NSPDAFRTS = 256;
    
                    public 
                    static 
                    final int 
                    NSPDAFRNT = 512;
    
                    public 
                    static 
                    final int 
                    NSPMKTYP = 8;
    
                    public 
                    static 
                    final int 
                    NSPMKODT = 9;
    
                    public 
                    static 
                    final int 
                    NSPMKDAT = 10;
    
                    public 
                    static 
                    final int 
                    NSPMKTD0 = 0;
    
                    public 
                    static 
                    final int 
                    NSPMKTD1 = 1;
    
                    public 
                    static 
                    final byte 
                    NSPMKATT = 0;
    
                    public 
                    static 
                    final byte 
                    NSPMKBRK = 1;
    
                    public 
                    static 
                    final byte 
                    NSPMKRES = 2;
    
                    public 
                    static 
                    final int 
                    NSPDFSDULN = 2048;
    
                    public 
                    static 
                    final int 
                    NSPMXSDULN = 32767;
    
                    public 
                    static 
                    final int 
                    NSPMNSDULN = 512;
    
                    public 
                    static 
                    final int 
                    NSPDFTDULN = 32767;
    
                    public 
                    static 
                    final int 
                    NSPMXTDULN = 32767;
    
                    public 
                    static 
                    final int 
                    NSPMNTDULN = 255;
    
                    public 
                    static 
                    final int 
                    NSPINSDULN = 255;
    
                    public 
                    static 
                    final String 
                    TCP_NODELAY_STR = TCP.NODELAY;
    
                    public 
                    static 
                    final String 
                    TCP_CONNTIMEOUT_STR = oracle.net.CONNECT_TIMEOUT;
    
                    public 
                    static 
                    final String 
                    TCP_READTIMEOUT_STR = oracle.net.READ_TIMEOUT;
    
                    public 
                    static 
                    final String 
                    SSL_SERVER_DN_MATCH = oracle.net.ssl_server_dn_match;
    
                    public 
                    static 
                    final String 
                    ORACLE_NET_WALLET_LOCATION = oracle.net.wallet_location;
    
                    public 
                    static 
                    final String 
                    SSL_VERSION = oracle.net.ssl_version;
    
                    public 
                    static 
                    final String 
                    SSL_CIPHER_SUITES = oracle.net.ssl_cipher_suites;
    
                    public 
                    static 
                    final String 
                    JAVAX_NET_SSL_KEYSTORE = javax.net.ssl.keyStore;
    
                    public 
                    static 
                    final String 
                    JAVAX_NET_SSL_KEYSTORETYPE = javax.net.ssl.keyStoreType;
    
                    public 
                    static 
                    final String 
                    JAVAX_NET_SSL_KEYSTOREPASSWORD = javax.net.ssl.keyStorePassword;
    
                    public 
                    static 
                    final String 
                    JAVAX_NET_SSL_TRUSTSTORE = javax.net.ssl.trustStore;
    
                    public 
                    static 
                    final String 
                    JAVAX_NET_SSL_TRUSTSTORETYPE = javax.net.ssl.trustStoreType;
    
                    public 
                    static 
                    final String 
                    JAVAX_NET_SSL_TRUSTSTOREPASSWORD = javax.net.ssl.trustStorePassword;
    
                    public 
                    static 
                    final String 
                    SSL_KEYMANAGERFACTORY_ALGORITHM = ssl.keyManagerFactory.algorithm;
    
                    public 
                    static 
                    final String 
                    SSL_TRUSTMANAGERFACTORY_ALGORITHM = ssl.trustManagerFactory.algorithm;
    
                    public 
                    static 
                    final int 
                    TCP_NODELAY_OFF = 0;
    
                    public 
                    static 
                    final int 
                    TCP_KEEPALIVE_OFF = 1;
    
                    public 
                    static 
                    final int 
                    TCP_CONNTIMEOUT_OFF = 2;
    
                    public 
                    static 
                    final int 
                    TCP_READTIMEOUT_OFF = 3;
    
                    public 
                    static 
                    final int 
                    SSL_SERVER_DN_MATCH_OFF = 4;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_WALLET_LOCATION_OFF = 5;
    
                    public 
                    static 
                    final int 
                    SSL_VERSION_OFF = 6;
    
                    public 
                    static 
                    final int 
                    SSL_CIPHER_SUITES_OFF = 7;
    
                    public 
                    static 
                    final int 
                    JAVAX_NET_SSL_KEYSTORE_OFF = 8;
    
                    public 
                    static 
                    final int 
                    JAVAX_NET_SSL_KEYSTORETYPE_OFF = 9;
    
                    public 
                    static 
                    final int 
                    JAVAX_NET_SSL_KEYSTOREPASSWORD_OFF = 10;
    
                    public 
                    static 
                    final int 
                    JAVAX_NET_SSL_TRUSTSTORE_OFF = 11;
    
                    public 
                    static 
                    final int 
                    JAVAX_NET_SSL_TRUSTSTORETYPE_OFF = 12;
    
                    public 
                    static 
                    final int 
                    JAVAX_NET_SSL_TRUSTSTOREPASSWORD_OFF = 13;
    
                    public 
                    static 
                    final int 
                    SSL_KEYMANAGERFACTORY_ALGORITHM_OFF = 14;
    
                    public 
                    static 
                    final int 
                    SSL_TRUSTMANAGERFACTORY_ALGORITHM_OFF = 15;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_NTMINOPT = 0;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_READ_TIMEOUT = 1;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_SSL_ENCRYPTION_ENABLED = 2;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_SSL_PEER_CERT_DN = 3;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_SSL_PEER_CERT_CHAIN = 4;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_SSL_CIPHER_SUITE = 5;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_SSL_MATCH_SERVER_DN = 6;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_SSL_FULL_DN_MATCH = 7;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_SSL_MATCH_SERVER_DN_WITH = 8;
    
                    public 
                    static 
                    final int 
                    ORACLE_NET_NTMAXOPT = 10;
}

                

oracle/net/ns/SessionAtts.class

                    package oracle.net.ns;

                    public 
                    synchronized 
                    class SessionAtts 
                    implements SQLnetDef {
    
                    private int 
                    sdu;
    
                    private int 
                    tdu;
    
                    protected oracle.net.nt.NTAdapter 
                    nt;
    
                    protected java.io.InputStream 
                    ntInputStream;
    
                    protected java.io.OutputStream 
                    ntOutputStream;
    
                    protected NetInputStream 
                    nsInputStream;
    
                    protected NetOutputStream 
                    nsOutputStream;
    
                    protected oracle.net.nt.ConnOption 
                    cOption;
    
                    protected boolean 
                    dataEOF;
    
                    protected boolean 
                    connected;
    
                    public boolean 
                    onBreakReset;
    
                    public ClientProfile 
                    profile;
    
                    public oracle.net.ano.Ano 
                    ano;
    
                    public boolean 
                    anoEnabled;
    
                    public boolean 
                    isEncryptionActive;
    
                    public boolean 
                    isChecksumActive;
    
                    public boolean 
                    areEncryptionAndChecksumActive;
    
                    public void SessionAtts(int, int);
    
                    public void 
                    setSDU(int);
    
                    public int 
                    getSDU();
    
                    public void 
                    setTDU(int);
    
                    public int 
                    getTDU();
    
                    public oracle.net.nt.NTAdapter 
                    getNTAdapter();
    
                    public void 
                    print();
    
                    public void 
                    turnEncryptionOn(NetInputStream, NetOutputStream) 
                    throws NetException;
    
                    public int 
                    getANOFlags();
    
                    public java.io.OutputStream 
                    getOutputStream();
    
                    public java.io.InputStream 
                    getInputStream();
}

                

oracle/net/ano/Ano.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class Ano 
                    implements AnoServices, oracle.net.ns.SQLnetDef {
    
                    private short 
                    h;
    
                    private Service[] 
                    i;
    
                    private int 
                    j;
    
                    protected byte[] 
                    iv;
    
                    private int 
                    k;
    
                    protected oracle.net.ns.SessionAtts 
                    sAtts;
    
                    protected oracle.net.aso.C02 
                    dataIntegrityAlg;
    
                    private long 
                    l;
    
                    protected oracle.net.aso.C11 
                    encryptionAlg;
    
                    protected byte[] 
                    skey;
    
                    private int 
                    m;
    
                    private boolean 
                    n;
    
                    private int 
                    o;
    
                    protected boolean 
                    cryptoNeeded;
    
                    protected AnoComm 
                    anoComm;
    
                    protected byte[] 
                    clientPK;
    
                    private Service[] 
                    p;
    
                    private byte[] 
                    q;
    
                    public oracle.net.aso.C11 
                    getEncryptionAlg();
    
                    protected void 
                    setSessionKey(byte[]);
    
                    public int 
                    getNAFlags();
    
                    private void 
                    a() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public oracle.net.aso.C02 
                    getDataIntegrityAlg();
    
                    protected void 
                    setInitializationVector(byte[]);
    
                    private boolean 
                    b(long);
    
                    protected byte[] 
                    getInitializationVector();
    
                    private void 
                    c() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected void 
                    sendANOHeader(int, int, short) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public void Ano();
    
                    private void 
                    d() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected byte[] 
                    getSessionKey();
    
                    private int 
                    e() 
                    throws oracle.net.ns.NetException;
    
                    public boolean 
                    getRenewKey();
    
                    public void 
                    init(oracle.net.ns.SessionAtts) 
                    throws oracle.net.ns.NetException;
    
                    public byte[] 
                    getO3logSessionKey();
    
                    private void 
                    f() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public void 
                    setRenewKey(boolean);
    
                    public void 
                    negotiation() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    private int 
                    g() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public void 
                    setO3logSessionKey(byte[]);
    
                    protected void 
                    setClientPK(byte[]);
}

                

oracle/net/ano/AnoComm.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class AnoComm 
                    implements AnoServices {
    
                    private 
                    static 
                    final boolean 
                    h = 0;
    
                    private java.io.InputStream 
                    i;
    
                    private java.io.OutputStream 
                    j;
    
                    protected int 
                    readUB2() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public void AnoComm(oracle.net.ns.SessionAtts);
    
                    protected void 
                    sendUB2(int) 
                    throws java.io.IOException;
    
                    protected void 
                    sendString(String) 
                    throws java.io.IOException;
    
                    protected short 
                    readUB1() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected byte[] 
                    receiveRaw() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected long 
                    receiveVersion() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected void 
                    sendStatus(int) 
                    throws java.io.IOException;
    
                    protected void 
                    sendUB4(long) 
                    throws java.io.IOException;
    
                    protected void 
                    sendPktHeader(int, int) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected int 
                    receiveUB2() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    private void 
                    a(int, int, int) 
                    throws oracle.net.ns.NetException;
    
                    protected void 
                    writeVersion() 
                    throws java.io.IOException;
    
                    protected void 
                    sendVersion() 
                    throws java.io.IOException;
    
                    protected void 
                    writeUB1(short) 
                    throws java.io.IOException;
    
                    protected void 
                    flush() 
                    throws java.io.IOException;
    
                    protected short 
                    receiveUB1() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected int[] 
                    receiveUB2Array() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected void 
                    sendUB2Array(int[]) 
                    throws java.io.IOException;
    
                    protected void 
                    writeUB2(int) 
                    throws java.io.IOException;
    
                    protected long 
                    getVersion();
    
                    private byte 
                    b(int, byte[]);
    
                    private byte[] 
                    c(int) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected long 
                    readUB4() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected void 
                    writeUB4(long) 
                    throws java.io.IOException;
    
                    private void 
                    d(int, int) 
                    throws oracle.net.ns.NetException;
    
                    private int 
                    e(byte[], int, int) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected void 
                    sendRaw(byte[]) 
                    throws java.io.IOException;
    
                    protected long 
                    receiveUB4() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected String 
                    receiveString() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    private int 
                    f(int) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    private long 
                    g(byte[]) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected int 
                    receiveStatus() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    protected void 
                    sendUB1(short) 
                    throws java.io.IOException;
}

                

oracle/net/ano/AnoNetInputStream.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class AnoNetInputStream 
                    extends oracle.net.ns.NetInputStream {
    
                    public void AnoNetInputStream(oracle.net.ns.SessionAtts);
    
                    protected void 
                    processMarker() 
                    throws java.io.IOException, oracle.net.ns.NetException, oracle.net.ns.BreakNetException;
}

                

oracle/net/ano/AnoNetOutputStream.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class AnoNetOutputStream 
                    extends oracle.net.ns.NetOutputStream {
    
                    public void AnoNetOutputStream(oracle.net.ns.SessionAtts);
}

                

oracle/net/ano/AnoServices.class

                    package oracle.net.ano;

                    public 
                    abstract 
                    interface AnoServices {
    
                    public 
                    static 
                    final int 
                    AUTHENTICATION = 1;
    
                    public 
                    static 
                    final int 
                    MAXSERVICE = 4;
    
                    public 
                    static 
                    final String[] 
                    ENC_CLASSNAME_EX;
    
                    public 
                    static 
                    final int 
                    UB2_TYPE = 3;
    
                    public 
                    static 
                    final int 
                    ARRAY_PACKET_HEADER_LENGTH = 10;
    
                    public 
                    static 
                    final int 
                    STATUS_LENGTH = 2;
    
                    public 
                    static 
                    final int 
                    SERVICE_HEADER_LENGTH = 8;
    
                    public 
                    static 
                    final int 
                    MINSERVICE = 1;
    
                    public 
                    static 
                    final int 
                    REJECTED = 1;
    
                    public 
                    static 
                    final int 
                    MIN_TYPE = 0;
    
                    public 
                    static 
                    final int 
                    REQUESTED = 2;
    
                    public 
                    static 
                    final int 
                    UB1_LENGTH = 1;
    
                    public 
                    static 
                    final int 
                    SUPERVISOR = 4;
    
                    public 
                    static 
                    final int 
                    RELEASE = 1;
    
                    public 
                    static 
                    final int 
                    NA_HEADER_SIZE = 13;
    
                    public 
                    static 
                    final short 
                    NO_ERROR = 0;
    
                    public 
                    static 
                    final long 
                    NA_MAGIC = -559038737;
    
                    public 
                    static 
                    final int 
                    RAW_TYPE = 1;
    
                    public 
                    static 
                    final int 
                    ENCRYPTION = 2;
    
                    public 
                    static 
                    final String[] 
                    AUTH_CLASSNAME;
    
                    public 
                    static 
                    final int 
                    VERSION_LENGTH = 4;
    
                    public 
                    static 
                    final String[] 
                    DATAINTEGRITY_CLASSNAME;
    
                    public 
                    static 
                    final String[] 
                    ENC_CLASSNAME;
    
                    public 
                    static 
                    final String[] 
                    SERV_CLASSNAME;
    
                    public 
                    static 
                    final int 
                    ACCEPTED = 0;
    
                    public 
                    static 
                    final int 
                    UB4_LENGTH = 4;
    
                    public 
                    static 
                    final int 
                    STRING_TYPE = 0;
    
                    public 
                    static 
                    final int[] 
                    CRYPTO_LEN;
    
                    public 
                    static 
                    final byte[] 
                    ENC_ID;
    
                    public 
                    static 
                    final int 
                    DATAINTEGRITY = 3;
    
                    public 
                    static 
                    final int 
                    STATUS_TYPE = 6;
    
                    public 
                    static 
                    final boolean 
                    VERIFYING = 0;
    
                    public 
                    static 
                    final int 
                    NULLSERVICE = 0;
    
                    public 
                    static 
                    final int 
                    NA_MAGIC_SIZE = 4;
    
                    public 
                    static 
                    final String[] 
                    AUTH_NAME;
    
                    public 
                    static 
                    final byte[] 
                    DATAINTEGRITY_ID;
    
                    public 
                    static 
                    final int 
                    VERSION_TYPE = 5;
    
                    public 
                    static 
                    final int 
                    REQUIRED = 3;
    
                    public 
                    static 
                    final int 
                    MAX_TYPE = 7;
    
                    public 
                    static 
                    final long 
                    DEADBEEF = -559038737;
    
                    public 
                    static 
                    final String[] 
                    SERVICES_INORDER;
    
                    public 
                    static 
                    final int 
                    VERSION = 8;
    
                    public 
                    static 
                    final int 
                    UB4_TYPE = 4;
    
                    public 
                    static 
                    final int 
                    PORT = 0;
    
                    public 
                    static 
                    final int 
                    PORTUPDATE = 0;
    
                    public 
                    static 
                    final int 
                    SUBPACKET_LENGTH = 4;
    
                    public 
                    static 
                    final int 
                    UPDATE = 5;
    
                    public 
                    static 
                    final int 
                    UB2_LENGTH = 2;
    
                    public 
                    static 
                    final String[] 
                    SERVICES;
    
                    public 
                    static 
                    final byte[] 
                    AUTH_ID;
    
                    public 
                    static 
                    final int 
                    UB1_TYPE = 2;
    
                    public 
                    static 
                    final int 
                    ARRAY_TYPE = 7;
    
                    public 
                    static 
                    final String[] 
                    SERV_INORDER_CLASSNAME;
    
                    static void 
                    <clinit>();
}

                

oracle/net/ano/AuthenticationService.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class AuthenticationService 
                    extends Service 
                    implements AnoServices, oracle.net.ns.SQLnetDef {
    
                    static 
                    final int 
                    a = 64255;
    
                    static 
                    final int 
                    b = 2;
    
                    static 
                    final int 
                    c = 64767;
    
                    private int 
                    d;
    
                    static 
                    final int 
                    e = 3;
    
                    static 
                    final int 
                    f = 63999;
    
                    static 
                    final int 
                    g = 63487;
    
                    static 
                    final int 
                    h = 64511;
    
                    static 
                    final int 
                    i = 65023;
    
                    static 
                    final int 
                    j = 65279;
    
                    static 
                    final int 
                    k = 57569;
    
                    private boolean 
                    l;
    
                    static 
                    final boolean 
                    m = 1;
    
                    static 
                    final int 
                    n = 63743;
    int 
                    a(oracle.net.ns.SessionAtts) 
                    throws oracle.net.ns.NetException;
    int 
                    f();
    void 
                    b() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public boolean 
                    isActive();
    
                    public void AuthenticationService();
    void 
                    d() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    n() 
                    throws oracle.net.ns.NetException, java.io.IOException;
}

                

oracle/net/ano/CryptoDataPacket.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class CryptoDataPacket 
                    extends oracle.net.ns.DataPacket 
                    implements oracle.net.ns.SQLnetDef {
    
                    private oracle.net.aso.C02 
                    b;
    
                    private Ano 
                    c;
    
                    private int 
                    d;
    
                    private int 
                    e;
    
                    private oracle.net.aso.C11 
                    f;
    
                    public void 
                    receive() 
                    throws java.io.IOException, oracle.net.ns.NetException;
    
                    public void CryptoDataPacket(oracle.net.ns.SessionAtts);
    
                    protected void 
                    decryptAndChecksum() 
                    throws java.io.IOException;
    
                    protected void 
                    checksumAndEncrypt() 
                    throws java.io.IOException;
    
                    protected void 
                    send(int) 
                    throws java.io.IOException;
    
                    private void 
                    a() 
                    throws java.io.IOException;
    
                    protected int 
                    putDataInBuffer(byte[], int, int) 
                    throws java.io.IOException;
}

                

oracle/net/ano/DataIntegrityService.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class DataIntegrityService 
                    extends Service 
                    implements AnoServices, oracle.net.ns.SQLnetDef {
    
                    private oracle.net.aso.C02 
                    e;
    
                    static 
                    final int 
                    f = 2;
    
                    private boolean 
                    g;
    
                    private short 
                    h;
    
                    private 
                    static 
                    final int 
                    i = 40;
    
                    private byte[] 
                    j;
    
                    private int 
                    k;
    
                    public void DataIntegrityService();
    
                    public boolean 
                    isActive();
    int 
                    a(oracle.net.ns.SessionAtts) 
                    throws oracle.net.ns.NetException;
    void 
                    b() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    c() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    d() 
                    throws oracle.net.ns.NetException, java.io.IOException;
}

                

oracle/net/ano/EncryptionService.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class EncryptionService 
                    extends Service 
                    implements AnoServices, oracle.net.ns.SQLnetDef {
    
                    private int 
                    a;
    
                    static 
                    final int 
                    b = 2;
    
                    private boolean 
                    c;
    
                    private 
                    static boolean 
                    d;
    
                    private oracle.net.aso.C11 
                    e;
    int 
                    a(oracle.net.ns.SessionAtts) 
                    throws oracle.net.ns.NetException;
    void 
                    b() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public boolean 
                    isActive();
    
                    public void EncryptionService();
    void 
                    d() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    static void 
                    <clinit>();
    void 
                    c() 
                    throws oracle.net.ns.NetException, java.io.IOException;
}

                

oracle/net/ano/Service.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class Service 
                    implements AnoServices, oracle.net.ns.SQLnetDef {
    
                    protected int 
                    receivedService;
    
                    protected long 
                    oracleError;
    
                    protected String[] 
                    listOfDrivers;
    
                    protected Ano 
                    ano;
    
                    protected int 
                    status;
    
                    protected String[] 
                    availableDrivers;
    
                    protected AnoComm 
                    comm;
    
                    protected int 
                    serviceSubPackets;
    
                    protected long 
                    version;
    
                    protected short 
                    algID;
    
                    protected int 
                    numSubPackets;
    
                    protected byte[] 
                    selectedDrivers;
    
                    protected oracle.net.ns.SessionAtts 
                    sAtts;
    
                    protected int 
                    service;
    
                    protected int 
                    level;
    void 
                    a() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    c() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    b(Service) 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    e() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    b() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    int 
                    f();
    String[] 
                    g(String[], String[]) 
                    throws oracle.net.ns.NetException;
    String[] 
                    h(String, String[]);
    void 
                    i(String[], String[], int) 
                    throws oracle.net.ns.NetException;
    void 
                    d() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public void Service();
    int 
                    a(oracle.net.ns.SessionAtts) 
                    throws oracle.net.ns.NetException;
    void 
                    j() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    byte 
                    k(String[], String) 
                    throws oracle.net.ns.NetException;
    
                    public boolean 
                    isActive();
    int 
                    l();
    void 
                    m(String[]) 
                    throws oracle.net.ns.NetException;
    
                    public 
                    static String 
                    getServiceName(int) 
                    throws oracle.net.ns.NetException;
    void 
                    n() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public 
                    static String 
                    getLevelString(int) 
                    throws oracle.net.ns.NetException;
}

                

oracle/net/ano/SupervisorService.class

                    package oracle.net.ano;

                    public 
                    synchronized 
                    class SupervisorService 
                    extends Service 
                    implements oracle.net.ns.SQLnetDef {
    
                    private int[] 
                    h;
    
                    static 
                    final int 
                    i = 47;
    
                    static 
                    final int 
                    j = 3;
    
                    static 
                    final int 
                    k = 127;
    
                    private byte[] 
                    l;
    
                    static 
                    final int 
                    m = 111;
    
                    static 
                    final int 
                    n = 63;
    
                    static 
                    final int 
                    o = 95;
    
                    private int 
                    p;
    
                    private int 
                    q;
    
                    private int[] 
                    r;
    
                    static 
                    final int 
                    s = 31;
    
                    static 
                    final int 
                    t = 79;
    void 
                    i(String[], String[], int) 
                    throws oracle.net.ns.NetException;
    int 
                    f();
    void 
                    d() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    
                    public void SupervisorService();
    void 
                    n() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    void 
                    b() 
                    throws oracle.net.ns.NetException, java.io.IOException;
    int 
                    a(oracle.net.ns.SessionAtts) 
                    throws oracle.net.ns.NetException;
    byte[] 
                    g();
}

                

oracle/net/aso/C00.class

                    package oracle.net.aso;

                    public 
                    abstract 
                    interface C00 {
    
                    public 
                    abstract byte 
                    a();
    
                    public 
                    abstract void 
                    b();
    
                    public 
                    abstract byte[] 
                    c();
    
                    public 
                    abstract void 
                    d();
    
                    public 
                    abstract void 
                    e();
    
                    public 
                    abstract void 
                    f();
    
                    public 
                    abstract byte[] 
                    g();
}

                

oracle/net/aso/C01.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C01 {
    boolean 
                    e;
    int 
                    f;
    int 
                    g;
    int 
                    h;
    int 
                    i;
    
                    public void C01();
    
                    public short 
                    a();
    
                    private void 
                    b();
    
                    public void 
                    c(byte[], int);
    
                    public byte 
                    d();
}

                

oracle/net/aso/C02.class

                    package oracle.net.aso;

                    public 
                    abstract 
                    interface C02 {
    
                    public 
                    abstract int 
                    takeSessionKey(byte[], byte[]);
    
                    public 
                    abstract void 
                    renew();
    
                    public 
                    abstract boolean 
                    compare(byte[], byte[]);
    
                    public 
                    abstract byte[] 
                    compute(byte[], int);
    
                    public 
                    abstract void 
                    init(byte[], byte[]);
    
                    public 
                    abstract int 
                    size();
}

                

oracle/net/aso/C03.class

                    package oracle.net.aso;

                    synchronized 
                    class C03 {
    
                    private int 
                    c;
    
                    private int 
                    e;
    
                    private byte[] 
                    f;
    
                    private 
                    final char 
                    g;
    
                    public byte[] 
                    a(byte[], int);
    
                    public void 
                    b(byte[], int);
    
                    public void C03(C09);
}

                

oracle/net/aso/C04.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C04 {
    
                    private 
                    static 
                    final short[] 
                    h;
    
                    private int 
                    i;
    
                    private int 
                    j;
    
                    private 
                    static 
                    final short[] 
                    k;
    
                    private 
                    static 
                    final byte[] 
                    l;
    
                    private char[] 
                    m;
    
                    private 
                    static 
                    final short[] 
                    n;
    
                    private int 
                    o;
    
                    private 
                    static 
                    final byte[] 
                    p;
    
                    private char[] 
                    q;
    
                    private byte[] 
                    r;
    
                    private short 
                    s;
    
                    private byte[] 
                    t;
    
                    private 
                    static 
                    final int 
                    u = 65;
    
                    private byte[] 
                    v;
    
                    private 
                    static 
                    final short[] 
                    w;
    
                    private 
                    static 
                    final byte[][] 
                    x;
    
                    private int 
                    y;
    
                    private 
                    static 
                    final byte[] 
                    z;
    
                    private byte[] 
                    A;
    
                    private 
                    static 
                    final byte[][] 
                    B;
    
                    private byte[] 
                    C;
    
                    private int 
                    D;
    
                    private short 
                    E;
    
                    private byte[] 
                    F;
    
                    private 
                    static 
                    final byte[] 
                    G;
    
                    static void 
                    <clinit>();
    
                    public byte[] 
                    a(byte[], int);
    
                    private void 
                    b();
    
                    public void C04(byte[], byte[], int);
    
                    private void 
                    c(int);
    void C04(int);
    
                    public void C04(byte[], byte[], short, short);
    
                    private void 
                    d(byte[], int);
    
                    private void 
                    e(byte[], int);
    
                    private void 
                    f(byte[], byte[], int);
    
                    public byte[] 
                    g();
}

                

oracle/net/aso/C05.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C05 {
    
                    private 
                    static 
                    final int 
                    D = 65;
    
                    private 
                    static void 
                    a(char[], char[], char[], char[], char[], int);
    
                    private 
                    static void 
                    b(char[], int);
    
                    private 
                    static void 
                    c(char[], char[], char[], int);
    
                    public 
                    static void 
                    d(char[], int, byte[], int);
    
                    private 
                    static int 
                    e(char[], int);
    
                    private 
                    static void 
                    f(char[], char[], char[], int, int);
    
                    private 
                    static void 
                    g(char[], int, int);
    
                    private 
                    static int 
                    h(int);
    
                    private 
                    static char 
                    i(char[], int, char, char[], int, int);
    
                    private 
                    static void 
                    j(char[], char[], char[], int);
    
                    public 
                    static void 
                    k(char[], char[], char[], char[], int);
    
                    private 
                    static void 
                    l(char[], char[], char[], char[], char[], int);
    
                    private 
                    static void 
                    m(char[], char[], char[], char[], int);
    
                    private 
                    static void 
                    n(char[], int);
    
                    private 
                    static int 
                    o(int);
    
                    private 
                    static void 
                    p(char[], char[], char[], char[], int);
    
                    private 
                    static void 
                    q(char[], int);
    
                    public 
                    static void 
                    r(byte[], int, char[], int);
    
                    private 
                    static void 
                    s(char[], char[], int);
    
                    private 
                    static int 
                    t(byte[], int);
    
                    private 
                    static int 
                    u(char[], int, int);
    
                    private 
                    static int 
                    v(char[], char[], int);
    
                    private 
                    static void 
                    w(char[], char[], char[], int, int);
    
                    private 
                    static void 
                    x(char[], char[], int);
    
                    private 
                    static void 
                    y(char[], char[], char[], int, int, int);
    
                    private 
                    static void 
                    z(char[], int, int);
    
                    private 
                    static void 
                    A(char[], char[], int);
    
                    public void C05();
    
                    private 
                    static int 
                    B(char[], int);
    
                    private 
                    static void 
                    C(char[], char[], char[], int);
}

                

oracle/net/aso/C06.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C06 
                    implements C11 {
    
                    private 
                    static 
                    final byte[] 
                    k;
    
                    private int[] 
                    l;
    
                    private byte[] 
                    m;
    
                    private 
                    static 
                    final int[] 
                    n;
    
                    private 
                    static 
                    final byte[] 
                    o;
    
                    private 
                    static 
                    final short[] 
                    p;
    
                    private 
                    static 
                    final byte[] 
                    q;
    
                    private 
                    static 
                    final int[] 
                    r;
    
                    protected 
                    static 
                    final int 
                    s = 1;
    
                    private int[] 
                    t;
    
                    private int[] 
                    u;
    
                    protected boolean 
                    v;
    
                    private 
                    static 
                    final int[] 
                    w;
    
                    protected 
                    static 
                    final byte 
                    x = 1;
    
                    protected 
                    static 
                    final int 
                    y = 8;
    
                    private 
                    static 
                    final int[] 
                    z;
    
                    protected byte[] 
                    A;
    
                    private 
                    static 
                    final int[] 
                    B;
    
                    protected byte[] 
                    C;
    
                    protected 
                    static 
                    final byte 
                    D = 0;
    
                    private 
                    static 
                    final int[] 
                    E;
    
                    protected byte[] 
                    F;
    
                    private int[] 
                    G;
    
                    private 
                    static 
                    final int[] 
                    H;
    
                    private int[] 
                    I;
    
                    private 
                    static 
                    final int[] 
                    J;
    
                    private 
                    static 
                    final byte[] 
                    K;
    
                    private 
                    static 
                    final int[] 
                    L;
    
                    private int[] 
                    M;
    
                    protected 
                    static 
                    final int 
                    N = 2;
    
                    protected void 
                    a(byte[], int[]);
    
                    static void 
                    <clinit>();
    
                    private int[] 
                    b(int[]);
    
                    public void 
                    a(byte[], byte[]) 
                    throws C12;
    
                    public void 
                    c();
    
                    public void C06();
    
                    protected void 
                    d(int[], byte[]);
    
                    protected void 
                    e(byte[], int[]);
    
                    public void 
                    c(byte[], byte[]) 
                    throws C12;
    
                    protected void 
                    f(byte[], byte[], byte[], int);
    
                    protected int[] 
                    g(byte[], byte);
    
                    public byte[] 
                    e(byte[]) 
                    throws C12;
    
                    public int 
                    b();
    
                    private byte[] 
                    h(byte[], byte);
    
                    protected void 
                    i(int[], int[]);
    
                    public byte[] 
                    d(byte[]) 
                    throws C12;
    
                    protected void 
                    j(byte[], byte[], byte[], byte);
}

                

oracle/net/aso/C07.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C07 
                    extends C06 
                    implements C11 {
    
                    public void C07();
    
                    public void 
                    c(byte[], byte[]) 
                    throws C12;
    
                    public void 
                    a();
    
                    public void 
                    a(byte[], byte[]) 
                    throws C12;
}

                

oracle/net/aso/C08.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C08 
                    extends C10 
                    implements C11 {
    
                    private 
                    static 
                    final byte[] 
                    f;
    
                    private 
                    static 
                    final byte[] 
                    g;
    
                    private 
                    static 
                    final byte[] 
                    h;
    
                    private 
                    static 
                    final byte[] 
                    i;
    
                    public int 
                    b();
    
                    public void 
                    a();
    
                    static void 
                    <clinit>();
    
                    public void 
                    b(byte[]);
    
                    public byte[] 
                    c(byte[], int);
    
                    private void 
                    d(int[], byte[], byte[]);
    
                    public void 
                    a(byte[], byte[]) 
                    throws C12;
    
                    public void 
                    c(byte[], byte[]) 
                    throws C12;
    
                    public void C08();
    
                    public void 
                    e(byte[], byte);
    
                    public byte[] 
                    e(byte[]);
}

                

oracle/net/aso/C09.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C09 
                    implements C11 {
    
                    private int 
                    d;
    
                    private 
                    static 
                    final int 
                    e = 170;
    
                    private boolean 
                    f;
    
                    private 
                    static 
                    final byte 
                    g = 123;
    
                    private C03 
                    h;
    
                    private C03 
                    i;
    
                    private 
                    static 
                    final int 
                    j = 85;
    
                    private C03 
                    k;
    
                    public int 
                    b();
    
                    private void 
                    a();
    
                    public void C09(boolean, int) 
                    throws C12;
    
                    public byte[] 
                    b(byte[], int) 
                    throws C12;
    
                    public void 
                    a(byte[], byte[]) 
                    throws C12;
    
                    public void 
                    c(byte[], byte[]) 
                    throws C12;
    
                    public void C09();
    
                    public byte[] 
                    d(byte[]);
    
                    public byte[] 
                    c(byte[], int) 
                    throws C12;
    
                    public void C09(int, byte[], byte[]) 
                    throws C12;
    
                    public byte[] 
                    e(byte[]);
}

                

oracle/net/aso/C10.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C10 
                    implements C11 {
    
                    private 
                    static 
                    final int[] 
                    v;
    
                    private 
                    static 
                    final short[] 
                    w;
    
                    protected boolean 
                    x;
    
                    private 
                    static 
                    final int[] 
                    y;
    
                    protected 
                    static 
                    final int 
                    z = 3;
    
                    protected boolean 
                    A;
    
                    private byte[] 
                    B;
    
                    private 
                    static 
                    final int[] 
                    C;
    
                    private 
                    static 
                    final byte[] 
                    D;
    
                    private int[] 
                    E;
    
                    protected 
                    static 
                    final byte 
                    F = 0;
    
                    protected 
                    static 
                    final byte 
                    G = 1;
    
                    private 
                    static 
                    final byte[] 
                    H;
    
                    private 
                    static 
                    final int[] 
                    I;
    
                    private int[] 
                    J;
    
                    protected 
                    static 
                    final int 
                    K = 1;
    
                    protected 
                    static 
                    final int 
                    L = 2;
    
                    private 
                    static 
                    final byte[] 
                    M;
    
                    private 
                    static 
                    final byte[] 
                    N;
    
                    private 
                    static 
                    final int[] 
                    O;
    
                    private 
                    static 
                    final int[] 
                    P;
    
                    private 
                    static 
                    final int[] 
                    Q;
    
                    protected 
                    static 
                    final int 
                    R = 8;
    
                    private 
                    static 
                    final int[] 
                    S;
    
                    private 
                    static 
                    final int[] 
                    T;
    
                    protected byte[] 
                    U;
    
                    protected byte[] 
                    a(byte[], int);
    
                    public byte[] 
                    b(byte[], byte[], int);
    
                    protected void 
                    c(byte[]);
    
                    public byte[] 
                    d(byte[], byte[], int);
    
                    public void 
                    c(byte[], byte[]) 
                    throws C12;
    
                    protected byte[] 
                    e(byte[], byte[], int);
    
                    static void 
                    <clinit>();
    
                    public byte[] 
                    c(byte[], int);
    
                    private void 
                    f(byte[]);
    
                    protected byte[] 
                    g(byte[], byte[], int);
    
                    protected void 
                    h(int[], int[]);
    
                    private void 
                    i(byte[], byte[]);
    
                    public byte[] 
                    d(byte[]);
    
                    public byte[] 
                    e(byte[]);
    
                    protected void 
                    j(int[], byte[]);
    
                    protected void 
                    k(byte[], byte[], byte[], int);
    
                    private int[] 
                    l(int[]);
    
                    private byte[] 
                    m(byte[], byte);
    
                    public int 
                    b();
    
                    protected void 
                    e(byte[], byte);
    
                    public void 
                    a(byte[], byte[]) 
                    throws C12;
    
                    public void 
                    n();
    
                    private void 
                    o(byte[]);
    
                    protected byte[] 
                    p(byte[], int);
    
                    protected void 
                    q(byte[]);
    
                    protected void 
                    r(byte[], int[]);
    
                    private void 
                    s(byte[], byte[]);
    
                    protected int[] 
                    t(byte[], byte);
    
                    public void C10();
    
                    public byte[] 
                    u(byte[], int);
}

                

oracle/net/aso/C11.class

                    package oracle.net.aso;

                    public 
                    abstract 
                    interface C11 {
    
                    public 
                    static 
                    final int 
                    f = 220;
    
                    public 
                    static 
                    final int 
                    g = 256;
    
                    public 
                    static 
                    final int 
                    h = 0;
    
                    public 
                    static 
                    final int 
                    i = 4;
    
                    public 
                    static 
                    final int 
                    j = 1;
    
                    public 
                    static 
                    final int 
                    k = 223;
    
                    public 
                    static 
                    final int 
                    l = 222;
    
                    public 
                    static 
                    final int 
                    m = 128;
    
                    public 
                    static 
                    final int 
                    n = 56;
    
                    public 
                    static 
                    final int 
                    o = 2;
    
                    public 
                    static 
                    final int 
                    p = 142;
    
                    public 
                    static 
                    final int 
                    q = 141;
    
                    public 
                    static 
                    final int 
                    r = 211;
    
                    public 
                    static 
                    final int 
                    s = 210;
    
                    public 
                    static 
                    final int 
                    t = 140;
    
                    public 
                    static 
                    final int 
                    u = 40;
    
                    public 
                    static 
                    final int 
                    v = 143;
    
                    public 
                    static 
                    final int 
                    w = 3;
    
                    public 
                    static 
                    final int 
                    x = 213;
    
                    public 
                    static 
                    final int 
                    y = 212;
    
                    public 
                    static 
                    final int 
                    z = 221;
    
                    public 
                    abstract void 
                    a(byte[], byte[]) 
                    throws C12;
    
                    public 
                    abstract int 
                    b();
    
                    public 
                    abstract void 
                    c(byte[], byte[]) 
                    throws C12;
    
                    public 
                    abstract byte[] 
                    d(byte[]) 
                    throws C12;
    
                    public 
                    abstract byte[] 
                    e(byte[]) 
                    throws C12;
}

                

oracle/net/aso/C12.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class C12 
                    extends java.io.IOException {
    
                    public 
                    static 
                    final int 
                    b = 102;
    
                    public 
                    static 
                    final int 
                    c = 104;
    
                    static 
                    final int 
                    d = 300;
    
                    public 
                    static 
                    final int 
                    e = 103;
    
                    public 
                    static 
                    final int 
                    f = 100;
    
                    public 
                    static 
                    final int 
                    g = 105;
    
                    public 
                    static 
                    final int 
                    h = 101;
    
                    static 
                    final int 
                    i = 100;
    
                    public 
                    static 
                    final int 
                    j = 106;
    
                    private int 
                    k;
    
                    public void C12(int);
    
                    public int 
                    a();
    
                    public String 
                    getMessage();
}

                

oracle/net/aso/MD5$SD5.class

                    package oracle.net.aso;

                    synchronized 
                    class MD5$SD5 {
    
                    private int 
                    c;
    
                    private byte[] 
                    d;
    
                    private byte[] 
                    e;
    
                    private 
                    final char 
                    f;
    
                    private int 
                    g;
    
                    public void 
                    SD5ed(byte[], byte[], int);
    
                    public void MD5$SD5(MD5);
    
                    public void 
                    SboxInit(byte[], int);
    
                    private byte 
                    a();
}

                

oracle/net/aso/MD5.class

                    package oracle.net.aso;

                    public 
                    synchronized 
                    class MD5 
                    implements C02 {
    
                    private byte[] 
                    p;
    
                    private 
                    static 
                    final char[] 
                    q;
    
                    private 
                    static 
                    final int 
                    r = 90;
    
                    private MD5$SD5 
                    s;
    
                    private 
                    static 
                    final char 
                    t = 255;
    
                    private long[] 
                    u;
    
                    private byte[] 
                    v;
    
                    private MD5$SD5 
                    w;
    
                    private long[] 
                    x;
    
                    private 
                    static 
                    final int 
                    y = 5;
    
                    private char[] 
                    z;
    
                    private MD5$SD5 
                    A;
    
                    private boolean 
                    B;
    
                    private char[] 
                    C;
    
                    private 
                    static 
                    final int 
                    D = 16;
    
                    private 
                    static 
                    final int 
                    E = 180;
    
                    private void 
                    a(char[], byte[], int);
    
                    private long 
                    b(long, long, long);
    
                    private long 
                    c(long, int);
    
                    private void 
                    d(char[], long[], int);
    
                    private void 
                    e(long[], char[], int);
    
                    public void 
                    initKeyedMD5(boolean);
    
                    private long 
                    f(long, long, long, long, long, int, long);
    
                    public void 
                    init(byte[], byte[]);
    
                    public boolean 
                    compare(byte[], byte[]);
    
                    private long 
                    g(long, long, long, long, long, int, long);
    
                    private long 
                    h(long, long, long);
    
                    public int 
                    size();
    
                    static void 
                    <clinit>();
    
                    private long 
                    i(long, long, long);
    
                    private void 
                    j(long[], long[]);
    
                    public void 
                    MD5Update(char[], int);
    
                    public byte[] 
                    compute(byte[], int);
    
                    public void 
                    renew();
    
                    public byte[] 
                    digest(byte[], int);
    
                    private long 
                    k(long, long, long);
    
                    private void 
                    l(byte[], char[], int);
    
                    private long 
                    m(long, long, long, long, long, int, long);
    
                    private void 
                    n();
    
                    public void 
                    MD5Final();
    
                    private long 
                    o(long, long, long, long, long, int, long);
    
                    public int 
                    takeSessionKey(byte[], byte[]);
    
                    public void MD5();
}

                

oracle/net/mesg/Message.properties

# US English Message file for Net components # ## Internal [ 0, 19] GOT_MINUS_ONE=Got minus one from a read call ASSERTION_FAILED=Internal Error # ## NT Errors [ 20, 99] NT_CONNECTION_FAILED=The Network Adapter could not establish the connection INVALID_NT_ADAPTER=The Network Adapter in use is Invalid # ## Naming Errors [100, 199] PROTOCOL_NOT_SPECIFIED=The Protocol Value Pair is missing CSTRING_PARSING=TNS Address String Parsing error INVALID_CONNECT_DATA=The Connect Data in the TNS Address is not valid HOSTNAME_NOT_SPECIFIED=The hostname in the TNS Address was not specified PORT_NOT_SPECIFIED=The port number in the the address was not specified CONNECT_DATA_MISSING=The CONNECT_DATA in the TNS Address is missing SID_INFORMATION_MISSING=The SID or SERVICE_NAME in the TNS Address is missing ADDRESS_NOT_DEFINED=An ADDRESS Value pair was not defined in the TNS Address JNDI_THREW_EXCEPTION=JNDI Package failure JNDI_NOT_INITIALIZED=JNDI Access package not initialized JNDI_CLASSES_NOT_FOUND=JNDI Package failure USER_PROPERTIES_NOT_DEFINED=User Properties not Initialized, JNDI Access can't be used NAMING_FACTORY_NOT_DEFINED=Naming factory not defined, JNDI access can't complete NAMING_PROVIDER_NOT_DEFINED=Naming provider not defined, JNDI access can't complete PROFILE_NAME_NOT_DEFINED=Profile Name not defined, JNDI access can't complete HOST_PORT_SID_EXPECTED=Invalid connection string format, a valid format is: "host:port:sid" PORT_NUMBER_ERROR=Invalid number format for port number EZ_CONNECT_FORMAT_EXPECTED=Invalid connection string format, a valid format is: "//host[:port][/service_name]" EZ_CONNECT_UNKNOWN_HOST=Unknown host specified INVALID_READ_PATH=Invalid Read path. TNS_ADMIN_EMPTY=System Property oracle.net.tns_admin was empty. CONNECT_STRING_EMPTY=Connect identifier was empty. NAMELOOKUP_FAILED=could not resolve the connect identifier NAMELOOKUP_FILE_ERROR=File Error INVALID_LDAP_URL=Invalid LDAP URL specified # ## NS Errors [200, 299] NOT_CONNECTED=Invalid Operation, NOT Connected CONNECTED_ALREADY=Connected Already DATA_EOF=End of TNS data channel SDU_MISMATCH=Size Data Unit (SDU) mismatch BAD_PKT_TYPE=Bad packet type UNEXPECTED_PKT=Unexpected packet REFUSED_CONNECT=Connection refused INVALID_PKT_LENGTH=Invalid Packet Lenght CONNECTION_STRING_NULL=Connection String was NULL # ##Ano Exception [300, 399] FAILED_TO_TURN_ENCRYPTION_ON=Failed to Turn encryption On WRONG_BYTES_IN_NAPACKET=Wrong byte number in na packet WRONG_MAGIC_NUMBER=Wrong Magic number in na packet UNKNOWN_ALGORITHM_12649=Unknown Encryption or Data Integrity algorithm INVALID_ENCRYPTION_PARAMETER=Invalid parameter, use one of ACCEPTED, REJECTED, REQUESTED and REQUIRED WRONG_SERVICE_SUBPACKETS=Wrong Number of service subpackets SUPERVISOR_STATUS_FAILURE=Supervisor service received status failure AUTHENTICATION_STATUS_FAILURE=Authentication service received status failure SERVICE_CLASSES_NOT_INSTALLED=Service Classes not found in oracle.net.ano package INVALID_DRIVER=Invalid Ano Driver ARRAY_HEADER_ERROR=Error in array header received RECEIVED_UNEXPECTED_LENGTH_FOR_TYPE=Received Unexpected length for a variable length NA type INVALID_NA_PACKET_TYPE_LENGTH=Invalid length for an NA type INVALID_NA_PACKET_TYPE=Invalid NA packet type received UNEXPECTED_NA_PACKET_TYPE_RECEIVED=Unexpected NA Packet Type received UNKNOWN_ENC_OR_DATAINT_ALGORITHM=Unkown encryption or DataIntegrity algorithm INVALID_ENCRYPTION_ALGORITHM_FROM_SERVER=Invalid Encryption Algorithm from server ENCRYPTION_CLASS_NOT_INSTALLED=Encryption Class not installed DATAINTEGRITY_CLASS_NOT_INSTALLED=Data Integrity Class not installed INVALID_DATAINTEGRITY_ALGORITHM_FROM_SERVER=Invalid DataIntegrity Algorithm received from server INVALID_SERVICES_FROM_SERVER=Received Invalid Services from Server INCOMPLETE_SERVICES_FROM_SERVER=Received Incomplete services from server INVALID_LEVEL=Level should be one of ACCEPTED, REJECTED, REQUESTED and REQUIRED INVALID_SERVICES=The service in process is not supported. # ##SSL Exceptions [400, 450] INVALID_SSL_VERSION=Invalid version of SSL specified. UNSUPPORTED_SSL_PROTOCOL=The ssl protocol is not supported. INVALID_SSL_CIPHER_SUITES=Invalid cipher suites specified. UNSUPPORTED_SSL_CIPHER_SUITE=The ciphet suite specfied is not supported. UNSUPPORTED_SSL_PROTOCOL=The ssl protocol specified is not supported. MISMATCH_SERVER_CERT_DN=Mismatch with the server cert DN. UNABLE_TO_PARSE_WALLET_LOCATION=Unable to parse the wallet location supplied. UNABLE_TO_INIT_KEY_STORE=Unable to initialize the key store. UNABLE_TO_INIT_TRUST_STORE=Unable to initialize the trust store. UNABLE_TO_INIT_SSL_CONTEXT=Unable to initialize ssl context. SSL_UNVERIFIED_PEER=The peer is unverified. UNSUPPORTED_METHOD_IN_WALLET_LOCATION=The method specified in wallet_location is not supported. # ##Break Exception [500, ] NS_BREAK=Break packet was received NL_EXCEPTION=NL Exception was generated SO_EXCEPTION=SO Exception was generated SO_CONNECTTIMEDOUT=Socket connect timed out SO_READTIMEDOUT=Socket read timed out INVALID_CONNECTTIMEOUT=Invalid socket connect time out value INVALID_READTIMEOUT=Invalid socket read time out value # ## Generic Errors LISTENER_REFUSES_CONNECTION=Listener refused the connection with the following error CONNECT_DESCRIPTOR_USED=The Connection descriptor used by the client was ORACLE_ERROR=Oracle Error # ## Listener (NSG) Errors that JavaNet clients might receive 12500=TNS:listener failed to start a dedicated server process 12502=TNS:listener received no CONNECT_DATA from client 12504=TNS:listener was not given the SID in CONNECT_DATA 12505=TNS:listener does not currently know of SID given in connect descriptor 12508=TNS:listener could not resolve the COMMAND given 12509=TNS:listener failed to redirect client to service handler 12510=TNS:database temporarily lacks resources to handle the request 12511=TNS:service handler found but it is not accepting connections 12513=TNS:service handler found but it has registered for a different protocol 12514=TNS:listener does not currently know of service requested in connect descriptor 12515=TNS:listener could not find a handler for this presentation 12516=TNS:listener could not find available handler with matching protocol stack 12518=TNS:listener could not hand off client connection 12519=TNS:no appropriate service handler found 12520=TNS:listener could not find available handler for requested type of server 12521=TNS:listener does not currently know of instance requested in connect descriptor 12522=TNS:listener could not find available instance with given INSTANCE_ROLE 12523=TNS:listener could not find instance appropriate for the client connection 12524=TNS:listener could not resolve HANDLER_NAME given in connect descriptor 12525=TNS:listener has not received client's request in time allowed 12526=TNS:listener: all appropriate instances are in restricted mode 12527=TNS:listener: all instances are in restricted mode or blocking new connections 12528=TNS:listener: all appropriate instances are blocking new connections 12529=TNS:connect request rejected based on current filtering rules

oracle/core/lmx/CoreException.class

                    package oracle.core.lmx;

                    public 
                    synchronized 
                    class CoreException 
                    extends Exception {
    
                    public 
                    static 
                    final byte 
                    UNIMPLEMENTED = 1;
    
                    public 
                    static 
                    final byte 
                    UNDERFLOW = 2;
    
                    public 
                    static 
                    final byte 
                    OVERFLOW = 3;
    
                    public 
                    static 
                    final byte 
                    INVALIDORLN = 4;
    
                    public 
                    static 
                    final byte 
                    BADFORMATORLN = 5;
    
                    public 
                    static 
                    final byte 
                    INVALIDORLD = 6;
    
                    public 
                    static 
                    final byte 
                    BADFORMATORLD = 7;
    
                    public 
                    static 
                    final byte 
                    BADYEAR = 8;
    
                    public 
                    static 
                    final byte 
                    BADDAYYEAR = 9;
    
                    public 
                    static 
                    final byte 
                    BADJULIANDATE = 10;
    
                    public 
                    static 
                    final byte 
                    INVALIDINPUTN = 11;
    
                    public 
                    static 
                    final byte 
                    NLSNOTSUPPORTED = 12;
    
                    public 
                    static 
                    final byte 
                    INVALIDINPUT = 13;
    
                    public 
                    static 
                    final byte 
                    CONVERSIONERROR = 14;
    
                    private 
                    static 
                    final String[] 
                    _errmsgs;
    
                    private byte 
                    ecode;
    
                    public void CoreException();
    
                    public void CoreException(String);
    
                    public void CoreException(byte);
    
                    public void 
                    setErrorCode(byte);
    
                    public byte 
                    getErrorCode();
    
                    public String 
                    getMessage();
    
                    public 
                    static String 
                    getMessage(byte);
    
                    static void 
                    <clinit>();
}

                

oracle/core/lmx/LmxRepConversion.class

                    package oracle.core.lmx;

                    public 
                    synchronized 
                    class LmxRepConversion {
    
                    public void LmxRepConversion();
    
                    public 
                    static void 
                    printInHex(byte);
    
                    public 
                    static byte 
                    nibbleToHex(byte);
    
                    public 
                    static byte 
                    asciiHexToNibble(byte);
    
                    public 
                    static void 
                    bArray2nibbles(byte[], byte[]);
    
                    public 
                    static String 
                    bArray2String(byte[]);
    
                    public 
                    static byte[] 
                    nibbles2bArray(byte[]);
    
                    public 
                    static void 
                    printInHex(long);
    
                    public 
                    static void 
                    printInHex(int);
    
                    public 
                    static void 
                    printInHex(short);
    
                    public 
                    static byte[] 
                    toHex(long);
    
                    public 
                    static byte[] 
                    toHex(int);
    
                    public 
                    static byte[] 
                    toHex(short);
}

                

oracle/core/lvf/VersionMgr.class

                    package oracle.core.lvf;

                    public 
                    final 
                    synchronized 
                    class VersionMgr {
    
                    public 
                    static 
                    final byte 
                    ALPHA = 1;
    
                    public 
                    static 
                    final byte 
                    BETA = 2;
    
                    public 
                    static 
                    final byte 
                    PROD = 3;
    
                    public 
                    static 
                    final byte 
                    NONE = 4;
    
                    private 
                    final byte 
                    MAX_LEN;
    
                    private 
                    final byte 
                    MAX_PRODLEN;
    
                    private 
                    final byte 
                    MAX_VERLEN;
    
                    private 
                    final byte 
                    MAX_DISTLEN;
    
                    private 
                    final String 
                    alpha;
    
                    private 
                    final String 
                    beta;
    
                    private 
                    final String 
                    prod;
    
                    private String 
                    version;
    
                    public void VersionMgr();
    
                    public void 
                    setVersion(String, byte, byte, byte, byte, byte, char, String, byte, int);
    
                    public String 
                    getVersion();
}

                

oracle/sql/DATE.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class DATE 
                    extends Datum {
    
                    public 
                    static 
                    final int 
                    BDA = 1;
    
                    public 
                    static 
                    final int 
                    BDAL = 2;
    
                    public 
                    static 
                    final int 
                    BMO = 4;
    
                    public 
                    static 
                    final int 
                    BMOL = 8;
    
                    public 
                    static 
                    final int 
                    BYR = 16;
    
                    public 
                    static 
                    final int 
                    BYRL = 32;
    
                    public 
                    static 
                    final int 
                    BHR = 64;
    
                    public 
                    static 
                    final int 
                    BHRL = 128;
    
                    public 
                    static 
                    final int 
                    BMN = 256;
    
                    public 
                    static 
                    final int 
                    BMNL = 512;
    
                    public 
                    static 
                    final int 
                    BSC = 1024;
    
                    public 
                    static 
                    final int 
                    BSCL = 2048;
    
                    public 
                    static 
                    final int 
                    MSD = 4096;
    
                    public 
                    static 
                    final int 
                    YR0 = 8192;
    
                    public 
                    static 
                    final int 
                    BDT = 32768;
    
                    public 
                    static 
                    final int 
                    HRZER0 = 65536;
    
                    public 
                    static 
                    final int 
                    MIZERO = 131072;
    
                    public 
                    static 
                    final int 
                    SEZERO = 262144;
    
                    private 
                    static 
                    final byte 
                    LDXTCE = 0;
    
                    private 
                    static 
                    final byte 
                    LDXTYE = 1;
    
                    private 
                    static 
                    final byte 
                    LDXTMO = 2;
    
                    private 
                    static 
                    final byte 
                    LDXTDA = 3;
    
                    private 
                    static 
                    final byte 
                    LDXTHO = 4;
    
                    private 
                    static 
                    final byte 
                    LDXTMI = 5;
    
                    private 
                    static 
                    final byte 
                    LDXTSE = 6;
    
                    private 
                    static LdxLib 
                    _sldxlib;
    
                    public void DATE();
    
                    public void DATE(byte[]);
    
                    public void DATE(java.sql.Date);
    
                    public void DATE(java.sql.Time);
    
                    public void DATE(java.sql.Timestamp);
    
                    public void DATE(java.sql.Date, java.util.Calendar);
    
                    public void DATE(java.sql.Time, java.util.Calendar);
    
                    public void DATE(java.sql.Timestamp, java.util.Calendar);
    
                    public void DATE(String);
    
                    public void DATE(String, boolean) 
                    throws java.text.ParseException;
    
                    public void DATE(String, java.util.Calendar);
    
                    public void DATE(Object) 
                    throws java.sql.SQLException;
    
                    public void DATE(Object, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Date 
                    toDate(byte[]);
    
                    public 
                    static java.sql.Time 
                    toTime(byte[]);
    
                    public 
                    static java.sql.Timestamp 
                    toTimestamp(byte[]);
    
                    public 
                    static java.sql.Date 
                    toDate(byte[], java.util.Calendar);
    
                    public 
                    static java.sql.Time 
                    toTime(byte[], java.util.Calendar);
    
                    public 
                    static java.sql.Timestamp 
                    toTimestamp(byte[], java.util.Calendar);
    
                    public 
                    static String 
                    toString(byte[]);
    
                    public byte[] 
                    toBytes();
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Date);
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Time);
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Timestamp);
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Date, java.util.Calendar);
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Time, java.util.Calendar);
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Timestamp, java.util.Calendar);
    
                    public 
                    static byte[] 
                    toBytes(String);
    
                    public 
                    static byte[] 
                    toBytes(String, java.util.Calendar);
    
                    public java.sql.Date 
                    dateValue();
    
                    public java.sql.Time 
                    timeValue();
    
                    public java.sql.Timestamp 
                    timestampValue();
    
                    public java.sql.Date 
                    dateValue(java.util.Calendar);
    
                    public java.sql.Time 
                    timeValue(java.util.Calendar);
    
                    public java.sql.Timestamp 
                    timestampValue(java.util.Calendar);
    
                    public String 
                    stringValue();
    
                    public Object 
                    toJdbc();
    
                    public Object 
                    makeJdbcArray(int);
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public DATE 
                    addJulianDays(int, int) 
                    throws java.sql.SQLException;
    
                    public DATE 
                    addMonths(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    diffInJulianDays(DATE, int[], int[]) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    diffInMonths(DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    static DATE 
                    getCurrentDate() 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    checkValidity(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static DATE 
                    fromJulianDays(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static DATE 
                    fromText(String, String, String) 
                    throws java.sql.SQLException;
    
                    public DATE 
                    lastDayOfMonth() 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    numberToJulianDays(NUMBER, int[], int[]) 
                    throws java.sql.SQLException;
    
                    public DATE 
                    round(String) 
                    throws java.sql.SQLException;
    
                    public DATE 
                    setDayOfWeek(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    toJulianDays(int[], int[]) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    toNumber() 
                    throws java.sql.SQLException;
    
                    public String 
                    toText(String, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    toText(byte[], String) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    parseFormat(String, String) 
                    throws java.sql.SQLException;
    
                    public DATE 
                    truncate(String) 
                    throws java.sql.SQLException;
    
                    public int 
                    compareTo(DATE);
    
                    private 
                    static byte[] 
                    _initDate();
    
                    private 
                    static LdxLib 
                    _getLdxLib();
    
                    private 
                    static void 
                    _printBytes(byte[]);
}

                

oracle/sql/Datum.class

                    package oracle.sql;

                    public 
                    abstract 
                    synchronized 
                    class Datum 
                    implements java.io.Serializable {
    
                    private byte[] 
                    data;
    
                    static 
                    final long 
                    serialVersionUID = 4645732484621936751;
    
                    public void Datum();
    
                    public void Datum(byte[]);
    
                    public boolean 
                    equals(Object);
    
                    public byte[] 
                    shareBytes();
    
                    public long 
                    getLength();
    
                    public void 
                    setBytes(byte[]);
    
                    public void 
                    setShareBytes(byte[]);
    
                    public byte[] 
                    getBytes();
    
                    public java.io.InputStream 
                    getStream();
    
                    public String 
                    stringValue() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    booleanValue() 
                    throws java.sql.SQLException;
    
                    public int 
                    intValue() 
                    throws java.sql.SQLException;
    
                    public long 
                    longValue() 
                    throws java.sql.SQLException;
    
                    public float 
                    floatValue() 
                    throws java.sql.SQLException;
    
                    public double 
                    doubleValue() 
                    throws java.sql.SQLException;
    
                    public byte 
                    byteValue() 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    bigDecimalValue() 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    dateValue() 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    timeValue() 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    timestampValue() 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    characterStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    asciiStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    binaryStreamValue() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isConvertibleTo(Class);
    
                    public 
                    abstract Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    makeJdbcArray(int);
    
                    protected 
                    static int 
                    compareBytes(byte[], byte[]);
}

                

oracle/sql/INTERVALDS.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class INTERVALDS 
                    extends Datum {
    
                    private 
                    static int 
                    MAXLEADPREC;
    
                    private 
                    static int 
                    MAXHOUR;
    
                    private 
                    static int 
                    MAXMINUTE;
    
                    private 
                    static int 
                    MAXSECOND;
    
                    private 
                    static int 
                    INTERVALDSMAXLENGTH;
    
                    private 
                    static int 
                    INTERVALDSOFFSET;
    
                    private 
                    static int 
                    INTERVALDAYOFFSET;
    
                    public void INTERVALDS();
    
                    public void INTERVALDS(byte[]);
    
                    public void INTERVALDS(String);
    
                    public byte[] 
                    toBytes();
    
                    public 
                    static byte[] 
                    toBytes(String);
    
                    public 
                    static String 
                    toString(byte[]);
    
                    public Object 
                    toJdbc();
    
                    public String 
                    stringValue();
    
                    public String 
                    toString();
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public Object 
                    makeJdbcArray(int);
    
                    private 
                    static byte[] 
                    _initIntervalDS();
    
                    static void 
                    <clinit>();
}

                

oracle/sql/INTERVALYM.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class INTERVALYM 
                    extends Datum {
    
                    private 
                    static int 
                    MASKVAL;
    
                    private 
                    static int 
                    INTYMYEAROFFSET;
    
                    private 
                    static int 
                    INTYMMONTHOFFSET;
    
                    private 
                    static int 
                    INTERVALYMMAXLENGTH;
    
                    private 
                    static int 
                    MAXYEARPREC;
    
                    private 
                    static int 
                    MAXMONTH;
    
                    public void INTERVALYM();
    
                    public void INTERVALYM(byte[]);
    
                    public void INTERVALYM(String);
    
                    public byte[] 
                    toBytes();
    
                    public 
                    static byte[] 
                    toBytes(String);
    
                    public 
                    static String 
                    toString(byte[]);
    
                    public Object 
                    toJdbc();
    
                    public String 
                    stringValue();
    
                    public String 
                    toString();
    
                    public Object 
                    makeJdbcArray(int);
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    private 
                    static byte[] 
                    _initIntervalYM();
    
                    static void 
                    <clinit>();
}

                

oracle/sql/LdxLib.class

                    package oracle.sql;

                    abstract 
                    interface LdxLib {
    
                    public 
                    abstract byte[] 
                    ldxadm(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxads(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    ldxchk(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxdfd(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    ldxdtd(byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    ldxdts(byte[], String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    ldxdts(byte[], byte[], String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxsto(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxdyf(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    ldxftd(byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxgdt() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxldd(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxnxd(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxrnd(byte[], String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxsbm(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    ldxsub(byte[], byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxstd(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    ldxtrn(byte[], String) 
                    throws java.sql.SQLException;
}

                

oracle/sql/LdxLibServer.class

                    package oracle.sql;

                    synchronized 
                    class LdxLibServer 
                    implements LdxLib {
    void LdxLibServer();
    
                    public 
                    native byte[] 
                    ldxadm(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxads(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    native int 
                    ldxchk(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxdfd(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    native void 
                    ldxdtd(byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native String 
                    ldxdts(byte[], String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    native String 
                    ldxdts(byte[], byte[], String) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxsto(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxdyf(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native void 
                    ldxftd(byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxgdt() 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxldd(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxnxd(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxrnd(byte[], String) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxsbm(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native void 
                    ldxsub(byte[], byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxstd(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    ldxtrn(byte[], String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/LdxLibThin.class

                    package oracle.sql;

                    synchronized 
                    class LdxLibThin 
                    implements LdxLib {
    
                    private 
                    static 
                    final int 
                    LDXFDLSZ = 50;
    
                    private 
                    static 
                    final byte 
                    LDX_CC = 1;
    
                    private 
                    static 
                    final byte 
                    LDX_SCC = 2;
    
                    private 
                    static 
                    final byte 
                    LDX_I = 3;
    
                    private 
                    static 
                    final byte 
                    LDX_Y = 4;
    
                    private 
                    static 
                    final byte 
                    LDX_IY = 5;
    
                    private 
                    static 
                    final byte 
                    LDX_YY = 6;
    
                    private 
                    static 
                    final byte 
                    LDX_IYY = 7;
    
                    private 
                    static 
                    final byte 
                    LDX_YYY = 8;
    
                    private 
                    static 
                    final byte 
                    LDX_IYYY = 9;
    
                    private 
                    static 
                    final byte 
                    LDX_YYYY = 10;
    
                    private 
                    static 
                    final byte 
                    LDX_YCYYY = 11;
    
                    private 
                    static 
                    final byte 
                    LDX_SYYYY = 12;
    
                    private 
                    static 
                    final byte 
                    LDX_SYCYYY = 13;
    
                    private 
                    static 
                    final byte 
                    LDX_YEAR = 14;
    
                    private 
                    static 
                    final byte 
                    LDX_SYEAR = 15;
    
                    private 
                    static 
                    final byte 
                    LDX_Q = 16;
    
                    private 
                    static 
                    final byte 
                    LDX_MM = 17;
    
                    private 
                    static 
                    final byte 
                    LDX_IW = 18;
    
                    private 
                    static 
                    final byte 
                    LDX_WW = 19;
    
                    private 
                    static 
                    final byte 
                    LDX_W = 20;
    
                    private 
                    static 
                    final byte 
                    LDX_D = 21;
    
                    private 
                    static 
                    final byte 
                    LDX_DD = 22;
    
                    private 
                    static 
                    final byte 
                    LDX_DDD = 23;
    
                    private 
                    static 
                    final byte 
                    LDX_HH24 = 24;
    
                    private 
                    static 
                    final byte 
                    LDX_HH = 25;
    
                    private 
                    static 
                    final byte 
                    LDX_MI = 26;
    
                    private 
                    static 
                    final byte 
                    LDX_SS = 27;
    
                    private 
                    static 
                    final byte 
                    LDX_SSSSS = 28;
    
                    private 
                    static 
                    final byte 
                    LDX_J = 29;
    
                    private 
                    static 
                    final byte 
                    LDX_MONTH = 30;
    
                    private 
                    static 
                    final byte 
                    LDX_MON = 31;
    
                    private 
                    static 
                    final byte 
                    LDX_DAY = 32;
    
                    private 
                    static 
                    final byte 
                    LDX_DY = 33;
    
                    private 
                    static 
                    final byte 
                    LDX_AMPM = 34;
    
                    private 
                    static 
                    final byte 
                    LDX_A_M_P_M = 35;
    
                    private 
                    static 
                    final byte 
                    LDX_BCAD = 36;
    
                    private 
                    static 
                    final byte 
                    LDX_B_C_A_D = 37;
    
                    private 
                    static 
                    final byte 
                    LDX_RM = 38;
    
                    private 
                    static 
                    final byte 
                    LDX_FM = 39;
    
                    private 
                    static 
                    final byte 
                    LDX_RR = 40;
    
                    private 
                    static 
                    final byte 
                    LDX_RRRR = 41;
    
                    private 
                    static 
                    final byte 
                    LDX_FX = 42;
    
                    private 
                    static 
                    final byte 
                    LDX_E = 43;
    
                    private 
                    static 
                    final byte 
                    LDX_EE = 44;
    
                    private 
                    static 
                    final byte 
                    LDX_LIT = 45;
    
                    private 
                    static 
                    final byte 
                    LDX_JUS = 16;
    
                    private 
                    static 
                    final byte 
                    LDX_NTH = 1;
    
                    private 
                    static 
                    final byte 
                    LDX_SPL = 2;
    
                    private 
                    static 
                    final byte 
                    LDX_CAP = 4;
    
                    private 
                    static 
                    final byte 
                    LDX_UPR = 8;
    
                    private 
                    static 
                    final byte 
                    LDX_QUO = 1;
    
                    private 
                    static 
                    final byte 
                    LDX_SPA = 2;
    
                    private 
                    static 
                    final byte 
                    LDX_PUN = 4;
    
                    private 
                    static 
                    final byte 
                    LDX_ALPHA = -128;
    
                    private 
                    static 
                    final byte 
                    LDXFNJUS = 64;
    
                    private 
                    static 
                    final byte 
                    LDX_NEG = 32;
    
                    private 
                    static 
                    final byte 
                    LDX_COMMA = 16;
    
                    private 
                    static 
                    final byte 
                    LDX_LEN = 15;
    
                    private 
                    static 
                    final byte 
                    LDXFL_NOT = 0;
    
                    private 
                    static 
                    final byte 
                    LDXFL_FLEX = 1;
    
                    private 
                    static 
                    final byte 
                    LDXFL_STD = 2;
    
                    private 
                    static 
                    final byte 
                    LDXFL_MDONE = 4;
    
                    private 
                    static 
                    final byte 
                    LDXFL_YDONE = 8;
    
                    private 
                    static 
                    final byte 
                    LDXFL_PUNC = 16;
    
                    private 
                    static 
                    final byte 
                    LDXFL_MSEC = 32;
    
                    private 
                    static 
                    final int 
                    LDXSBUFFERSIZE = 64;
    
                    private 
                    static 
                    final int 
                    LDXWBUFSIZE = 64;
    
                    private 
                    static 
                    final int 
                    LDXTCE = 0;
    
                    private 
                    static 
                    final int 
                    LDXTYE = 1;
    
                    private 
                    static 
                    final int 
                    LDXTMO = 2;
    
                    private 
                    static 
                    final int 
                    LDXTDA = 3;
    
                    private 
                    static 
                    final int 
                    LDXTHO = 4;
    
                    private 
                    static 
                    final int 
                    LDXTMI = 5;
    
                    private 
                    static 
                    final int 
                    LDXTSO = 6;
    
                    private 
                    static 
                    final int 
                    LDXTSIZ = 7;
    
                    private 
                    static 
                    final int 
                    LDX_SUNDAY = 2445029;
    
                    private 
                    final int 
                    LDXPMXYR;
    
                    private 
                    final int 
                    LDXPMNYR;
    
                    private 
                    static 
                    final char[][] 
                    ldxfda;
    
                    private 
                    static 
                    final byte[] 
                    ldxfdc;
    
                    private 
                    static 
                    final byte[] 
                    ldxfcdlen;
    
                    private 
                    static int[] 
                    ldxfdi;
    
                    private 
                    static 
                    final char[][] 
                    ldxfdx;
    
                    private 
                    static 
                    final byte[] 
                    ldxfdxc;
    
                    private 
                    static 
                    final byte[] 
                    NULLFMT;
    
                    private 
                    static 
                    final byte[] 
                    DEFAULT_FORMAT;
    
                    private 
                    static 
                    final String[] 
                    ldxpaa;
    
                    private 
                    static 
                    final int[] 
                    ldxdom;
    
                    private 
                    final byte[][] 
                    ldxpmxa;
    void LdxLibThin();
    
                    public byte[] 
                    ldxadm(byte[], int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxads(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    ldxchk(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxdfd(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    ldxdtd(byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public String 
                    ldxdts(byte[], String, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    ldxdts(byte[], byte[], String) 
                    throws java.sql.SQLException;
    
                    private int 
                    ldxdow(int, int, int, java.util.Locale);
    
                    private int 
                    ldxctj(int, int, int);
    
                    private byte[] 
                    ldxjtc(int, byte[]) 
                    throws java.sql.SQLException;
    
                    private byte[] 
                    ldxdyc(int, int, byte[]) 
                    throws java.sql.SQLException;
    
                    private int 
                    ldxcty(int, int, int);
    
                    private boolean 
                    ldxisl(int);
    
                    private String 
                    lxi42b(int, long, int, boolean, java.util.Locale) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxsto(String, String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxdyf(byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    ldxftd(byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxgdt() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxldd(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxnxd(byte[], int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxrnd(byte[], String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxsbm(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    ldxsub(byte[], byte[], int[], int[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxstd(String, String, String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    ldxtrn(byte[], String) 
                    throws java.sql.SQLException;
    
                    private void 
                    ldxsti(byte[]) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/LnxLib.class

                    package oracle.sql;

                    abstract 
                    interface LnxLib {
    
                    public 
                    abstract byte[] 
                    lnxabs(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxacos(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxadd(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxasin(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxatan(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxatan2(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxbex(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxcos(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxcsh(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxdec(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxdiv(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxexp(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxflo(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxceil(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxfpr(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxinc(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxln(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxlog(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxmod(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxmul(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxneg(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxpow(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxrou(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxsca(byte[], int, int, boolean[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxshift(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxsin(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxsnh(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxsqr(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxsub(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxtan(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxtnh(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxtru(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxcpn(String, boolean, int, boolean, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxfcn(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    lnxnfn(byte[], String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    lnxnuc(byte[], int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    lnxren(double) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract double 
                    lnxnur(byte[]);
    
                    public 
                    abstract byte[] 
                    lnxmin(long);
    
                    public 
                    abstract long 
                    lnxsni(byte[]) 
                    throws java.sql.SQLException;
}

                

oracle/sql/LnxLibServer.class

                    package oracle.sql;

                    synchronized 
                    class LnxLibServer 
                    implements LnxLib {
    void LnxLibServer();
    
                    public 
                    native byte[] 
                    lnxabs(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxacos(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxadd(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxasin(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxatan(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxatan2(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxbex(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxcos(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxcsh(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxdec(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxdiv(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxexp(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxflo(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxceil(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxfpr(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxinc(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxln(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxlog(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxmod(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxmul(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxneg(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxpow(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxrou(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxsca(byte[], int, int, boolean[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxshift(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxsin(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxsnh(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxsqr(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxsub(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxtan(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxtnh(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxtru(byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxcpn(String, boolean, int, boolean, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxfcn(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    native String 
                    lnxnfn(byte[], String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    native String 
                    lnxnuc(byte[], int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    native byte[] 
                    lnxren(double) 
                    throws java.sql.SQLException;
    
                    public 
                    native double 
                    lnxnur(byte[]);
    
                    public 
                    native byte[] 
                    lnxmin(long);
    
                    public 
                    native long 
                    lnxsni(byte[]) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/LnxLibThin.class

                    package oracle.sql;

                    synchronized 
                    class LnxLibThin 
                    implements LnxLib {
    
                    private 
                    static 
                    final byte[] 
                    lnxqone;
    
                    private 
                    static 
                    final byte[] 
                    lnxqtwo;
    
                    private 
                    static 
                    final int 
                    LNXQACOS = 0;
    
                    private 
                    static 
                    final int 
                    LNXQASIN = 1;
    
                    private 
                    static 
                    final int 
                    LNXQATAN = 2;
    
                    private 
                    static 
                    final int 
                    LNXQCOS = 3;
    
                    private 
                    static 
                    final int 
                    LNXQSIN = 4;
    
                    private 
                    static 
                    final int 
                    LNXQTAN = 5;
    
                    private 
                    static 
                    final int 
                    LNXQCSH = 6;
    
                    private 
                    static 
                    final int 
                    LNXQSNH = 7;
    
                    private 
                    static 
                    final int 
                    LNXQTNH = 8;
    
                    private 
                    static 
                    final int 
                    LNXQEXP = 9;
    
                    private 
                    static 
                    final int 
                    LNXM_NUM = 22;
    
                    private 
                    static 
                    final int 
                    LNXDIGS = 20;
    
                    private 
                    static 
                    final int 
                    LNXSGNBT = 128;
    
                    private 
                    static 
                    final int 
                    LNXEXPMX = 127;
    
                    private 
                    static 
                    final int 
                    LNXEXPMN = 0;
    
                    private 
                    static 
                    final int 
                    LNXEXPBS = 64;
    
                    private 
                    static 
                    final int 
                    LNXBASE = 100;
    
                    private 
                    static 
                    final int 
                    LNXMXFMT = 64;
    
                    private 
                    static 
                    final int 
                    LNXMXOUT = 40;
    
                    private 
                    static 
                    final int 
                    LNXDIV_LNXBASE_SQUARED = 10000;
    
                    private 
                    static 
                    final int 
                    MINUB1MAXVAL = 255;
    
                    private 
                    static 
                    final double 
                    ORANUM_FBASE = 100.0;
    
                    private 
                    final int 
                    LNXQNOSGN;
    
                    private 
                    final char 
                    LNXNFT_COMMA;
    
                    private 
                    final int 
                    LNXBYTEMASK;
    
                    private 
                    final int 
                    LNXSHORTMASK;
    
                    private 
                    static byte[] 
                    LnxqFirstDigit;
    
                    private 
                    static byte[] 
                    LnxqNegate;
    
                    private 
                    static byte[] 
                    LnxqTruncate_P;
    
                    private 
                    static byte[] 
                    LnxqTruncate_N;
    
                    private 
                    static byte[] 
                    LnxqRound_P;
    
                    private 
                    static byte[] 
                    LnxqRound_N;
    
                    private 
                    static byte[][] 
                    LnxqComponents_P;
    
                    private 
                    static byte[][] 
                    LnxqComponents_N;
    
                    private 
                    static byte[][] 
                    LnxqAdd_PPP;
    
                    private 
                    static byte[][] 
                    LnxqAdd_NNN;
    
                    private 
                    static byte[][] 
                    LnxqAdd_PNP;
    
                    private 
                    static byte[][] 
                    LnxqAdd_PNN;
    
                    private 
                    static byte[] 
                    LnxsubIdentity;
    
                    private 
                    static byte[][] 
                    LnxqDigit_P;
    
                    private 
                    static byte[][] 
                    LnxqDigit_N;
    
                    private 
                    static 
                    final double[][] 
                    powerTable;
    
                    private 
                    static 
                    final double[][] 
                    factorTable;
    
                    private char[] 
                    lnx_chars;
    void LnxLibThin();
    
                    public byte[] 
                    lnxabs(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxacos(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxadd(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxasin(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxatan(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxatan2(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxbex(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxcos(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxcsh(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxdec(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxdiv(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxexp(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxflo(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxceil(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxfpr(byte[], int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxinc(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxln(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxlog(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxmod(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxmul(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    private 
                    static int 
                    LnxmulSetSum(int[], int[], int, int, int, int);
    
                    private 
                    static int 
                    LnxmulSetDigit1(byte[], int, int);
    
                    private 
                    static void 
                    LnxmulSetDigit2(byte[], int, int);
    
                    public byte[] 
                    lnxneg(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxpow(byte[], int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxrou(byte[], int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxsca(byte[], int, int, boolean[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxshift(byte[], int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxsin(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxsnh(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxsqr(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxsub(byte[], byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxtan(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxtnh(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxtru(byte[], int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxcpn(String, boolean, int, boolean, int, String) 
                    throws java.sql.SQLException;
    
                    private 
                    static byte 
                    digitPtr(int, int, boolean);
    
                    private 
                    static int 
                    lnxqctn(char);
    
                    public byte[] 
                    lnxfcn(String, String, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    lnxnfn(byte[], String, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    lnxnuc(byte[], int, String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxren(double) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    lnxmin(long);
    
                    public double 
                    lnxnur(byte[]);
    
                    public long 
                    lnxsni(byte[]) 
                    throws java.sql.SQLException;
    
                    private byte[] 
                    lnxqh2n(char[]);
    
                    private long 
                    LNXQH2N_DIGIT(char, int, long);
    
                    private byte[] 
                    lnxqtra(byte[], int) 
                    throws java.sql.SQLException;
    
                    private byte[] 
                    lnxqtri(byte[], int) 
                    throws java.sql.SQLException;
    
                    private int 
                    lnxcmp(byte[], byte[]);
    
                    private int 
                    lnxsgn(byte[]);
    
                    private byte[] 
                    lnxqIDiv(byte[], int) 
                    throws java.sql.SQLException;
    
                    private 
                    static void 
                    _negateNumber(byte[]);
    
                    private 
                    static byte[] 
                    _setLength(byte[], int);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/LnxLibThinFormat.class

                    package oracle.sql;

                    synchronized 
                    class LnxLibThinFormat {
    boolean 
                    LNXNFFMI;
    boolean 
                    LNXNFFDS;
    boolean 
                    LNXNFFPR;
    boolean 
                    LNXNFFBL;
    boolean 
                    LNXNFFDA;
    boolean 
                    LNXNFFED;
    boolean 
                    LNXNFFSN;
    boolean 
                    LNXNFFVF;
    boolean 
                    LNXNFFSH;
    boolean 
                    LNXNFFST;
    boolean 
                    LNXNFFCH;
    boolean 
                    LNXNFFCT;
    boolean 
                    LNXNFFRC;
    boolean 
                    LNXNFFRN;
    boolean 
                    LNXNFFLC;
    boolean 
                    LNXNFFIC;
    boolean 
                    LNXNFNRD;
    boolean 
                    LNXNFRDX;
    boolean 
                    LNXNFFIL;
    boolean 
                    LNXNFFPT;
    boolean 
                    LNXNFF05;
    boolean 
                    LNXNFFHX;
    boolean 
                    LNXNFFTM;
    boolean 
                    LNXNFFUN;
    byte[] 
                    lnxnfgps;
    int 
                    lnxnflhd;
    int 
                    lnxnfrhd;
    int 
                    lnxnfsiz;
    int 
                    lnxnfzld;
    int 
                    lnxnfztr;
    
                    private 
                    final int 
                    LNXPFL_US;
    
                    private 
                    final int 
                    LNXPFL_NLS;
    
                    private 
                    final int 
                    LXM_LILCURR;
    
                    private 
                    final int 
                    LXM_LIUCURR;
    
                    private 
                    final int 
                    LXM_LIICURR;
    
                    private 
                    final int 
                    LXM_ROMOUT;
    void LnxLibThinFormat();
    
                    public void 
                    parseFormat(String) 
                    throws java.sql.SQLException;
}

                

oracle/sql/LnxLibThin$lnxqc.class

                    package oracle.sql;

                    synchronized 
                    class LnxLibThin$lnxqc {
    
                    static 
                    final int 
                    LNXQC0 = 0;
    
                    static 
                    final int 
                    LNXQC1 = 1;
    
                    static 
                    final int 
                    LNXQC2 = 2;
    
                    static 
                    final int 
                    LNXQC3 = 3;
    
                    static 
                    final int 
                    LNXQC4 = 4;
    
                    static 
                    final int 
                    LNXQC5 = 5;
    
                    static 
                    final int 
                    LNXQC6 = 6;
    
                    static 
                    final int 
                    LNXQC7 = 7;
    
                    static 
                    final int 
                    LNXQC8 = 8;
    
                    static 
                    final int 
                    LNXQC9 = 9;
    
                    static 
                    final int 
                    LNXQCPLUS = 10;
    
                    static 
                    final int 
                    LNXQCMINUS = 11;
    
                    static 
                    final int 
                    LNXQCSPACE = 12;
    
                    static 
                    final int 
                    LNXQCDOT = 13;
    
                    static 
                    final int 
                    LNXQCCOMMA = 14;
    
                    static 
                    final int 
                    LNXQCDOLLR = 15;
    
                    static 
                    final int 
                    LNXQCLT = 16;
    
                    static 
                    final int 
                    LNXQCGRT = 17;
    
                    static 
                    final int 
                    LNXQCLPT = 18;
    
                    static 
                    final int 
                    LNXQCRPT = 19;
    
                    static 
                    final int 
                    LNXQCHASH = 20;
    
                    static 
                    final int 
                    LNXQCTILDE = 21;
    
                    static 
                    final int 
                    LNXQCASML = 22;
    
                    static 
                    final int 
                    LNXQCBSML = 23;
    
                    static 
                    final int 
                    LNXQCCSML = 24;
    
                    static 
                    final int 
                    LNXQCDSML = 25;
    
                    static 
                    final int 
                    LNXQCESML = 26;
    
                    static 
                    final int 
                    LNXQCFSML = 27;
    
                    static 
                    final int 
                    LNXQCGSML = 28;
    
                    static 
                    final int 
                    LNXQCISML = 29;
    
                    static 
                    final int 
                    LNXQCLSML = 30;
    
                    static 
                    final int 
                    LNXQCMSML = 31;
    
                    static 
                    final int 
                    LNXQCPSML = 32;
    
                    static 
                    final int 
                    LNXQCRSML = 33;
    
                    static 
                    final int 
                    LNXQCSSML = 34;
    
                    static 
                    final int 
                    LNXQCTSML = 35;
    
                    static 
                    final int 
                    LNXQCVSML = 36;
    
                    static 
                    final int 
                    LNXQCALRG = 37;
    
                    static 
                    final int 
                    LNXQCBLRG = 38;
    
                    static 
                    final int 
                    LNXQCCLRG = 39;
    
                    static 
                    final int 
                    LNXQCDLRG = 40;
    
                    static 
                    final int 
                    LNXQCELRG = 41;
    
                    static 
                    final int 
                    LNXQCFLRG = 42;
    
                    static 
                    final int 
                    LNXQCILRG = 43;
    
                    static 
                    final int 
                    LNXQCLLRG = 44;
    
                    static 
                    final int 
                    LNXQCMLRG = 45;
    
                    static 
                    final int 
                    LNXQCPLRG = 46;
    
                    static 
                    final int 
                    LNXQCRLRG = 47;
    
                    static 
                    final int 
                    LNXQCSLRG = 48;
    
                    static 
                    final int 
                    LNXQCTLRG = 49;
    
                    private void LnxLibThin$lnxqc(LnxLibThin);
}

                

oracle/sql/LoadCorejava.class

                    package oracle.sql;

                    synchronized 
                    class LoadCorejava {
    void LoadCorejava();
    
                    static void 
                    init();
    
                    static void 
                    <clinit>();
}

                

oracle/sql/NUMBER.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class NUMBER 
                    extends Datum {
    
                    static byte[] 
                    MAX_LONG;
    
                    static byte[] 
                    MIN_LONG;
    
                    private 
                    static 
                    final int 
                    CHARACTER_ZERO = 48;
    
                    private 
                    static 
                    final java.math.BigDecimal 
                    BIGDEC_NEGZERO;
    
                    private 
                    static 
                    final java.math.BigDecimal 
                    BIGDEC_ZERO;
    
                    private 
                    static 
                    final java.math.BigDecimal 
                    BIGDEC_ONE;
    
                    private 
                    static 
                    final java.math.BigInteger 
                    BIGINT_ZERO;
    
                    private 
                    static 
                    final java.math.BigInteger 
                    BIGINT_HUND;
    
                    private 
                    static 
                    final byte 
                    DIGEND = 21;
    
                    private 
                    static 
                    final byte 
                    ODIGEND = 9;
    
                    private 
                    static 
                    final int 
                    HUNDIGMAX = 66;
    
                    private 
                    static 
                    final int 
                    BIGINTARRAYMAX = 54;
    
                    private 
                    static 
                    final double 
                    BIGRATIO = 0.1505149978319906;
    
                    private 
                    static 
                    final int 
                    BIGLENMAX = 22;
    
                    static 
                    final byte 
                    LNXM_NUM = 22;
    
                    static 
                    final int 
                    LNXSGNBT = 128;
    
                    static 
                    final byte 
                    LNXDIGS = 20;
    
                    static 
                    final byte 
                    LNXEXPBS = 64;
    
                    static 
                    final double 
                    ORANUM_FBASE = 100.0;
    
                    static 
                    final int 
                    LNXBASE = 100;
    
                    static 
                    final byte 
                    IEEE_DBL_DIG = 15;
    
                    private 
                    static 
                    final byte 
                    IEEE_FLT_DIG = 6;
    
                    static 
                    final int 
                    LNXEXPMX = 127;
    
                    static 
                    final int 
                    LNXEXPMN = 0;
    
                    static 
                    final int 
                    LNXMXOUT = 40;
    
                    static 
                    final int 
                    LNXMXFMT = 64;
    
                    private 
                    static 
                    final byte 
                    BYTE_MAX_VALUE = 127;
    
                    private 
                    static 
                    final byte 
                    BYTE_MIN_VALUE = -128;
    
                    private 
                    static 
                    final short 
                    SHORT_MAX_VALUE = 32767;
    
                    private 
                    static 
                    final short 
                    SHORT_MIN_VALUE = -32768;
    
                    private 
                    static 
                    final byte[] 
                    PI;
    
                    private 
                    static 
                    final byte[] 
                    E;
    
                    private 
                    static 
                    final byte[] 
                    LN10;
    
                    private 
                    static LnxLib 
                    _slnxlib;
    
                    private 
                    static LnxLib 
                    _thinlib;
    
                    private 
                    static int 
                    DBL_MAX;
    
                    private 
                    static int 
                    INT_MAX;
    
                    private 
                    static float 
                    FLOAT_MAX_INT;
    
                    private 
                    static float 
                    FLOAT_MIN_INT;
    
                    private 
                    static double 
                    DOUBLE_MAX_INT;
    
                    private 
                    static double 
                    DOUBLE_MIN_INT;
    
                    private 
                    static double 
                    DOUBLE_MAX_INT_2;
    
                    private 
                    static double 
                    DOUBLE_MIN_INT_2;
    
                    private 
                    static Object 
                    drvType;
    
                    private 
                    static String 
                    LANGID;
    
                    public void NUMBER();
    
                    public void NUMBER(byte[]);
    
                    public void NUMBER(byte);
    
                    public void NUMBER(int);
    
                    public void NUMBER(long);
    
                    public void NUMBER(short);
    
                    public void NUMBER(float);
    
                    public void NUMBER(double) 
                    throws java.sql.SQLException;
    
                    public void NUMBER(java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public void NUMBER(java.math.BigInteger) 
                    throws java.sql.SQLException;
    
                    public void NUMBER(String, int) 
                    throws java.sql.SQLException;
    
                    public void NUMBER(boolean);
    
                    public void NUMBER(Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static double 
                    toDouble(byte[]);
    
                    public 
                    static float 
                    toFloat(byte[]);
    
                    public 
                    static long 
                    toLong(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    toInt(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static short 
                    toShort(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte 
                    toByte(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.math.BigInteger 
                    toBigInteger(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.math.BigDecimal 
                    toBigDecimal(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    toString(byte[]);
    
                    public 
                    static boolean 
                    toBoolean(byte[]);
    
                    public 
                    static byte[] 
                    toBytes(double) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(float);
    
                    public 
                    static byte[] 
                    toBytes(long);
    
                    public 
                    static byte[] 
                    toBytes(int);
    
                    public 
                    static byte[] 
                    toBytes(short);
    
                    public 
                    static byte[] 
                    toBytes(byte);
    
                    public 
                    static byte[] 
                    toBytes(java.math.BigInteger) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(boolean);
    
                    public byte[] 
                    toBytes();
    
                    public double 
                    doubleValue();
    
                    public float 
                    floatValue();
    
                    public long 
                    longValue() 
                    throws java.sql.SQLException;
    
                    public int 
                    intValue() 
                    throws java.sql.SQLException;
    
                    public short 
                    shortValue() 
                    throws java.sql.SQLException;
    
                    public byte 
                    byteValue() 
                    throws java.sql.SQLException;
    
                    public java.math.BigInteger 
                    bigIntegerValue() 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    bigDecimalValue() 
                    throws java.sql.SQLException;
    
                    public String 
                    stringValue();
    
                    public boolean 
                    booleanValue();
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public NUMBER 
                    abs() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    acos() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    add(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    asin() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    atan() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    atan2(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    ceil() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    cos() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    cosh() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    decrement() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    div(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    exp() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    floatingPointRound(int) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    floor() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    increment() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    ln() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    log(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    mod(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    mul(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    negate() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    pow(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    pow(int) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    round(int) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    scale(int, int, boolean[]) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    shift(int) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    sin() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    sinh() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    sqroot() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    sub(NUMBER) 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    tan() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    tanh() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    truncate(int) 
                    throws java.sql.SQLException;
    
                    public 
                    static NUMBER 
                    formattedTextToNumber(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static NUMBER 
                    textToPrecisionNumber(String, boolean, int, boolean, int, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    toFormattedText(String, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    toText(int, String) 
                    throws java.sql.SQLException;
    
                    public int 
                    compareTo(NUMBER);
    
                    public boolean 
                    isInf();
    
                    public boolean 
                    isNegInf();
    
                    public boolean 
                    isPosInf();
    
                    public boolean 
                    isInt();
    
                    public 
                    static boolean 
                    isValid(byte[]);
    
                    public boolean 
                    isZero();
    
                    public 
                    static NUMBER 
                    e();
    
                    public 
                    static NUMBER 
                    ln10();
    
                    public 
                    static NUMBER 
                    negInf();
    
                    public 
                    static NUMBER 
                    pi();
    
                    public 
                    static NUMBER 
                    posInf();
    
                    public 
                    static NUMBER 
                    zero();
    
                    public int 
                    sign();
    
                    static boolean 
                    _isInf(byte[]);
    
                    private 
                    static boolean 
                    _isInt(byte[]);
    
                    static boolean 
                    _isNegInf(byte[]);
    
                    static boolean 
                    _isPosInf(byte[]);
    
                    static boolean 
                    _isPositive(byte[]);
    
                    static boolean 
                    _isZero(byte[]);
    
                    static byte[] 
                    _makePosInf();
    
                    static byte[] 
                    _makeNegInf();
    
                    static byte[] 
                    _makeZero();
    
                    static byte[] 
                    _fromLnxFmt(byte[]);
    
                    static byte[] 
                    _toLnxFmt(byte[], boolean);
    
                    private 
                    static LnxLib 
                    _getLnxLib();
    
                    private 
                    static LnxLib 
                    _getThinLib();
    
                    private 
                    static int 
                    _byteToChars(byte, char[], int);
    
                    private 
                    static void 
                    _byteTo2Chars(byte, char[], int);
    
                    private 
                    static void 
                    _printBytes(byte[]);
    
                    private byte[] 
                    stringToBytes(String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/OffsetDST.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class OffsetDST {
    
                    private java.sql.Timestamp 
                    timestamp;
    
                    private int 
                    offset;
    
                    private byte 
                    DSTflag;
    
                    public void OffsetDST(java.sql.Timestamp, int, byte);
    
                    public void OffsetDST();
    
                    public int 
                    getOFFSET();
    
                    public byte 
                    getDSTFLAG();
    
                    public java.sql.Timestamp 
                    getTimestamp();
    
                    public void 
                    setOFFSET(int);
    
                    public void 
                    setDSTFLAG(byte);
}

                

oracle/sql/TableClass.class

                    package oracle.sql;

                    synchronized 
                    class TableClass 
                    extends java.util.Hashtable {
    
                    private java.util.Vector 
                    v;
    void TableClass();
    
                    public Object 
                    put(Object, Integer);
    
                    public Object 
                    getKey(int);
    
                    public void 
                    dispTable();
}

                

oracle/sql/TIMESTAMP.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class TIMESTAMP 
                    extends Datum 
                    implements java.io.Serializable {
    
                    private 
                    static 
                    final int 
                    CENTURY_DEFAULT = 119;
    
                    private 
                    static 
                    final int 
                    DECADE_DEFAULT = 100;
    
                    private 
                    static 
                    final int 
                    MONTH_DEFAULT = 1;
    
                    private 
                    static 
                    final int 
                    DAY_DEFAULT = 1;
    
                    private 
                    static 
                    final int 
                    DECADE_INIT = 170;
    
                    private 
                    static 
                    final int 
                    JAVA_YEAR = 1970;
    
                    private 
                    static 
                    final int 
                    JAVA_MONTH = 0;
    
                    private 
                    static 
                    final int 
                    JAVA_DATE = 1;
    
                    private 
                    static 
                    final int 
                    SIZE_TIMESTAMP = 11;
    
                    private 
                    static 
                    final int 
                    SIZE_TIMESTAMP_NOFRAC = 7;
    
                    private 
                    static 
                    final int 
                    SIZE_DATE = 7;
    
                    private 
                    static 
                    final int 
                    MINYEAR = -4712;
    
                    private 
                    static 
                    final int 
                    MAXYEAR = 9999;
    
                    private 
                    static 
                    final int 
                    JANMONTH = 1;
    
                    private 
                    static 
                    final int 
                    DECMONTH = 12;
    
                    private 
                    static 
                    final int 
                    MINDAYS = 1;
    
                    private 
                    static 
                    final int 
                    MAXDAYS = 31;
    
                    private 
                    static 
                    final int 
                    MINHOURS = 1;
    
                    private 
                    static 
                    final int 
                    MAXHOURS = 24;
    
                    private 
                    static 
                    final int 
                    MINMINUTES = 1;
    
                    private 
                    static 
                    final int 
                    MAXMINUTES = 60;
    
                    private 
                    static 
                    final int 
                    MINSECONDS = 1;
    
                    private 
                    static 
                    final int 
                    MAXSECONDS = 60;
    
                    private 
                    static 
                    final int[] 
                    daysInMonth;
    
                    static 
                    final long 
                    serialVersionUID = -7964732752952728545;
    
                    public void TIMESTAMP();
    
                    public void TIMESTAMP(byte[]);
    
                    public void TIMESTAMP(java.sql.Time);
    
                    public void TIMESTAMP(java.sql.Date);
    
                    public void TIMESTAMP(java.sql.Timestamp);
    
                    public void TIMESTAMP(DATE);
    
                    public void TIMESTAMP(String);
    
                    public 
                    static java.sql.Date 
                    toDate(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Time 
                    toTime(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Timestamp 
                    toTimestamp(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static DATE 
                    toDATE(byte[]) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    timestampValue() 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    toString(byte[]);
    
                    public byte[] 
                    toBytes();
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Time);
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Date);
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Timestamp);
    
                    public 
                    static byte[] 
                    toBytes(DATE);
    
                    public 
                    static byte[] 
                    toBytes(String);
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public 
                    static TIMESTAMP 
                    TimeZoneConvert(java.sql.Connection, TIMESTAMP, java.util.TimeZone, java.util.TimeZone) 
                    throws java.sql.SQLException;
    
                    public String 
                    stringValue();
    
                    public java.sql.Date 
                    dateValue() 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    timeValue() 
                    throws java.sql.SQLException;
    
                    private 
                    static byte[] 
                    initTimestamp();
    
                    private boolean 
                    isLeapYear(int);
    
                    private boolean 
                    isValid();
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/TIMESTAMPLTZ.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class TIMESTAMPLTZ 
                    extends Datum {
    
                    private 
                    static int 
                    SIZE_TIMESTAMPLTZ;
    
                    private 
                    static int 
                    SIZE_TIMESTAMPLTZ_NOFRAC;
    
                    private 
                    static int 
                    SIZE_DATE;
    
                    private 
                    static int 
                    CENTURY_DEFAULT;
    
                    private 
                    static int 
                    DECADE_DEFAULT;
    
                    private 
                    static int 
                    MONTH_DEFAULT;
    
                    private 
                    static int 
                    DAY_DEFAULT;
    
                    private 
                    static int 
                    DECADE_INIT;
    
                    private 
                    static int 
                    HOUR_MILLISECOND;
    
                    private 
                    static int 
                    MINUTE_MILLISECOND;
    
                    private 
                    static int 
                    JAVA_YEAR;
    
                    private 
                    static int 
                    JAVA_MONTH;
    
                    private 
                    static int 
                    JAVA_DATE;
    
                    private 
                    static boolean 
                    cached;
    
                    private 
                    static java.util.Calendar 
                    dbtz;
    
                    public void TIMESTAMPLTZ();
    
                    public void TIMESTAMPLTZ(byte[]);
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.sql.Time, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.sql.Timestamp, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, DATE, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, String, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.util.Calendar, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.util.Calendar, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.util.Calendar, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.util.Calendar, DATE) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.util.Calendar, String) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, DATE) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPLTZ(java.sql.Connection, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Date 
                    toDate(java.sql.Connection, byte[], java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Time 
                    toTime(java.sql.Connection, byte[], java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Timestamp 
                    toTimestamp(java.sql.Connection, byte[], java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static DATE 
                    toDATE(java.sql.Connection, byte[], java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    timestampValue(java.sql.Connection, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    toString(java.sql.Connection, byte[], java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    toBytes();
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Time, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Timestamp, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, DATE, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, String, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Date 
                    toDate(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Time 
                    toTime(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Timestamp 
                    toTimestamp(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static DATE 
                    toDATE(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    toString(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.util.Calendar, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.util.Calendar, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.util.Calendar, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.util.Calendar, DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.util.Calendar, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    stringValue(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public String 
                    stringValue(java.sql.Connection, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    dateValue(java.sql.Connection, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    dateValue(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    timeValue(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    timeValue(java.sql.Connection, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    private 
                    static byte[] 
                    initTimestampltz();
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    static void 
                    TimeZoneAdjust(java.sql.Connection, java.util.Calendar, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    private 
                    static int 
                    getJavaYear(int, int);
    
                    private 
                    static byte 
                    getZoneOffset(java.sql.Connection, java.util.Calendar, OffsetDST) 
                    throws java.sql.SQLException;
    
                    private 
                    static java.util.Calendar 
                    getDbTzCalendar(String);
    
                    private 
                    static java.util.Calendar 
                    getSessCalendar(java.sql.Connection);
    
                    private 
                    static 
                    synchronized void 
                    getDbTimeZone(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/TIMESTAMPTZ.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class TIMESTAMPTZ 
                    extends Datum {
    
                    private 
                    static int 
                    CENTURY_DEFAULT;
    
                    private 
                    static int 
                    DECADE_DEFAULT;
    
                    private 
                    static int 
                    MONTH_DEFAULT;
    
                    private 
                    static int 
                    DAY_DEFAULT;
    
                    private 
                    static int 
                    DECADE_INIT;
    
                    private 
                    static int 
                    HOUR_MILLISECOND;
    
                    private 
                    static int 
                    MINUTE_MILLISECOND;
    
                    private 
                    static int 
                    JAVA_YEAR;
    
                    private 
                    static int 
                    JAVA_MONTH;
    
                    private 
                    static int 
                    JAVA_DATE;
    
                    private 
                    static int 
                    SIZE_TIMESTAMPTZ;
    
                    private 
                    static int 
                    SIZE_TIMESTAMP;
    
                    private 
                    static int 
                    OFFSET_HOUR;
    
                    private 
                    static int 
                    OFFSET_MINUTE;
    
                    private 
                    static byte 
                    REGIONIDBIT;
    
                    public void TIMESTAMPTZ();
    
                    public void TIMESTAMPTZ(byte[]);
    
                    public void TIMESTAMPTZ(java.sql.Connection, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, java.sql.Time, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, java.sql.Timestamp, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, DATE) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, String) 
                    throws java.sql.SQLException;
    
                    public void TIMESTAMPTZ(java.sql.Connection, String, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Date 
                    toDate(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Time 
                    toTime(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static DATE 
                    toDATE(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.Timestamp 
                    toTimestamp(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    toString(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    timestampValue(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    toBytes();
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Time, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, java.sql.Timestamp, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    toBytes(java.sql.Connection, String, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public String 
                    stringValue(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    dateValue(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    timeValue(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    private 
                    static byte[] 
                    initTimestamptz();
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    private 
                    static int 
                    setHighOrderbits(int);
    
                    private 
                    static int 
                    setLowOrderbits(int);
    
                    private 
                    static int 
                    getHighOrderbits(int);
    
                    private 
                    static int 
                    getLowOrderbits(int);
    
                    private 
                    static int 
                    getJavaYear(int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/TIMEZONETAB.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class TIMEZONETAB {
    
                    private 
                    static java.util.Hashtable 
                    zonetab;
    
                    private 
                    static int 
                    OFFSET_HOUR;
    
                    private 
                    static int 
                    OFFSET_MINUTE;
    
                    private 
                    static int 
                    HOUR_MILLISECOND;
    
                    private 
                    static int 
                    MINUTE_MILLISECOND;
    
                    private 
                    static int 
                    BYTE_SIZE;
    
                    public void TIMEZONETAB();
    
                    public 
                    static void 
                    addTrans(byte[], int);
    
                    public 
                    static byte 
                    getLocalOffset(java.util.Calendar, int, OffsetDST) 
                    throws NullPointerException, java.sql.SQLException;
    
                    public 
                    static int 
                    getOffset(java.util.Calendar, int) 
                    throws NullPointerException, java.sql.SQLException;
    
                    public 
                    static void 
                    displayTable(int);
    
                    public 
                    static boolean 
                    checkID(int);
    
                    public 
                    static void 
                    updateTable(java.sql.Connection, int) 
                    throws java.sql.SQLException, NullPointerException;
    
                    private 
                    static int[] 
                    getIDs();
    
                    static void 
                    <clinit>();
}

                

oracle/sql/TRANSDUMP.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class TRANSDUMP {
    
                    public void TRANSDUMP();
    
                    public 
                    static byte[] 
                    getTransitions(java.sql.Connection, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/utilpack.class

                    package oracle.sql;

                    synchronized 
                    class utilpack {
    
                    private 
                    static int 
                    INTYM3BYTE;
    
                    private 
                    static int 
                    INTYM2BYTE;
    
                    private 
                    static int 
                    INTYM1BYTE;
    void utilpack();
    
                    protected 
                    static int 
                    LEFTSHIFTFIRSTNIBBLE(byte);
    
                    protected 
                    static int 
                    LEFTSHIFTSECONDNIBBLE(byte);
    
                    protected 
                    static int 
                    LEFTSHIFTTHIRDNIBBLE(byte);
    
                    protected 
                    static byte 
                    RIGHTSHIFTFIRSTNIBBLE(int);
    
                    protected 
                    static byte 
                    RIGHTSHIFTSECONDNIBBLE(int);
    
                    protected 
                    static byte 
                    RIGHTSHIFTTHIRDNIBBLE(int);
    
                    protected 
                    static byte 
                    RIGHTSHIFTFOURTHNIBBLE(int);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/ZONEIDMAP.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class ZONEIDMAP {
    
                    static TableClass 
                    zoneid;
    
                    protected 
                    static int 
                    INV_ZONEID;
    
                    public void ZONEIDMAP();
    
                    public 
                    static int 
                    getID(String);
    
                    public 
                    static String 
                    getRegion(int);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/LxMetaData.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class LxMetaData {
    
                    private 
                    static 
                    final String 
                    DEFAULT_ES_ORA_LANGUAGE = LATIN AMERICAN SPANISH;
    
                    private 
                    static 
                    final int 
                    WIDTH_SIZE = 8;
    
                    private 
                    static 
                    final short 
                    WIDTH_MASK = 255;
    
                    public 
                    static 
                    final int 
                    ST_BADCODESET = 0;
    
                    private 
                    static 
                    final java.util.Locale 
                    EN_LOCALE;
    
                    private 
                    static java.util.Map 
                    ORACLE_LANG_2_ISO_A2_LANG;
    
                    private 
                    static java.util.Map 
                    ORACLE_TERR_2_ISO_A2_TERR;
    
                    private 
                    static java.util.Map 
                    ORACLE_LANG_2_TERR;
    
                    private 
                    static java.util.Map 
                    ISO_A2_LANG_2_ORACLE_LANG;
    
                    private 
                    static java.util.Map 
                    ISO_LANGUAGE_DEFAULT_TERRITORY;
    
                    private 
                    static java.util.Map 
                    ISO_LOCALE_2_ORACLE_LOCALE;
    
                    private 
                    static java.util.Map 
                    ISO_A2_TERR_2_ORACLE_TERR;
    
                    private 
                    static java.util.Map 
                    CHARSET_RATIO;
    
                    static java.util.Locale 
                    getJavaLocale(String, String);
    
                    public 
                    static String 
                    getNLSLanguage(java.util.Locale);
    
                    public 
                    static String 
                    getNLSTerritory(java.util.Locale);
    
                    private 
                    static String 
                    getOraLocale(java.util.Locale);
    
                    public 
                    static int 
                    getRatio(int, int);
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getLang2IsoLangMap();
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getTerr2IsoTerrMap();
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getLang2Terr();
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getIsoLangToOracleMap();
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getIsoLangDefaultTerrMap();
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getIsoLocToOracleMap();
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getIsoTerrToOracleMap();
    
                    private 
                    static 
                    synchronized java.util.Map 
                    getCharsetRatio();
    
                    private void LxMetaData();
    
                    static void 
                    <clinit>();
}

                

oracle/sql/converter/CharacterSetMetaData.class

                    package oracle.sql.converter;

                    public 
                    synchronized 
                    class CharacterSetMetaData {
    
                    static 
                    final short 
                    WIDTH_SIZE = 8;
    
                    static 
                    final short 
                    WIDTH_MASK = 255;
    
                    static 
                    final short 
                    FLAG_FIXEDWIDTH = 256;
    
                    public 
                    static 
                    final int 
                    ST_BADCODESET = 0;
    
                    private 
                    static 
                    final java.util.HashMap 
                    JAVALOC2NLSLOC;
    
                    private 
                    static 
                    final short[][] 
                    m_maxCharWidth;
    
                    public void CharacterSetMetaData();
    
                    public 
                    static String 
                    getNLSLanguage(java.util.Locale);
    
                    public 
                    static String 
                    getNLSTerritory(java.util.Locale);
    
                    public 
                    static boolean 
                    isFixedWidth(int) 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    getRatio(int, int);
    
                    private 
                    static java.util.HashMap 
                    createJavaLocale2NLSLocale();
    
                    static void 
                    <clinit>();
}

                

oracle/sql/converter/CharacterConverterFactoryOGS.class

                    package oracle.sql.converter;

                    public 
                    synchronized 
                    class CharacterConverterFactoryOGS 
                    extends CharacterConverterFactory {
    
                    public void CharacterConverterFactoryOGS();
    
                    public CharacterConverters 
                    make(int);
}

                

oracle/sql/converter/CharacterConverterFactory.class

                    package oracle.sql.converter;

                    public 
                    abstract 
                    synchronized 
                    class CharacterConverterFactory {
    
                    public void CharacterConverterFactory();
    
                    public 
                    abstract CharacterConverters 
                    make(int);
}

                

oracle/sql/converter/CharacterConverters.class

                    package oracle.sql.converter;

                    public 
                    abstract 
                    synchronized 
                    class CharacterConverters 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 8064827627847332101;
    
                    public 
                    static 
                    final int 
                    CHARCONV1BYTEID = 0;
    
                    public 
                    static 
                    final int 
                    CHARCONV12BYTEID = 1;
    
                    public 
                    static 
                    final int 
                    CHARCONVJAEUCID = 2;
    
                    public 
                    static 
                    final int 
                    CHARCONVLCFIXEDID = 3;
    
                    public 
                    static 
                    final int 
                    CHARCONVSJISID = 4;
    
                    public 
                    static 
                    final int 
                    CHARCONVZHTEUCID = 5;
    
                    public 
                    static 
                    final int 
                    CHARCONV2BYTEFIXEDID = 6;
    
                    public 
                    static 
                    final int 
                    CHARCONVSHIFTID = 7;
    
                    public 
                    static 
                    final int 
                    CHARCONVLCID = 8;
    
                    public 
                    static 
                    final int 
                    CHARCONVGB18030ID = 9;
    
                    public 
                    static 
                    final int 
                    CHARCONVAL16UTF16ID = 10;
    
                    public 
                    static 
                    final int 
                    CHARCONVMSOLISO2022JPFWID = 11;
    
                    public 
                    static 
                    final int 
                    CHARCONVMSOLISO2022JPHWID = 12;
    
                    public 
                    static 
                    final int 
                    CHARCONVGBKID = 13;
    
                    public int 
                    m_groupId;
    
                    public int 
                    m_oracleId;
    
                    public int[][] 
                    extraUnicodeToOracleMapping;
    
                    public void CharacterConverters();
    
                    protected 
                    abstract void 
                    storeMappingRange(int, java.util.Hashtable, java.util.Hashtable);
    
                    public int 
                    getGroupId();
    
                    public int 
                    getOracleId();
    
                    public 
                    abstract String 
                    toUnicodeString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    toUnicodeStringWithReplacement(byte[], int, int);
    
                    public 
                    abstract byte[] 
                    toOracleString(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    toOracleStringWithReplacement(String);
    
                    public 
                    abstract void 
                    buildUnicodeToOracleMapping();
    
                    public 
                    abstract void 
                    extractCodepoints(java.util.Vector);
    
                    public 
                    abstract void 
                    extractExtraMappings(java.util.Vector);
    
                    public 
                    abstract boolean 
                    hasExtraMappings();
    
                    public 
                    abstract char 
                    getOraChar1ByteRep();
    
                    public 
                    abstract char 
                    getOraChar2ByteRep();
    
                    public 
                    abstract int 
                    getUCS2CharRep();
    
                    public char[] 
                    getLeadingCodes();
}

                

oracle/sql/converter/CharacterConverterFactoryJDBC.class

                    package oracle.sql.converter;

                    public 
                    synchronized 
                    class CharacterConverterFactoryJDBC 
                    extends CharacterConverterFactory {
    
                    public void CharacterConverterFactoryJDBC();
    
                    public CharacterConverters 
                    make(int);
}

                

oracle/sql/converter/CharacterConverterJDBC.class

                    package oracle.sql.converter;

                    public 
                    abstract 
                    synchronized 
                    class CharacterConverterJDBC 
                    extends CharacterConverters {
    
                    static 
                    final String 
                    CONVERTERNAMEPREFIX = converter_xcharset/lx2;
    
                    static 
                    final String 
                    CONVERTERIDPREFIX = 0000;
    
                    static 
                    final int 
                    HIBYTEMASK = 65280;
    
                    static 
                    final int 
                    LOWBYTEMASK = 255;
    
                    static 
                    final int 
                    STORE_INCREMENT = 10;
    
                    static 
                    final int 
                    INVALID_ORA_CHAR = -1;
    
                    static 
                    final int 
                    FIRSTBSHIFT = 24;
    
                    static 
                    final int 
                    SECONDBSHIFT = 16;
    
                    static 
                    final int 
                    THIRDBSHIFT = 8;
    
                    static 
                    final int 
                    UB2MASK = 65535;
    
                    static 
                    final int 
                    UB4MASK = 65535;
    
                    static 
                    final java.util.HashMap 
                    m_converterStore;
    
                    public void CharacterConverterJDBC();
    
                    public 
                    static CharacterConverters 
                    getInstance(int);
    
                    protected void 
                    storeMappingRange(int, java.util.Hashtable, java.util.Hashtable);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/converter/CharacterConverter1Byte.class

                    package oracle.sql.converter;

                    public 
                    synchronized 
                    class CharacterConverter1Byte 
                    extends CharacterConverterJDBC {
    
                    static 
                    final int 
                    ORACHARMASK = 255;
    
                    static 
                    final int 
                    UCSCHARWIDTH = 16;
    
                    public int 
                    m_ucsReplacement;
    
                    public int[] 
                    m_ucsChar;
    
                    public char[] 
                    m_oraCharLevel1;
    
                    public char[] 
                    m_oraCharSurrogateLevel;
    
                    public char[] 
                    m_oraCharLevel2;
    
                    public byte 
                    m_oraCharReplacement;
    
                    protected 
                    transient boolean 
                    noSurrogate;
    
                    protected 
                    transient boolean 
                    strictASCII;
    
                    protected 
                    transient int 
                    m_oraCharLevel2Size;
    
                    public void CharacterConverter1Byte();
    int 
                    toUnicode(byte) 
                    throws java.sql.SQLException;
    int 
                    toUnicodeWithReplacement(byte);
    byte 
                    toOracleCharacter(char, char) 
                    throws java.sql.SQLException;
    byte 
                    toOracleCharacter(char) 
                    throws java.sql.SQLException;
    byte 
                    toOracleCharacterWithReplacement(char, char);
    byte 
                    toOracleCharacterWithReplacement(char);
    
                    public String 
                    toUnicodeString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public String 
                    toUnicodeStringWithReplacement(byte[], int, int);
    
                    public byte[] 
                    toOracleString(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    toOracleStringWithReplacement(String);
    
                    public void 
                    buildUnicodeToOracleMapping();
    
                    public void 
                    extractCodepoints(java.util.Vector);
    
                    public void 
                    extractExtraMappings(java.util.Vector);
    
                    public boolean 
                    hasExtraMappings();
    
                    public char 
                    getOraChar1ByteRep();
    
                    public char 
                    getOraChar2ByteRep();
    
                    public int 
                    getUCS2CharRep();
}

                

oracle/sql/ArrayDescriptor.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class ArrayDescriptor 
                    extends TypeDescriptor 
                    implements java.io.Serializable {
    
                    public 
                    static 
                    final int 
                    TYPE_VARRAY = 3;
    
                    public 
                    static 
                    final int 
                    TYPE_NESTED_TABLE = 2;
    
                    public 
                    static 
                    final int 
                    CACHE_NONE = 0;
    
                    public 
                    static 
                    final int 
                    CACHE_ALL = 1;
    
                    public 
                    static 
                    final int 
                    CACHE_LAST = 2;
    
                    static 
                    final long 
                    serialVersionUID = 3838105394346513809;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    
                    public 
                    static ArrayDescriptor 
                    createDescriptor(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static ArrayDescriptor 
                    createDescriptor(String, java.sql.Connection, boolean, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static ArrayDescriptor 
                    createDescriptor(SQLName, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static ArrayDescriptor 
                    createDescriptor(SQLName, java.sql.Connection, boolean, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static ArrayDescriptor 
                    createDescriptor(oracle.jdbc.oracore.OracleTypeCOLLECTION) 
                    throws java.sql.SQLException;
    
                    public void ArrayDescriptor(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void ArrayDescriptor(SQLName, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void ArrayDescriptor(SQLName, oracle.jdbc.oracore.OracleTypeCOLLECTION, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void ArrayDescriptor(oracle.jdbc.oracore.OracleTypeCOLLECTION, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    static ArrayDescriptor 
                    createDescriptor(SQLName, byte[], int, byte[], byte[], oracle.jdbc.internal.OracleConnection, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    getBaseType() 
                    throws java.sql.SQLException;
    
                    public String 
                    getBaseName() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.oracore.OracleTypeCOLLECTION 
                    getOracleTypeCOLLECTION();
    
                    public int 
                    getArrayType() 
                    throws java.sql.SQLException;
    
                    public long 
                    getMaxLength() 
                    throws java.sql.SQLException;
    
                    public String 
                    descType() 
                    throws java.sql.SQLException;
    String 
                    descType(StringBuffer, int) 
                    throws java.sql.SQLException;
    int 
                    toLength(ARRAY) 
                    throws java.sql.SQLException;
    byte[] 
                    toBytes(ARRAY, boolean) 
                    throws java.sql.SQLException;
    Datum[] 
                    toOracleArray(ARRAY, long, int, boolean) 
                    throws java.sql.SQLException;
    Object[] 
                    toJavaArray(ARRAY, long, int, java.util.Map, boolean) 
                    throws java.sql.SQLException;
    
                    private Datum[] 
                    toOracleArrayFromLocator(byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private Object[] 
                    toArrayFromLocator(byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    toResultSet(ARRAY, long, int, java.util.Map, boolean) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    toResultSet(Datum[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    toResultSetFromLocator(byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    toResultSetFromImage(ARRAY, long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static Object[] 
                    makeJavaArray(int, int) 
                    throws java.sql.SQLException;
    
                    private int 
                    toLengthFromLocator(byte[]) 
                    throws java.sql.SQLException;
    Datum[] 
                    toOracleArray(Object, long, int) 
                    throws java.sql.SQLException;
    
                    private Object 
                    toJavaArray(Datum[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private Object 
                    toNumericArray(Datum[], long, int, int) 
                    throws java.sql.SQLException;
    
                    private Object 
                    toNumericArrayFromLocator(byte[], long, int, int) 
                    throws java.sql.SQLException;
    Object 
                    toNumericArray(ARRAY, long, int, int, boolean) 
                    throws java.sql.SQLException;
    
                    private void 
                    initPickler() 
                    throws java.sql.SQLException;
    
                    private oracle.jdbc.oracore.OracleType 
                    getElementType() 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    toBytes(Datum[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    toBytes(Object[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    length(byte[]) 
                    throws java.sql.SQLException;
    
                    public Datum[] 
                    toArray(byte[]) 
                    throws java.sql.SQLException;
    
                    public Datum[] 
                    toArray(Object) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    toResultSet(byte[], java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    toResultSet(byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    getCacheStyle(ARRAY) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/TypeDescriptor.class

                    package oracle.sql;

                    public 
                    abstract 
                    synchronized 
                    class TypeDescriptor 
                    implements java.io.Serializable {
    
                    public 
                    static boolean 
                    DEBUG_SERIALIZATION;
    
                    static 
                    final long 
                    serialVersionUID = 2022598722047823723;
    SQLName 
                    sqlName;
    oracle.jdbc.oracore.OracleNamedType 
                    pickler;
    
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    protected void TypeDescriptor();
    
                    protected void TypeDescriptor(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    protected void TypeDescriptor(SQLName, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    protected void TypeDescriptor(SQLName, oracle.jdbc.oracore.OracleTypeADT, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    protected void TypeDescriptor(oracle.jdbc.oracore.OracleTypeADT, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getName() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized SQLName 
                    getSQLName() 
                    throws java.sql.SQLException;
    void 
                    initSQLName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSchemaName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getTypeName() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.oracore.OracleNamedType 
                    getPickler();
    
                    public oracle.jdbc.internal.OracleConnection 
                    getInternalConnection();
    
                    public void 
                    setPhysicalConnectionOf(java.sql.Connection);
    
                    public 
                    abstract int 
                    getTypeCode() 
                    throws java.sql.SQLException;
    
                    public 
                    static TypeDescriptor 
                    getTypeDescriptor(String, oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    static TypeDescriptor 
                    getTypeDescriptor(String, oracle.jdbc.OracleConnection, byte[], long) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(String) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    getSubtypeName(oracle.jdbc.OracleConnection, byte[], long) 
                    throws java.sql.SQLException;
    
                    public void 
                    initMetadataRecursively() 
                    throws java.sql.SQLException;
    
                    public void 
                    initNamesRecursively() 
                    throws java.sql.SQLException;
    
                    public void 
                    fixupConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public String 
                    toXMLString() 
                    throws java.sql.SQLException;
    
                    public void 
                    printXML(java.io.PrintStream) 
                    throws java.sql.SQLException;
    void 
                    printXML(java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    void 
                    printXMLHeader(java.io.PrintWriter) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/SQLName.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class SQLName 
                    implements java.io.Serializable {
    
                    static boolean 
                    DEBUG;
    
                    static boolean 
                    s_parseAllFormat;
    
                    static 
                    final long 
                    serialVersionUID = 2266340348729491526;
    String 
                    name;
    String 
                    schema;
    String 
                    simple;
    int 
                    version;
    boolean 
                    synonym;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    protected void SQLName();
    
                    public void SQLName(String, oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void SQLName(String, String, oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    private void 
                    init(String, oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public String 
                    getName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSchema() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSimpleName() 
                    throws java.sql.SQLException;
    
                    public int 
                    getVersion() 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    parse(String, String[], String[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    parse(String, String[], String[], boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    setHandleDoubleQuote(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    getHandleDoubleQuote() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public String 
                    toString();
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/ARRAY.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class ARRAY 
                    extends DatumWithConnection 
                    implements java.sql.Array {
    
                    static 
                    final byte 
                    KOPUP_INLINE_COLL = 1;
    ArrayDescriptor 
                    descriptor;
    Object 
                    objArray;
    Datum[] 
                    datumArray;
    byte[] 
                    locator;
    byte 
                    prefixFlag;
    byte[] 
                    prefixSegment;
    int 
                    numElems;
    boolean 
                    enableBuffering;
    boolean 
                    enableIndexing;
    
                    public 
                    static 
                    final int 
                    ACCESS_FORWARD = 1;
    
                    public 
                    static 
                    final int 
                    ACCESS_REVERSE = 2;
    
                    public 
                    static 
                    final int 
                    ACCESS_UNKNOWN = 3;
    int 
                    accessDirection;
    long 
                    lastIndex;
    long 
                    lastOffset;
    long[] 
                    indexArray;
    long 
                    imageOffset;
    long 
                    imageLength;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    
                    public void ARRAY(ArrayDescriptor, java.sql.Connection, Object) 
                    throws java.sql.SQLException;
    
                    public void ARRAY(ArrayDescriptor, byte[], java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static ARRAY 
                    toARRAY(Object, oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getBaseTypeName() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getBaseType() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getArray() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getArray(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getArray(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getArray(long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getResultSet() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getResultSet(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getResultSet(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getResultSet(long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Datum[] 
                    getOracleArray() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    length() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Datum[] 
                    getOracleArray(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getSQLTypeName() 
                    throws java.sql.SQLException;
    
                    public java.util.Map 
                    getMap() 
                    throws java.sql.SQLException;
    
                    public ArrayDescriptor 
                    getDescriptor() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    toBytes() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDatumArray(Datum[]);
    
                    public 
                    synchronized void 
                    setObjArray(Object) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setLocator(byte[]);
    
                    public 
                    synchronized void 
                    setPrefixSegment(byte[]);
    
                    public 
                    synchronized void 
                    setPrefixFlag(byte);
    
                    public byte[] 
                    getLocator();
    
                    public 
                    synchronized void 
                    setLength(int);
    
                    public boolean 
                    hasDataSeg();
    
                    public boolean 
                    isInline();
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public Object 
                    makeJdbcArray(int);
    
                    public 
                    synchronized int[] 
                    getIntArray() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int[] 
                    getIntArray(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized double[] 
                    getDoubleArray() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized double[] 
                    getDoubleArray(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized short[] 
                    getShortArray() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized short[] 
                    getShortArray(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long[] 
                    getLongArray() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long[] 
                    getLongArray(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized float[] 
                    getFloatArray() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized float[] 
                    getFloatArray(long, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAutoBuffering(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoBuffering() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAutoIndexing(boolean, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAutoIndexing(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoIndexing() 
                    throws java.sql.SQLException;
    
                    public int 
                    getAccessDirection() 
                    throws java.sql.SQLException;
    
                    public void 
                    setLastIndexOffset(long, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setIndexOffset(long, long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getLastIndex() 
                    throws java.sql.SQLException;
    
                    public long 
                    getLastOffset() 
                    throws java.sql.SQLException;
    
                    public long 
                    getOffset(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setImage(byte[], long, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setImageLength(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getImageOffset();
    
                    public long 
                    getImageLength();
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    public String 
                    dump() 
                    throws java.sql.SQLException;
    
                    static void 
                    dump(ARRAY, java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/DatumWithConnection.class

                    package oracle.sql;

                    public 
                    abstract 
                    synchronized 
                    class DatumWithConnection 
                    extends Datum {
    
                    private oracle.jdbc.internal.OracleConnection 
                    physicalConnection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    oracle.jdbc.internal.OracleConnection 
                    getPhysicalConnection();
    
                    public void DatumWithConnection(byte[]) 
                    throws java.sql.SQLException;
    
                    public void DatumWithConnection();
    
                    public 
                    static void 
                    assertNotNull(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    assertNotNull(TypeDescriptor) 
                    throws java.sql.SQLException;
    
                    public void 
                    setPhysicalConnectionOf(java.sql.Connection);
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.OracleConnection 
                    getOracleConnection() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.internal.OracleConnection 
                    getInternalConnection() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.driver.OracleConnection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/StructDescriptor.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class StructDescriptor 
                    extends TypeDescriptor 
                    implements java.io.Serializable {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    static 
                    final long 
                    serialVersionUID = 1013921343538311063;
    
                    transient Boolean 
                    isInstanciable;
    
                    transient String 
                    supertype;
    
                    transient int 
                    numLocalAttrs;
    
                    transient String[] 
                    subtypes;
    
                    transient String[] 
                    attrJavaNames;
    
                    final int 
                    LOCAL_TYPE;
    
                    final int 
                    LOOK_FOR_USER_SYNONYM;
    
                    final int 
                    LOOK_FOR_PUBLIC_SYNONYM;
    
                    final String[] 
                    initMetaData1_9_0_SQL;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public 
                    static StructDescriptor 
                    createDescriptor(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static StructDescriptor 
                    createDescriptor(String, java.sql.Connection, boolean, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static StructDescriptor 
                    createDescriptor(SQLName, java.sql.Connection, boolean, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static StructDescriptor 
                    createDescriptor(SQLName, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static StructDescriptor 
                    createDescriptor(oracle.jdbc.oracore.OracleTypeADT) 
                    throws java.sql.SQLException;
    
                    public void StructDescriptor(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void StructDescriptor(SQLName, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void StructDescriptor(SQLName, oracle.jdbc.oracore.OracleTypeADT, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    static StructDescriptor 
                    createDescriptor(SQLName, byte[], int, byte[], byte[], oracle.jdbc.internal.OracleConnection, byte[]) 
                    throws java.sql.SQLException;
    
                    private void 
                    initPickler() 
                    throws java.sql.SQLException;
    
                    public void StructDescriptor(oracle.jdbc.oracore.OracleTypeADT, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode() 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeVersion() 
                    throws java.sql.SQLException;
    byte[] 
                    toBytes(STRUCT, boolean) 
                    throws java.sql.SQLException;
    Datum[] 
                    toOracleArray(STRUCT, boolean) 
                    throws java.sql.SQLException;
    Object[] 
                    toArray(STRUCT, java.util.Map, boolean) 
                    throws java.sql.SQLException;
    
                    public int 
                    getLength() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.oracore.OracleTypeADT 
                    getOracleTypeADT();
    
                    private oracle.jdbc.oracore.OracleType[] 
                    getFieldTypes() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLInput 
                    toJdbc2SQLInput(STRUCT, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLOutput 
                    toJdbc2SQLOutput() 
                    throws java.sql.SQLException;
    
                    public Datum[] 
                    toOracleArray(Object[]) 
                    throws java.sql.SQLException;
    
                    public Datum[] 
                    toOracleArray(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFinalType() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isSubtype() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInstantiable() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isJavaObject() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSupertypeName() 
                    throws java.sql.SQLException;
    
                    public int 
                    getLocalAttributeCount() 
                    throws java.sql.SQLException;
    
                    public String[] 
                    getSubtypeNames() 
                    throws java.sql.SQLException;
    
                    public String 
                    getJavaClassName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeJavaName(int) 
                    throws java.sql.SQLException;
    
                    public String[] 
                    getAttributeJavaNames() 
                    throws java.sql.SQLException;
    
                    public String 
                    getLanguage() 
                    throws java.sql.SQLException;
    
                    public Class 
                    getClass(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    getJavaObjectClassName(java.sql.Connection, StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    getJavaObjectClassName(java.sql.Connection, String, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    descType() 
                    throws java.sql.SQLException;
    String 
                    descType(StringBuffer, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    toBytes(Object[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    toBytes(Datum[]) 
                    throws java.sql.SQLException;
    
                    public Datum[] 
                    toArray(Object[]) 
                    throws java.sql.SQLException;
    
                    public Datum[] 
                    toArray(byte[]) 
                    throws java.sql.SQLException;
    
                    private void 
                    initMetaData1() 
                    throws java.sql.SQLException;
    
                    private void 
                    initMetaData1_9_0() 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized void 
                    initMetaData1_pre_9_0() 
                    throws java.sql.SQLException;
    
                    private void 
                    initMetaData2() 
                    throws java.sql.SQLException;
    
                    private void 
                    initMetaData2_9_0() 
                    throws java.sql.SQLException;
    
                    private void 
                    initMetaData2_pre_9_0() 
                    throws java.sql.SQLException;
    
                    private void 
                    initMetaData3() 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/STRUCT.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class STRUCT 
                    extends DatumWithConnection 
                    implements java.sql.Struct {
    StructDescriptor 
                    descriptor;
    Datum[] 
                    datumArray;
    Object[] 
                    objectArray;
    boolean 
                    enableLocalCache;
    long 
                    imageOffset;
    long 
                    imageLength;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void STRUCT(StructDescriptor, java.sql.Connection, Object[]) 
                    throws java.sql.SQLException;
    
                    public void STRUCT(StructDescriptor, java.sql.Connection, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void STRUCT(StructDescriptor, byte[], java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getSQLTypeName() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object[] 
                    getAttributes() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object[] 
                    getAttributes(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized StructDescriptor 
                    getDescriptor() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDescriptor(StructDescriptor);
    
                    public 
                    synchronized Datum[] 
                    getOracleAttributes() 
                    throws java.sql.SQLException;
    
                    public java.util.Map 
                    getMap();
    
                    public 
                    synchronized byte[] 
                    toBytes() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDatumArray(Datum[]);
    
                    public 
                    synchronized void 
                    setObjArray(Object[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static STRUCT 
                    toSTRUCT(Object, oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toClass(Class) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toClass(Class, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public Object 
                    makeJdbcArray(int);
    
                    public 
                    synchronized void 
                    setAutoBuffering(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getAutoBuffering() 
                    throws java.sql.SQLException;
    
                    public void 
                    setImage(byte[], long, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setImageLength(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getImageOffset();
    
                    public long 
                    getImageLength();
    
                    public CustomDatumFactory 
                    getFactory(java.util.Hashtable, String) 
                    throws java.sql.SQLException;
    
                    public ORADataFactory 
                    getORADataFactory(java.util.Hashtable, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    debugString();
    
                    public boolean 
                    isInHierarchyOf(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    public String 
                    dump() 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    dump(Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    dump(Object, java.io.PrintStream) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    dump(Object, java.io.PrintWriter) 
                    throws java.sql.SQLException;
    
                    static void 
                    dump(Object, java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    dump(STRUCT, java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/BfileDBAccess.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface BfileDBAccess {
    
                    public 
                    abstract long 
                    length(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    position(BFILE, byte[], long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    position(BFILE, BFILE, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getBytes(BFILE, long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getName(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getDirAlias(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    openFile(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isFileOpen(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    fileExists(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    closeFile(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    open(BFILE, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    close(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isOpen(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    newInputStream(BFILE, int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    newConversionInputStream(BFILE, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.Reader 
                    newConversionReader(BFILE, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/BlobDBAccess.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface BlobDBAccess {
    
                    public 
                    abstract long 
                    length(BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    position(BLOB, byte[], long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    position(BLOB, BLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getBytes(BLOB, long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    putBytes(BLOB, long, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getChunkSize(BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    trim(BLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract BLOB 
                    createTemporaryBlob(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    freeTemporary(BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isTemporary(BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    open(BLOB, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    close(BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isOpen(BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    newInputStream(BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.OutputStream 
                    newOutputStream(BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    newConversionInputStream(BLOB, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.Reader 
                    newConversionReader(BLOB, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/ClobDBAccess.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface ClobDBAccess {
    
                    public 
                    abstract long 
                    length(CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    position(CLOB, String, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    position(CLOB, CLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getChars(CLOB, long, int, char[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    putChars(CLOB, long, char[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getChunkSize(CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    trim(CLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract CLOB 
                    createTemporaryClob(java.sql.Connection, boolean, int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    freeTemporary(CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isTemporary(CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    open(CLOB, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    close(CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isOpen(CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    newInputStream(CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.OutputStream 
                    newOutputStream(CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.Reader 
                    newReader(CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.Writer 
                    newWriter(CLOB, int, long) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CustomDatum.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface CustomDatum 
                    extends oracle.jdbc.internal.ObjectData {
    
                    public 
                    abstract Datum 
                    toDatum(oracle.jdbc.driver.OracleConnection) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CLOB.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class CLOB 
                    extends DatumWithConnection 
                    implements java.sql.Clob {
    
                    public 
                    static 
                    final int 
                    MAX_CHUNK_SIZE = 32768;
    
                    public 
                    static 
                    final int 
                    DURATION_SESSION = 10;
    
                    public 
                    static 
                    final int 
                    DURATION_CALL = 12;
    
                    static 
                    final int 
                    OLD_WRONG_DURATION_SESSION = 1;
    
                    static 
                    final int 
                    OLD_WRONG_DURATION_CALL = 2;
    
                    public 
                    static 
                    final int 
                    MODE_READONLY = 0;
    
                    public 
                    static 
                    final int 
                    MODE_READWRITE = 1;
    ClobDBAccess 
                    dbaccess;
    
                    private int 
                    dbChunkSize;
    
                    private short 
                    csform;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    protected void CLOB();
    
                    public void CLOB(oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void CLOB(oracle.jdbc.OracleConnection, byte[]) 
                    throws java.sql.SQLException;
    
                    public void CLOB(oracle.jdbc.OracleConnection, byte[], short) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isNCLOB();
    
                    public long 
                    length() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSubString(long, int) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    getCharacterStream() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getAsciiStream() 
                    throws java.sql.SQLException;
    
                    public long 
                    position(String, long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(java.sql.Clob, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    getChars(long, int, char[]) 
                    throws java.sql.SQLException;
    
                    public java.io.Writer 
                    getCharacterOutputStream() 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    getAsciiOutputStream() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getLocator();
    
                    public void 
                    setLocator(byte[]);
    
                    public int 
                    putChars(long, char[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    putChars(long, char[], int) 
                    throws java.sql.SQLException;
    
                    public int 
                    putChars(long, char[], int, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    putString(long, String) 
                    throws java.sql.SQLException;
    
                    public int 
                    getChunkSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getBufferSize() 
                    throws java.sql.SQLException;
    
                    public 
                    static CLOB 
                    empty_lob() 
                    throws java.sql.SQLException;
    
                    public 
                    static CLOB 
                    getEmptyCLOB() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isEmptyLob() 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    getAsciiOutputStream(long) 
                    throws java.sql.SQLException;
    
                    public java.io.Writer 
                    getCharacterOutputStream(long) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getAsciiStream(long) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    getCharacterStream(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    trim(long) 
                    throws java.sql.SQLException;
    
                    public 
                    static CLOB 
                    createTemporary(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static CLOB 
                    createTemporary(java.sql.Connection, boolean, int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    freeTemporary(CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isTemporary(CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    freeTemporary() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTemporary() 
                    throws java.sql.SQLException;
    
                    public void 
                    open(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isOpen() 
                    throws java.sql.SQLException;
    
                    public int 
                    setString(long, String) 
                    throws java.sql.SQLException;
    
                    public int 
                    setString(long, String, int, int) 
                    throws java.sql.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 Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public java.io.Reader 
                    characterStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    asciiStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    binaryStreamValue() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    public ClobDBAccess 
                    getDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    static ClobDBAccess 
                    getDBAccess(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/BLOB.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class BLOB 
                    extends DatumWithConnection 
                    implements java.sql.Blob {
    
                    public 
                    static 
                    final int 
                    MAX_CHUNK_SIZE = 32768;
    
                    public 
                    static 
                    final int 
                    DURATION_SESSION = 10;
    
                    public 
                    static 
                    final int 
                    DURATION_CALL = 12;
    
                    static 
                    final int 
                    OLD_WRONG_DURATION_SESSION = 1;
    
                    static 
                    final int 
                    OLD_WRONG_DURATION_CALL = 2;
    
                    public 
                    static 
                    final int 
                    MODE_READONLY = 0;
    
                    public 
                    static 
                    final int 
                    MODE_READWRITE = 1;
    BlobDBAccess 
                    dbaccess;
    int 
                    dbChunkSize;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    
                    protected void BLOB();
    
                    public void BLOB(oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void BLOB(oracle.jdbc.OracleConnection, byte[]) 
                    throws java.sql.SQLException;
    
                    public long 
                    length() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getBytes(long, int) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream() 
                    throws java.sql.SQLException;
    
                    public long 
                    position(byte[], long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(java.sql.Blob, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    getBytes(long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    putBytes(long, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    putBytes(long, byte[], int) 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    getBinaryOutputStream() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getLocator();
    
                    public void 
                    setLocator(byte[]);
    
                    public int 
                    getChunkSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getBufferSize() 
                    throws java.sql.SQLException;
    
                    public 
                    static BLOB 
                    empty_lob() 
                    throws java.sql.SQLException;
    
                    public 
                    static BLOB 
                    getEmptyBLOB() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isEmptyLob() 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    getBinaryOutputStream(long) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    trim(long) 
                    throws java.sql.SQLException;
    
                    public 
                    static BLOB 
                    createTemporary(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    freeTemporary(BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isTemporary(BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    freeTemporary() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTemporary() 
                    throws java.sql.SQLException;
    
                    public void 
                    open(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isOpen() 
                    throws java.sql.SQLException;
    
                    public int 
                    setBytes(long, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    setBytes(long, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    setBinaryStream(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    truncate(long) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public java.io.Reader 
                    characterStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    asciiStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    binaryStreamValue() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    public BlobDBAccess 
                    getDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    static BlobDBAccess 
                    getDBAccess(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/BFILE.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class BFILE 
                    extends DatumWithConnection {
    
                    public 
                    static 
                    final int 
                    MAX_CHUNK_SIZE = 32512;
    
                    public 
                    static 
                    final int 
                    MODE_READONLY = 0;
    
                    public 
                    static 
                    final int 
                    MODE_READWRITE = 1;
    BfileDBAccess 
                    dbaccess;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    
                    protected void BFILE();
    
                    public void BFILE(oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void BFILE(oracle.jdbc.OracleConnection, byte[]) 
                    throws java.sql.SQLException;
    
                    public long 
                    length() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getBytes(long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getBytes(long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream() 
                    throws java.sql.SQLException;
    
                    public long 
                    position(byte[], long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(BFILE, long) 
                    throws java.sql.SQLException;
    
                    public String 
                    getName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getDirAlias() 
                    throws java.sql.SQLException;
    
                    public void 
                    openFile() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFileOpen() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    fileExists() 
                    throws java.sql.SQLException;
    
                    public void 
                    closeFile() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getLocator();
    
                    public void 
                    setLocator(byte[]);
    
                    public java.io.InputStream 
                    getBinaryStream(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    open() 
                    throws java.sql.SQLException;
    
                    public void 
                    open(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isOpen() 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public java.io.Reader 
                    characterStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    asciiStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    binaryStreamValue() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    public BfileDBAccess 
                    getDBAccess() 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CustomDatumFactory.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface CustomDatumFactory 
                    extends oracle.jdbc.internal.ObjectDataFactory {
    
                    public 
                    abstract CustomDatum 
                    create(Datum, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/ORADataFactory.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface ORADataFactory 
                    extends oracle.jdbc.internal.ObjectDataFactory {
    
                    public 
                    abstract ORAData 
                    create(Datum, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/ORAData.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface ORAData 
                    extends oracle.jdbc.internal.ObjectData {
    
                    public 
                    abstract Datum 
                    toDatum(java.sql.Connection) 
                    throws java.sql.SQLException;
}

                

oracle/sql/ROWID.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class ROWID 
                    extends Datum {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void ROWID();
    
                    public void ROWID(byte[]);
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public String 
                    stringValue();
    
                    public Object 
                    makeJdbcArray(int);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/OPAQUE.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class OPAQUE 
                    extends DatumWithConnection {
    OpaqueDescriptor 
                    descriptor;
    byte[] 
                    value;
    long 
                    imageOffset;
    long 
                    imageLength;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void OPAQUE(OpaqueDescriptor, java.sql.Connection, Object) 
                    throws java.sql.SQLException;
    
                    public void OPAQUE(OpaqueDescriptor, byte[], java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public String 
                    getSQLTypeName() 
                    throws java.sql.SQLException;
    
                    public OpaqueDescriptor 
                    getDescriptor() 
                    throws java.sql.SQLException;
    
                    public void 
                    setDescriptor(OpaqueDescriptor);
    
                    public byte[] 
                    toBytes() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getValue() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getBytesValue() 
                    throws java.sql.SQLException;
    
                    public void 
                    setValue(byte[]) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public Object 
                    makeJdbcArray(int);
    
                    public java.util.Map 
                    getMap();
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toClass(Class) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toClass(Class, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void 
                    setImage(byte[], long, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setImageLength(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getImageOffset();
    
                    public long 
                    getImageLength();
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/REF.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class REF 
                    extends DatumWithConnection 
                    implements java.sql.Ref, java.io.Serializable, Cloneable {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    static 
                    final long 
                    serialVersionUID = 1328446996944583167;
    String 
                    typename;
    
                    transient StructDescriptor 
                    descriptor;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public String 
                    getBaseTypeName() 
                    throws java.sql.SQLException;
    
                    public void REF(String, java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public void REF(StructDescriptor, java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getValue(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getValue() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized STRUCT 
                    getSTRUCT() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setValue(Object) 
                    throws java.sql.SQLException;
    
                    public StructDescriptor 
                    getDescriptor() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSQLTypeName() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject() 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(Object) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public Object 
                    makeJdbcArray(int);
    
                    public Object 
                    clone() 
                    throws CloneNotSupportedException;
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public java.sql.Connection 
                    getJavaSqlConnection() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CHAR.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class CHAR 
                    extends Datum {
    
                    public 
                    static 
                    final CharacterSet 
                    DEFAULT_CHARSET;
    
                    private CharacterSet 
                    charSet;
    
                    private int 
                    oracleId;
    
                    private 
                    static 
                    final byte[] 
                    empty;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    
                    protected void CHAR();
    
                    public void CHAR(byte[], CharacterSet);
    
                    public void CHAR(byte[], int, int, CharacterSet);
    
                    public void CHAR(String, CharacterSet) 
                    throws java.sql.SQLException;
    
                    public void CHAR(Object, CharacterSet) 
                    throws java.sql.SQLException;
    
                    public CharacterSet 
                    getCharacterSet();
    
                    public int 
                    oracleId();
    
                    public String 
                    getString() 
                    throws java.sql.SQLException;
    
                    public String 
                    getStringWithReplacement();
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    void 
                    setValue(byte[], CharacterSet);
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public String 
                    stringValue();
    
                    public boolean 
                    booleanValue() 
                    throws java.sql.SQLException;
    
                    public int 
                    intValue() 
                    throws java.sql.SQLException;
    
                    public long 
                    longValue() 
                    throws java.sql.SQLException;
    
                    public float 
                    floatValue() 
                    throws java.sql.SQLException;
    
                    public double 
                    doubleValue() 
                    throws java.sql.SQLException;
    
                    public byte 
                    byteValue() 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    dateValue() 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    timeValue() 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    timestampValue() 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    bigDecimalValue() 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    characterStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    asciiStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    binaryStreamValue() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/RAW.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class RAW 
                    extends Datum {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    static int 
                    hexDigit2Nibble(char) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    hexString2Bytes(String) 
                    throws java.sql.SQLException;
    
                    public 
                    static RAW 
                    newRAW(Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static RAW 
                    oldRAW(Object) 
                    throws java.sql.SQLException;
    
                    public void RAW();
    
                    public void RAW(byte[]);
    
                    public void RAW(Object) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public String 
                    stringValue();
    
                    public java.io.Reader 
                    characterStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    asciiStreamValue() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    binaryStreamValue() 
                    throws java.sql.SQLException;
    
                    public Object 
                    makeJdbcArray(int);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/OpaqueDescriptor.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class OpaqueDescriptor 
                    extends TypeDescriptor 
                    implements java.io.Serializable {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    static 
                    final long 
                    serialVersionUID = 1013921343538311063;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public 
                    static OpaqueDescriptor 
                    createDescriptor(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public 
                    static OpaqueDescriptor 
                    createDescriptor(SQLName, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void OpaqueDescriptor(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void OpaqueDescriptor(SQLName, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void OpaqueDescriptor(SQLName, oracle.jdbc.oracore.OracleTypeOPAQUE, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    private void 
                    initPickler() 
                    throws java.sql.SQLException;
    
                    public void OpaqueDescriptor(oracle.jdbc.oracore.OracleTypeADT, java.sql.Connection) 
                    throws java.sql.SQLException;
    byte[] 
                    toBytes(OPAQUE, boolean) 
                    throws java.sql.SQLException;
    byte[] 
                    toValue(OPAQUE, boolean) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    public long 
                    getMaxLength() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTrustedLibrary() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isModeledInC() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    hasUnboundedSize() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    hasFixedSize() 
                    throws java.sql.SQLException;
    
                    public String 
                    descType() 
                    throws java.sql.SQLException;
    String 
                    descType(StringBuffer, int) 
                    throws java.sql.SQLException;
    
                    public Class 
                    getClass(java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSet$2.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSet$2 
                    extends CharacterSet$CharacterConverterBehavior {
    void CharacterSet$2(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    onFailConversion() 
                    throws java.sql.SQLException;
    
                    public void 
                    onFailConversion(char) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSet$1.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSet$1 
                    extends CharacterSet$CharacterConverterBehavior {
    void CharacterSet$1(String);
    
                    public void 
                    onFailConversion() 
                    throws java.sql.SQLException;
    
                    public void 
                    onFailConversion(char) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSet.class

                    package oracle.sql;

                    public 
                    abstract 
                    synchronized 
                    class CharacterSet {
    
                    public 
                    static 
                    final short 
                    DEFAULT_CHARSET = -1;
    
                    public 
                    static 
                    final short 
                    ASCII_CHARSET = 1;
    
                    public 
                    static 
                    final short 
                    ISO_LATIN_1_CHARSET = 31;
    
                    public 
                    static 
                    final short 
                    UNICODE_1_CHARSET = 870;
    
                    public 
                    static 
                    final short 
                    US7ASCII_CHARSET = 1;
    
                    public 
                    static 
                    final short 
                    WE8DEC_CHARSET = 2;
    
                    public 
                    static 
                    final short 
                    WE8HP_CHARSET = 3;
    
                    public 
                    static 
                    final short 
                    US8PC437_CHARSET = 4;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC37_CHARSET = 5;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC500_CHARSET = 6;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC285_CHARSET = 8;
    
                    public 
                    static 
                    final short 
                    WE8PC850_CHARSET = 10;
    
                    public 
                    static 
                    final short 
                    D7DEC_CHARSET = 11;
    
                    public 
                    static 
                    final short 
                    F7DEC_CHARSET = 12;
    
                    public 
                    static 
                    final short 
                    S7DEC_CHARSET = 13;
    
                    public 
                    static 
                    final short 
                    E7DEC_CHARSET = 14;
    
                    public 
                    static 
                    final short 
                    SF7ASCII_CHARSET = 15;
    
                    public 
                    static 
                    final short 
                    NDK7DEC_CHARSET = 16;
    
                    public 
                    static 
                    final short 
                    I7DEC_CHARSET = 17;
    
                    public 
                    static 
                    final short 
                    NL7DEC_CHARSET = 18;
    
                    public 
                    static 
                    final short 
                    CH7DEC_CHARSET = 19;
    
                    public 
                    static 
                    final short 
                    YUG7ASCII_CHARSET = 20;
    
                    public 
                    static 
                    final short 
                    SF7DEC_CHARSET = 21;
    
                    public 
                    static 
                    final short 
                    TR7DEC_CHARSET = 22;
    
                    public 
                    static 
                    final short 
                    IW7IS960_CHARSET = 23;
    
                    public 
                    static 
                    final short 
                    IN8ISCII_CHARSET = 25;
    
                    public 
                    static 
                    final short 
                    WE8ISO8859P1_CHARSET = 31;
    
                    public 
                    static 
                    final short 
                    EE8ISO8859P2_CHARSET = 32;
    
                    public 
                    static 
                    final short 
                    SE8ISO8859P3_CHARSET = 33;
    
                    public 
                    static 
                    final short 
                    NEE8ISO8859P4_CHARSET = 34;
    
                    public 
                    static 
                    final short 
                    CL8ISO8859P5_CHARSET = 35;
    
                    public 
                    static 
                    final short 
                    AR8ISO8859P6_CHARSET = 36;
    
                    public 
                    static 
                    final short 
                    EL8ISO8859P7_CHARSET = 37;
    
                    public 
                    static 
                    final short 
                    IW8ISO8859P8_CHARSET = 38;
    
                    public 
                    static 
                    final short 
                    WE8ISO8859P9_CHARSET = 39;
    
                    public 
                    static 
                    final short 
                    NE8ISO8859P10_CHARSET = 40;
    
                    public 
                    static 
                    final short 
                    TH8TISASCII_CHARSET = 41;
    
                    public 
                    static 
                    final short 
                    TH8TISEBCDIC_CHARSET = 42;
    
                    public 
                    static 
                    final short 
                    BN8BSCII_CHARSET = 43;
    
                    public 
                    static 
                    final short 
                    VN8VN3_CHARSET = 44;
    
                    public 
                    static 
                    final short 
                    VN8MSWIN1258_CHARSET = 45;
    
                    public 
                    static 
                    final short 
                    WE8NEXTSTEP_CHARSET = 50;
    
                    public 
                    static 
                    final short 
                    AR8ASMO708PLUS_CHARSET = 61;
    
                    public 
                    static 
                    final short 
                    AR8EBCDICX_CHARSET = 70;
    
                    public 
                    static 
                    final short 
                    AR8XBASIC_CHARSET = 72;
    
                    public 
                    static 
                    final short 
                    EL8DEC_CHARSET = 81;
    
                    public 
                    static 
                    final short 
                    TR8DEC_CHARSET = 82;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC37C_CHARSET = 90;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC500C_CHARSET = 91;
    
                    public 
                    static 
                    final short 
                    IW8EBCDIC424_CHARSET = 92;
    
                    public 
                    static 
                    final short 
                    TR8EBCDIC1026_CHARSET = 93;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC871_CHARSET = 94;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC284_CHARSET = 95;
    
                    public 
                    static 
                    final short 
                    WE8EBCDIC1047_CHARSET = 96;
    
                    public 
                    static 
                    final short 
                    EEC8EUROASCI_CHARSET = 110;
    
                    public 
                    static 
                    final short 
                    EEC8EUROPA3_CHARSET = 113;
    
                    public 
                    static 
                    final short 
                    LA8PASSPORT_CHARSET = 114;
    
                    public 
                    static 
                    final short 
                    BG8PC437S_CHARSET = 140;
    
                    public 
                    static 
                    final short 
                    EE8PC852_CHARSET = 150;
    
                    public 
                    static 
                    final short 
                    RU8PC866_CHARSET = 152;
    
                    public 
                    static 
                    final short 
                    RU8BESTA_CHARSET = 153;
    
                    public 
                    static 
                    final short 
                    IW8PC1507_CHARSET = 154;
    
                    public 
                    static 
                    final short 
                    RU8PC855_CHARSET = 155;
    
                    public 
                    static 
                    final short 
                    TR8PC857_CHARSET = 156;
    
                    public 
                    static 
                    final short 
                    CL8MACCYRILLIC_CHARSET = 158;
    
                    public 
                    static 
                    final short 
                    CL8MACCYRILLICS_CHARSET = 159;
    
                    public 
                    static 
                    final short 
                    WE8PC860_CHARSET = 160;
    
                    public 
                    static 
                    final short 
                    IS8PC861_CHARSET = 161;
    
                    public 
                    static 
                    final short 
                    EE8MACCES_CHARSET = 162;
    
                    public 
                    static 
                    final short 
                    EE8MACCROATIANS_CHARSET = 163;
    
                    public 
                    static 
                    final short 
                    TR8MACTURKISHS_CHARSET = 164;
    
                    public 
                    static 
                    final short 
                    IS8MACICELANDICS_CHARSET = 165;
    
                    public 
                    static 
                    final short 
                    EL8MACGREEKS_CHARSET = 166;
    
                    public 
                    static 
                    final short 
                    IW8MACHEBREWS_CHARSET = 167;
    
                    public 
                    static 
                    final short 
                    EE8MSWIN1250_CHARSET = 170;
    
                    public 
                    static 
                    final short 
                    CL8MSWIN1251_CHARSET = 171;
    
                    public 
                    static 
                    final short 
                    ET8MSWIN923_CHARSET = 172;
    
                    public 
                    static 
                    final short 
                    BG8MSWIN_CHARSET = 173;
    
                    public 
                    static 
                    final short 
                    EL8MSWIN1253_CHARSET = 174;
    
                    public 
                    static 
                    final short 
                    IW8MSWIN1255_CHARSET = 175;
    
                    public 
                    static 
                    final short 
                    LT8MSWIN921_CHARSET = 176;
    
                    public 
                    static 
                    final short 
                    TR8MSWIN1254_CHARSET = 177;
    
                    public 
                    static 
                    final short 
                    WE8MSWIN1252_CHARSET = 178;
    
                    public 
                    static 
                    final short 
                    BLT8MSWIN1257_CHARSET = 179;
    
                    public 
                    static 
                    final short 
                    D8EBCDIC273_CHARSET = 180;
    
                    public 
                    static 
                    final short 
                    I8EBCDIC280_CHARSET = 181;
    
                    public 
                    static 
                    final short 
                    DK8EBCDIC277_CHARSET = 182;
    
                    public 
                    static 
                    final short 
                    S8EBCDIC278_CHARSET = 183;
    
                    public 
                    static 
                    final short 
                    EE8EBCDIC870_CHARSET = 184;
    
                    public 
                    static 
                    final short 
                    CL8EBCDIC1025_CHARSET = 185;
    
                    public 
                    static 
                    final short 
                    F8EBCDIC297_CHARSET = 186;
    
                    public 
                    static 
                    final short 
                    IW8EBCDIC1086_CHARSET = 187;
    
                    public 
                    static 
                    final short 
                    CL8EBCDIC1025X_CHARSET = 188;
    
                    public 
                    static 
                    final short 
                    N8PC865_CHARSET = 190;
    
                    public 
                    static 
                    final short 
                    BLT8CP921_CHARSET = 191;
    
                    public 
                    static 
                    final short 
                    LV8PC1117_CHARSET = 192;
    
                    public 
                    static 
                    final short 
                    LV8PC8LR_CHARSET = 193;
    
                    public 
                    static 
                    final short 
                    BLT8EBCDIC1112_CHARSET = 194;
    
                    public 
                    static 
                    final short 
                    LV8RST104090_CHARSET = 195;
    
                    public 
                    static 
                    final short 
                    CL8KOI8R_CHARSET = 196;
    
                    public 
                    static 
                    final short 
                    BLT8PC775_CHARSET = 197;
    
                    public 
                    static 
                    final short 
                    F7SIEMENS9780X_CHARSET = 201;
    
                    public 
                    static 
                    final short 
                    E7SIEMENS9780X_CHARSET = 202;
    
                    public 
                    static 
                    final short 
                    S7SIEMENS9780X_CHARSET = 203;
    
                    public 
                    static 
                    final short 
                    DK7SIEMENS9780X_CHARSET = 204;
    
                    public 
                    static 
                    final short 
                    N7SIEMENS9780X_CHARSET = 205;
    
                    public 
                    static 
                    final short 
                    I7SIEMENS9780X_CHARSET = 206;
    
                    public 
                    static 
                    final short 
                    D7SIEMENS9780X_CHARSET = 207;
    
                    public 
                    static 
                    final short 
                    WE8GCOS7_CHARSET = 210;
    
                    public 
                    static 
                    final short 
                    EL8GCOS7_CHARSET = 211;
    
                    public 
                    static 
                    final short 
                    US8BS2000_CHARSET = 221;
    
                    public 
                    static 
                    final short 
                    D8BS2000_CHARSET = 222;
    
                    public 
                    static 
                    final short 
                    F8BS2000_CHARSET = 223;
    
                    public 
                    static 
                    final short 
                    E8BS2000_CHARSET = 224;
    
                    public 
                    static 
                    final short 
                    DK8BS2000_CHARSET = 225;
    
                    public 
                    static 
                    final short 
                    S8BS2000_CHARSET = 226;
    
                    public 
                    static 
                    final short 
                    WE8BS2000_CHARSET = 231;
    
                    public 
                    static 
                    final short 
                    CL8BS2000_CHARSET = 235;
    
                    public 
                    static 
                    final short 
                    WE8BS2000L5_CHARSET = 239;
    
                    public 
                    static 
                    final short 
                    WE8DG_CHARSET = 241;
    
                    public 
                    static 
                    final short 
                    WE8NCR4970_CHARSET = 251;
    
                    public 
                    static 
                    final short 
                    WE8ROMAN8_CHARSET = 261;
    
                    public 
                    static 
                    final short 
                    EE8MACCE_CHARSET = 262;
    
                    public 
                    static 
                    final short 
                    EE8MACCROATIAN_CHARSET = 263;
    
                    public 
                    static 
                    final short 
                    TR8MACTURKISH_CHARSET = 264;
    
                    public 
                    static 
                    final short 
                    IS8MACICELANDIC_CHARSET = 265;
    
                    public 
                    static 
                    final short 
                    EL8MACGREEK_CHARSET = 266;
    
                    public 
                    static 
                    final short 
                    IW8MACHEBREW_CHARSET = 267;
    
                    public 
                    static 
                    final short 
                    US8ICL_CHARSET = 277;
    
                    public 
                    static 
                    final short 
                    WE8ICL_CHARSET = 278;
    
                    public 
                    static 
                    final short 
                    WE8ISOICLUK_CHARSET = 279;
    
                    public 
                    static 
                    final short 
                    WE8MACROMAN8_CHARSET = 351;
    
                    public 
                    static 
                    final short 
                    WE8MACROMAN8S_CHARSET = 352;
    
                    public 
                    static 
                    final short 
                    TH8MACTHAI_CHARSET = 353;
    
                    public 
                    static 
                    final short 
                    TH8MACTHAIS_CHARSET = 354;
    
                    public 
                    static 
                    final short 
                    HU8CWI2_CHARSET = 368;
    
                    public 
                    static 
                    final short 
                    EL8PC437S_CHARSET = 380;
    
                    public 
                    static 
                    final short 
                    EL8EBCDIC875_CHARSET = 381;
    
                    public 
                    static 
                    final short 
                    EL8PC737_CHARSET = 382;
    
                    public 
                    static 
                    final short 
                    LT8PC772_CHARSET = 383;
    
                    public 
                    static 
                    final short 
                    LT8PC774_CHARSET = 384;
    
                    public 
                    static 
                    final short 
                    EL8PC869_CHARSET = 385;
    
                    public 
                    static 
                    final short 
                    EL8PC851_CHARSET = 386;
    
                    public 
                    static 
                    final short 
                    CDN8PC863_CHARSET = 390;
    
                    public 
                    static 
                    final short 
                    HU8ABMOD_CHARSET = 401;
    
                    public 
                    static 
                    final short 
                    AR8ASMO8X_CHARSET = 500;
    
                    public 
                    static 
                    final short 
                    AR8NAFITHA711T_CHARSET = 504;
    
                    public 
                    static 
                    final short 
                    AR8SAKHR707T_CHARSET = 505;
    
                    public 
                    static 
                    final short 
                    AR8MUSSAD768T_CHARSET = 506;
    
                    public 
                    static 
                    final short 
                    AR8ADOS710T_CHARSET = 507;
    
                    public 
                    static 
                    final short 
                    AR8ADOS720T_CHARSET = 508;
    
                    public 
                    static 
                    final short 
                    AR8APTEC715T_CHARSET = 509;
    
                    public 
                    static 
                    final short 
                    AR8NAFITHA721T_CHARSET = 511;
    
                    public 
                    static 
                    final short 
                    AR8HPARABIC8T_CHARSET = 514;
    
                    public 
                    static 
                    final short 
                    AR8NAFITHA711_CHARSET = 554;
    
                    public 
                    static 
                    final short 
                    AR8SAKHR707_CHARSET = 555;
    
                    public 
                    static 
                    final short 
                    AR8MUSSAD768_CHARSET = 556;
    
                    public 
                    static 
                    final short 
                    AR8ADOS710_CHARSET = 557;
    
                    public 
                    static 
                    final short 
                    AR8ADOS720_CHARSET = 558;
    
                    public 
                    static 
                    final short 
                    AR8APTEC715_CHARSET = 559;
    
                    public 
                    static 
                    final short 
                    AR8MSAWIN_CHARSET = 560;
    
                    public 
                    static 
                    final short 
                    AR8NAFITHA721_CHARSET = 561;
    
                    public 
                    static 
                    final short 
                    AR8SAKHR706_CHARSET = 563;
    
                    public 
                    static 
                    final short 
                    AR8ARABICMAC_CHARSET = 565;
    
                    public 
                    static 
                    final short 
                    AR8ARABICMACS_CHARSET = 566;
    
                    public 
                    static 
                    final short 
                    AR8ARABICMACT_CHARSET = 567;
    
                    public 
                    static 
                    final short 
                    LA8ISO6937_CHARSET = 590;
    
                    public 
                    static 
                    final short 
                    US8NOOP_CHARSET = 797;
    
                    public 
                    static 
                    final short 
                    WE8DECTST_CHARSET = 798;
    
                    public 
                    static 
                    final short 
                    JA16VMS_CHARSET = 829;
    
                    public 
                    static 
                    final short 
                    JA16EUC_CHARSET = 830;
    
                    public 
                    static 
                    final short 
                    JA16EUCYEN_CHARSET = 831;
    
                    public 
                    static 
                    final short 
                    JA16SJIS_CHARSET = 832;
    
                    public 
                    static 
                    final short 
                    JA16DBCS_CHARSET = 833;
    
                    public 
                    static 
                    final short 
                    JA16SJISYEN_CHARSET = 834;
    
                    public 
                    static 
                    final short 
                    JA16EBCDIC930_CHARSET = 835;
    
                    public 
                    static 
                    final short 
                    JA16MACSJIS_CHARSET = 836;
    
                    public 
                    static 
                    final short 
                    JA16EUCTILDE_CHARSET = 837;
    
                    public 
                    static 
                    final short 
                    JA16SJISTILDE_CHARSET = 838;
    
                    public 
                    static 
                    final short 
                    KO16KSC5601_CHARSET = 840;
    
                    public 
                    static 
                    final short 
                    KO16DBCS_CHARSET = 842;
    
                    public 
                    static 
                    final short 
                    KO16KSCCS_CHARSET = 845;
    
                    public 
                    static 
                    final short 
                    KO16MSWIN949_CHARSET = 846;
    
                    public 
                    static 
                    final short 
                    ZHS16CGB231280_CHARSET = 850;
    
                    public 
                    static 
                    final short 
                    ZHS16MACCGB231280_CHARSET = 851;
    
                    public 
                    static 
                    final short 
                    ZHS16GBK_CHARSET = 852;
    
                    public 
                    static 
                    final short 
                    ZHS16DBCS_CHARSET = 853;
    
                    public 
                    static 
                    final short 
                    ZHS32GB18030 = 854;
    
                    public 
                    static 
                    final short 
                    ZHS16MSWIN936_CHARSET = 854;
    
                    public 
                    static 
                    final short 
                    ZHT32EUC_CHARSET = 860;
    
                    public 
                    static 
                    final short 
                    ZHT32SOPS_CHARSET = 861;
    
                    public 
                    static 
                    final short 
                    ZHT16DBT_CHARSET = 862;
    
                    public 
                    static 
                    final short 
                    ZHT32TRIS_CHARSET = 863;
    
                    public 
                    static 
                    final short 
                    ZHT16DBCS_CHARSET = 864;
    
                    public 
                    static 
                    final short 
                    ZHT16BIG5_CHARSET = 865;
    
                    public 
                    static 
                    final short 
                    ZHT16CCDC_CHARSET = 866;
    
                    public 
                    static 
                    final short 
                    ZHT16MSWIN950_CHARSET = 867;
    
                    public 
                    static 
                    final short 
                    AL24UTFFSS_CHARSET = 870;
    
                    public 
                    static 
                    final short 
                    UTF8_CHARSET = 871;
    
                    public 
                    static 
                    final short 
                    UTFE_CHARSET = 872;
    
                    public 
                    static 
                    final short 
                    AL32UTF8_CHARSET = 873;
    
                    public 
                    static 
                    final short 
                    KO16TSTSET_CHARSET = 996;
    
                    public 
                    static 
                    final short 
                    JA16TSTSET2_CHARSET = 997;
    
                    public 
                    static 
                    final short 
                    JA16TSTSET_CHARSET = 998;
    
                    public 
                    static 
                    final short 
                    US16TSTFIXED_CHARSET = 1001;
    
                    public 
                    static 
                    final short 
                    JA16EUCFIXED_CHARSET = 1830;
    
                    public 
                    static 
                    final short 
                    JA16SJISFIXED_CHARSET = 1832;
    
                    public 
                    static 
                    final short 
                    JA16DBCSFIXED_CHARSET = 1833;
    
                    public 
                    static 
                    final short 
                    KO16KSC5601FIXED_CHARSET = 1840;
    
                    public 
                    static 
                    final short 
                    KO16DBCSFIXED_CHARSET = 1842;
    
                    public 
                    static 
                    final short 
                    ZHS16CGB231280FIXED_CHARSET = 1850;
    
                    public 
                    static 
                    final short 
                    ZHS16GBKFIXED_CHARSET = 1852;
    
                    public 
                    static 
                    final short 
                    ZHS16DBCSFIXED_CHARSET = 1853;
    
                    public 
                    static 
                    final short 
                    ZHT32EUCFIXED_CHARSET = 1860;
    
                    public 
                    static 
                    final short 
                    ZHT32TRISFIXED_CHARSET = 1863;
    
                    public 
                    static 
                    final short 
                    ZHT16DBCSFIXED_CHARSET = 1864;
    
                    public 
                    static 
                    final short 
                    ZHT16BIG5FIXED_CHARSET = 1865;
    
                    public 
                    static 
                    final short 
                    AL16UTF16_CHARSET = 2000;
    
                    public 
                    static 
                    final short 
                    AL16UTF16LE_CHARSET = 2002;
    
                    public 
                    static 
                    final short 
                    UNICODE_2_CHARSET = 871;
    
                    static CharacterSetFactory 
                    factory;
    
                    private int 
                    oracleId;
    int 
                    rep;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    void CharacterSet(int);
    
                    public 
                    static CharacterSet 
                    make(int);
    
                    public String 
                    toString();
    
                    public 
                    abstract boolean 
                    isLossyFrom(CharacterSet);
    
                    public 
                    abstract boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public boolean 
                    isUnicode();
    boolean 
                    isWellFormed(byte[], int, int);
    
                    public int 
                    getOracleId();
    int 
                    getRep();
    
                    public int 
                    getRatioTo(CharacterSet);
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public 
                    abstract String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    convertWithReplacement(String);
    
                    public 
                    abstract byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertUnshared(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    abstract int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
    
                    static 
                    final void 
                    failCharacterConversion(CharacterSet) 
                    throws java.sql.SQLException;
    
                    static 
                    final byte[] 
                    useOrCopy(byte[], int, int);
    
                    static 
                    final void 
                    need(CharacterBuffer, int);
    
                    public 
                    static 
                    final String 
                    UTFToString(byte[], int, int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final String 
                    UTFToString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final char[] 
                    UTFToJavaChar(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final char[] 
                    UTFToJavaChar(byte[], int, int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final char[] 
                    UTFToJavaCharWithReplacement(byte[], int, int);
    
                    public 
                    static 
                    final int 
                    convertUTFBytesToJavaChars(byte[], int, char[], int, int[], boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    convertUTFBytesToJavaChars(byte[], int, char[], int, int[], boolean, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final byte[] 
                    stringToUTF(String);
    
                    public 
                    static 
                    final int 
                    convertJavaCharsToUTFBytes(char[], int, byte[], int, int);
    
                    public 
                    static 
                    final int 
                    UTFStringLength(byte[], int, int);
    
                    public 
                    static 
                    final int 
                    stringUTFLength(String);
    
                    static 
                    final int 
                    charArrayUTF8Length(char[]);
    
                    public 
                    static 
                    final String 
                    AL32UTF8ToString(byte[], int, int);
    
                    public 
                    static 
                    final String 
                    AL32UTF8ToString(byte[], int, int, boolean);
    
                    public 
                    static 
                    final char[] 
                    AL32UTF8ToJavaChar(byte[], int, int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    convertAL32UTF8BytesToJavaChars(byte[], int, char[], int, int[], boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    convertAL32UTF8BytesToJavaChars(byte[], int, char[], int, int[], boolean, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final byte[] 
                    stringToAL32UTF8(String);
    
                    public 
                    static 
                    final int 
                    convertJavaCharsToAL32UTF8Bytes(char[], int, byte[], int, int);
    
                    public 
                    static 
                    final int 
                    string32UTF8Length(String);
    
                    static 
                    final int 
                    charArray32UTF8Length(char[]);
    
                    public 
                    static 
                    final String 
                    AL16UTF16BytesToString(byte[], int);
    
                    public 
                    static 
                    final int 
                    AL16UTF16BytesToJavaChars(byte[], int, char[]);
    
                    public 
                    static 
                    final int 
                    convertAL16UTF16BytesToJavaChars(byte[], int, char[], int, int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    convertAL16UTF16LEBytesToJavaChars(byte[], int, char[], int, int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final byte[] 
                    stringToAL16UTF16Bytes(String);
    
                    public 
                    static 
                    final int 
                    javaCharsToAL16UTF16Bytes(char[], int, byte[]);
    
                    public 
                    static 
                    final int 
                    convertJavaCharsToAL16UTF16Bytes(char[], int, byte[], int, int);
    
                    public 
                    static 
                    final byte[] 
                    stringToAL16UTF16LEBytes(String);
    
                    public 
                    static 
                    final int 
                    javaCharsToAL16UTF16LEBytes(char[], int, byte[]);
    
                    public 
                    static 
                    final int 
                    convertJavaCharsToAL16UTF16LEBytes(char[], int, byte[], int, int);
    
                    public 
                    static 
                    final int 
                    convertASCIIBytesToJavaChars(byte[], int, char[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    convertJavaCharsToASCIIBytes(char[], int, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    convertJavaCharsToISOLATIN1Bytes(char[], int, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final byte[] 
                    stringToASCII(String);
    
                    public 
                    static 
                    final long 
                    convertUTF32toUTF16(long);
    
                    static 
                    final boolean 
                    isHiSurrogate(char);
    
                    static 
                    final boolean 
                    isLoSurrogate(char);
    
                    static 
                    final boolean 
                    check80toBF(byte);
    
                    static 
                    final boolean 
                    check80to8F(byte);
    
                    static 
                    final boolean 
                    check80to9F(byte);
    
                    static 
                    final boolean 
                    checkA0toBF(byte);
    
                    static 
                    final boolean 
                    check90toBF(byte);
    
                    static 
                    final char 
                    conv2ByteUTFtoUTF16(byte, byte);
    
                    static 
                    final char 
                    conv3ByteUTFtoUTF16(byte, byte, byte);
    
                    static 
                    final char 
                    conv3ByteAL32UTF8toUTF16(byte, byte, byte);
    
                    static 
                    final int 
                    conv4ByteAL32UTF8toUTF16(byte, byte, byte, byte, char[], int);
    
                    static void 
                    failUTFConversion() 
                    throws java.sql.SQLException;
    
                    public int 
                    encodedByteLength(String);
    
                    public int 
                    encodedByteLength(char[]);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSet$CharacterConverterBehavior.class

                    package oracle.sql;

                    abstract 
                    synchronized 
                    class CharacterSet$CharacterConverterBehavior {
    
                    public 
                    static 
                    final char[] 
                    NULL_CHARS;
    
                    public 
                    static 
                    final char 
                    UTF16_REPLACEMENT_CHAR = 65533;
    
                    public 
                    static 
                    final CharacterSet$CharacterConverterBehavior 
                    REPORT_ERROR;
    
                    public 
                    static 
                    final CharacterSet$CharacterConverterBehavior 
                    REPLACEMENT;
    
                    private 
                    final String 
                    m_name;
    
                    public void CharacterSet$CharacterConverterBehavior(String);
    
                    public 
                    abstract void 
                    onFailConversion(char) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    onFailConversion() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSetFactory.class

                    package oracle.sql;

                    abstract 
                    synchronized 
                    class CharacterSetFactory {
    
                    public 
                    static 
                    final short 
                    DEFAULT_CHARSET = -1;
    
                    public 
                    static 
                    final short 
                    ASCII_CHARSET = 1;
    
                    public 
                    static 
                    final short 
                    ISO_LATIN_1_CHARSET = 31;
    
                    public 
                    static 
                    final short 
                    UNICODE_1_CHARSET = 870;
    
                    public 
                    static 
                    final short 
                    UNICODE_2_CHARSET = 871;
    void CharacterSetFactory();
    
                    public 
                    abstract CharacterSet 
                    make(int);
    
                    public 
                    static void 
                    main(String[]);
}

                

oracle/sql/CharacterWalker.class

                    package oracle.sql;

                    public 
                    final 
                    synchronized 
                    class CharacterWalker {
    CharacterSet 
                    charSet;
    byte[] 
                    bytes;
    int 
                    next;
    int 
                    end;
    int 
                    shiftstate;
    
                    public void CharacterWalker(CharacterSet, byte[], int, int);
    
                    public int 
                    nextCharacter() 
                    throws java.util.NoSuchElementException;
    
                    public boolean 
                    hasMoreCharacters();
}

                

oracle/sql/CharacterBuffer.class

                    package oracle.sql;

                    public 
                    final 
                    synchronized 
                    class CharacterBuffer {
    CharacterSet 
                    charSet;
    byte[] 
                    bytes;
    int 
                    next;
    
                    public void CharacterBuffer(CharacterSet);
    
                    public void 
                    append(int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getBytes();
}

                

oracle/sql/BINARY_FLOAT.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class BINARY_FLOAT 
                    extends Datum {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    
                    public void BINARY_FLOAT();
    
                    public void BINARY_FLOAT(byte[]);
    
                    public void BINARY_FLOAT(float);
    
                    public void BINARY_FLOAT(Float);
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public String 
                    stringValue();
    
                    public Object 
                    makeJdbcArray(int);
    
                    static byte[] 
                    floatToCanonicalFormatBytes(float);
    
                    static float 
                    canonicalFormatBytesToFloat(byte[]);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/BINARY_DOUBLE.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class BINARY_DOUBLE 
                    extends Datum {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:30_PST_2006;
    
                    public void BINARY_DOUBLE();
    
                    public void BINARY_DOUBLE(byte[]);
    
                    public void BINARY_DOUBLE(double);
    
                    public void BINARY_DOUBLE(Double);
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isConvertibleTo(Class);
    
                    public String 
                    stringValue();
    
                    public Object 
                    makeJdbcArray(int);
    
                    static byte[] 
                    doubleToCanonicalFormatBytes(double);
    
                    static double 
                    canonicalFormatBytesToDouble(byte[]);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/JAVA_STRUCT.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class JAVA_STRUCT 
                    extends STRUCT {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void JAVA_STRUCT(StructDescriptor, java.sql.Connection, Object[]) 
                    throws java.sql.SQLException;
    
                    public void JAVA_STRUCT(StructDescriptor, byte[], java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc() 
                    throws java.sql.SQLException;
    
                    public Object 
                    toJdbc(java.util.Map) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/LobPlsqlUtil.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class LobPlsqlUtil {
    
                    static boolean 
                    PLSQL_DEBUG;
    
                    static 
                    final int 
                    MAX_PLSQL_SIZE = 32512;
    
                    static 
                    final int 
                    MAX_PLSQL_INSTR_SIZE = 32512;
    
                    static 
                    final int 
                    MAX_CHUNK_SIZE = 32512;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void LobPlsqlUtil();
    
                    public 
                    static long 
                    hasPattern(BLOB, byte[], long) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    isSubLob(BLOB, BLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    hasPattern(CLOB, char[], long) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    isSubLob(CLOB, CLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    hasPattern(BFILE, byte[], long) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    isSubLob(BFILE, BFILE, long) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    fileGetName(BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    fileGetDirAlias(BFILE) 
                    throws java.sql.SQLException;
    
                    private 
                    static int 
                    getPlsqlMaxInstrSize(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    read(oracle.jdbc.internal.OracleConnection, Datum, int, long, long, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    length(oracle.jdbc.internal.OracleConnection, Datum, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    hasPattern(oracle.jdbc.internal.OracleConnection, Datum, int, byte[], long) 
                    throws java.sql.SQLException;
    
                    public 
                    static long 
                    isSubLob(oracle.jdbc.internal.OracleConnection, Datum, int, Datum, long) 
                    throws java.sql.SQLException;
    
                    private 
                    static boolean 
                    isNCLOB(Datum);
    
                    public 
                    static Datum 
                    createTemporaryLob(java.sql.Connection, boolean, int, int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    freeTemporaryLob(java.sql.Connection, Datum, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/OracleJdbc2SQLInput.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class OracleJdbc2SQLInput 
                    implements java.sql.SQLInput {
    
                    private int 
                    index;
    
                    private Datum[] 
                    attributes;
    
                    private java.util.Map 
                    map;
    
                    private oracle.jdbc.OracleConnection 
                    conn;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void OracleJdbc2SQLInput(Datum[], java.util.Map, oracle.jdbc.OracleConnection);
    
                    public String 
                    readString() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    readBoolean() 
                    throws java.sql.SQLException;
    
                    public byte 
                    readByte() 
                    throws java.sql.SQLException;
    
                    public short 
                    readShort() 
                    throws java.sql.SQLException;
    
                    public int 
                    readInt() 
                    throws java.sql.SQLException;
    
                    public long 
                    readLong() 
                    throws java.sql.SQLException;
    
                    public float 
                    readFloat() 
                    throws java.sql.SQLException;
    
                    public double 
                    readDouble() 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    readBigDecimal() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readBytes() 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    readDate() 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    readTime() 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    readTimestamp() 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    readCharacterStream() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    readAsciiStream() 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    readBinaryStream() 
                    throws java.sql.SQLException;
    
                    public Object 
                    readObject() 
                    throws java.sql.SQLException;
    
                    public java.sql.Ref 
                    readRef() 
                    throws java.sql.SQLException;
    
                    public java.sql.Blob 
                    readBlob() 
                    throws java.sql.SQLException;
    
                    public java.sql.Clob 
                    readClob() 
                    throws java.sql.SQLException;
    
                    public java.sql.Array 
                    readArray() 
                    throws java.sql.SQLException;
    
                    public java.sql.Struct 
                    readStruct() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public Object 
                    readOracleObject() 
                    throws java.sql.SQLException;
    
                    public NUMBER 
                    readNUMBER() 
                    throws java.sql.SQLException;
    
                    public CHAR 
                    readCHAR() 
                    throws java.sql.SQLException;
    
                    public DATE 
                    readDATE() 
                    throws java.sql.SQLException;
    
                    public BFILE 
                    readBFILE() 
                    throws java.sql.SQLException;
    
                    public BLOB 
                    readBLOB() 
                    throws java.sql.SQLException;
    
                    public CLOB 
                    readCLOB() 
                    throws java.sql.SQLException;
    
                    public RAW 
                    readRAW() 
                    throws java.sql.SQLException;
    
                    public REF 
                    readREF() 
                    throws java.sql.SQLException;
    
                    public ROWID 
                    readROWID() 
                    throws java.sql.SQLException;
    
                    public ARRAY 
                    readARRAY() 
                    throws java.sql.SQLException;
    
                    public STRUCT 
                    readSTRUCT() 
                    throws java.sql.SQLException;
    
                    public java.net.URL 
                    readURL() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/OracleSQLOutput.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class OracleSQLOutput 
                    implements java.sql.SQLOutput {
    
                    private StructDescriptor 
                    descriptor;
    
                    private Object[] 
                    attributes;
    
                    private int 
                    index;
    
                    private oracle.jdbc.OracleConnection 
                    conn;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void OracleSQLOutput(StructDescriptor, oracle.jdbc.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public STRUCT 
                    getSTRUCT() 
                    throws java.sql.SQLException;
    
                    public void 
                    writeString(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeBoolean(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeByte(byte) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeShort(short) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeInt(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeLong(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeFloat(float) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeDouble(double) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeBigDecimal(java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeBytes(byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeDate(java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeTime(java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeTimestamp(java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeCharacterStream(java.io.Reader) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeAsciiStream(java.io.InputStream) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeBinaryStream(java.io.InputStream) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeObject(java.sql.SQLData) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeObject(Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeRef(java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeBlob(java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeClob(java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeStruct(java.sql.Struct) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeArray(java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeOracleObject(Datum) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeRef(REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeBlob(BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeBfile(BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeClob(CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeStruct(STRUCT) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeArray(ARRAY) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeNUMBER(NUMBER) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeCHAR(CHAR) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeDATE(DATE) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeRAW(RAW) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeROWID(ROWID) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeURL(java.net.URL) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSetWithConverter.class

                    package oracle.sql;

                    public 
                    abstract 
                    synchronized 
                    class CharacterSetWithConverter 
                    extends CharacterSet {
    
                    public 
                    static converter.CharacterConverterFactory 
                    ccFactory;
    converter.CharacterConverters 
                    m_converter;
    void CharacterSetWithConverter(int, converter.CharacterConverters);
    
                    static CharacterSet 
                    getInstance(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSetFactoryDefault.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetFactoryDefault 
                    extends CharacterSetFactoryThin {
    void CharacterSetFactoryDefault();
}

                

oracle/sql/CharacterSetFactoryThin.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetFactoryThin 
                    extends CharacterSetFactory {
    void CharacterSetFactoryThin();
    
                    public CharacterSet 
                    make(int);
}

                

oracle/sql/CharacterSetUnknown.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetUnknown 
                    extends CharacterSet 
                    implements CharacterRepConstants {
    void CharacterSetUnknown(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    failCharsetUnknown(CharacterSet) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterRepConstants.class

                    package oracle.sql;

                    abstract 
                    interface CharacterRepConstants {
    
                    public 
                    static 
                    final int 
                    BYTE_REP = 1;
    
                    public 
                    static 
                    final int 
                    UTF_REP = 2;
    
                    public 
                    static 
                    final int 
                    UTFE_REP = 3;
    
                    public 
                    static 
                    final int 
                    AL16UTF16_REP = 4;
    
                    public 
                    static 
                    final int 
                    AL16UTF16LE_REP = 5;
    
                    public 
                    static 
                    final int 
                    AL32UTF8_REP = 6;
    
                    public 
                    static 
                    final int 
                    UNKNOWN_REP = 1024;
}

                

oracle/sql/CharacterSetByte.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetByte 
                    extends CharacterSet 
                    implements CharacterRepConstants {
    void CharacterSetByte(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    private String 
                    toString(byte[], int, int, char) 
                    throws java.sql.SQLException;
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    int 
                    decode(CharacterWalker);
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
    
                    static byte[] 
                    charsToBytes(char[], byte) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSet1Byte.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSet1Byte 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverter1Byte;
    
                    static Class 
                    m_charConvSuperclass;
    void CharacterSet1Byte(int, converter.CharacterConverters);
    
                    static CharacterSet1Byte 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSetSJIS.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetSJIS 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverterSJIS;
    
                    static 
                    final short 
                    MAX_7BIT = 127;
    
                    static 
                    final short 
                    MIN_8BIT_SB = 161;
    
                    static 
                    final short 
                    MAX_8BIT_SB = 223;
    
                    static Class 
                    m_charConvSuperclass;
    void CharacterSetSJIS(int, converter.CharacterConverters);
    
                    static CharacterSetSJIS 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSetShift.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetShift 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverterShift;
    
                    static 
                    final short 
                    MAX_7BIT = 127;
    
                    static 
                    final short 
                    MIN_8BIT_SB = 161;
    
                    static 
                    final short 
                    MAX_8BIT_SB = 223;
    
                    static 
                    final byte 
                    SHIFT_OUT = 14;
    
                    static 
                    final byte 
                    SHIFT_IN = 15;
    
                    static Class 
                    m_charConvSuperclass;
    void CharacterSetShift(int, converter.CharacterConverters);
    
                    static CharacterSetShift 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSet2ByteFixed.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSet2ByteFixed 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverter2ByteFixed;
    
                    static 
                    final short 
                    MAX_7BIT = 127;
    
                    static 
                    final short 
                    MIN_8BIT_SB = 161;
    
                    static 
                    final short 
                    MAX_8BIT_SB = 223;
    
                    static 
                    final short 
                    CHARLENGTH = 2;
    
                    static Class 
                    m_charConvSuperclass;
    void CharacterSet2ByteFixed(int, converter.CharacterConverters);
    
                    static CharacterSet2ByteFixed 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSetGB18030.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetGB18030 
                    extends CharacterSetWithConverter {
    
                    static 
                    final int 
                    MAX_7BIT = 127;
    
                    static Class 
                    m_charConvSuperclass;
    void CharacterSetGB18030(int, converter.CharacterConverters);
    
                    static CharacterSetGB18030 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSet12Byte.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSet12Byte 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverter12Byte;
    
                    static 
                    final int 
                    MAX_7BIT = 127;
    
                    static Class 
                    m_charConvSuperclass;
    void CharacterSet12Byte(int, converter.CharacterConverters);
    
                    static CharacterSet12Byte 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSetJAEUC.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetJAEUC 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverterJAEUC;
    
                    static 
                    final 
                    transient short 
                    MAX_7BIT = 127;
    
                    static 
                    final 
                    transient short 
                    LEADINGCODE = 143;
    
                    static Class 
                    m_charConvSuperclass;
    void CharacterSetJAEUC(int, converter.CharacterConverters);
    
                    static CharacterSetJAEUC 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSetZHTEUC.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetZHTEUC 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverterZHTEUC;
    
                    static 
                    final int 
                    MAX_7BIT = 127;
    
                    static 
                    final int 
                    CHARLENGTH = 4;
    
                    static Class 
                    m_charConvSuperclass;
    char[] 
                    m_leadingCodes;
    void CharacterSetZHTEUC(int, converter.CharacterConverters);
    
                    static CharacterSetZHTEUC 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSetLCFixed.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetLCFixed 
                    extends CharacterSetWithConverter {
    
                    static 
                    final String 
                    CHAR_CONV_SUPERCLASS_NAME = oracle.sql.converter.CharacterConverterLCFixed;
    
                    static 
                    final int 
                    CHARLENGTH = 4;
    
                    static Class 
                    m_charConvSuperclass;
    char[] 
                    m_leadingCodes;
    void CharacterSetLCFixed(int, converter.CharacterConverters);
    
                    static CharacterSetLCFixed 
                    getInstance(int, converter.CharacterConverters);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/ConverterArchive.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class ConverterArchive {
    
                    private String 
                    m_izipName;
    
                    private java.io.FileOutputStream 
                    m_ifStream;
    
                    private java.util.zip.ZipOutputStream 
                    m_izStream;
    
                    private java.io.InputStream 
                    m_riStream;
    
                    private java.util.zip.ZipFile 
                    m_rzipFile;
    
                    private 
                    static 
                    final String 
                    TEMPFILE = gsstemp.zip;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void ConverterArchive();
    
                    public void 
                    openArchiveforInsert(String);
    
                    public void 
                    closeArchiveforInsert();
    
                    public void 
                    insertObj(Object, String);
    
                    public void 
                    insertSingleObj(String, Object, String) 
                    throws java.io.IOException;
    
                    public void 
                    insertObjtoFile(String, String, Object) 
                    throws java.io.IOException;
    
                    public void 
                    openArchiveforRead();
    
                    public void 
                    closeArchiveforRead();
    
                    public Object 
                    readObj(String);
    
                    public Object 
                    readObj(String, String);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSetAL16UTF16.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetAL16UTF16 
                    extends CharacterSet 
                    implements CharacterRepConstants {
    void CharacterSetAL16UTF16(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public boolean 
                    isUnicode();
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/CharacterSetUTF.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetUTF 
                    extends CharacterSet 
                    implements CharacterRepConstants {
    
                    private 
                    static int[] 
                    m_byteLen;
    void CharacterSetUTF(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public boolean 
                    isUnicode();
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
    
                    private 
                    static int 
                    getUTFByteLength(byte);
    
                    private 
                    static boolean 
                    isHiSurrogate(byte, byte);
    
                    public int 
                    encodedByteLength(String);
    
                    public int 
                    encodedByteLength(char[]);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSetAL32UTF8.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetAL32UTF8 
                    extends CharacterSet 
                    implements CharacterRepConstants {
    
                    private 
                    static int[] 
                    m_byteLen;
    void CharacterSetAL32UTF8(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public boolean 
                    isUnicode();
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
    
                    private 
                    static int 
                    getUTFByteLength(byte);
    
                    public int 
                    encodedByteLength(String);
    
                    public int 
                    encodedByteLength(char[]);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSetUTFE.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetUTFE 
                    extends CharacterSet 
                    implements CharacterRepConstants {
    
                    static 
                    final int 
                    MAXBYTEPERCHAR = 4;
    
                    static byte[][] 
                    utf8m2utfe;
    
                    static byte[][] 
                    utfe2utf8m;
    
                    private 
                    static int[] 
                    m_byteLen;
    void CharacterSetUTFE(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public boolean 
                    isUnicode();
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    int 
                    UTFEToJavaChar(byte[], int, int, char[], CharacterSet$CharacterConverterBehavior) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    int 
                    javaCharsToUTFE(char[], int, int, byte[], int);
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
    
                    private 
                    static int 
                    high(int);
    
                    private 
                    static int 
                    low(int);
    
                    private 
                    static boolean 
                    is101xxxxx(byte);
    
                    private 
                    static int 
                    getUTFByteLength(byte);
    
                    static void 
                    <clinit>();
}

                

oracle/sql/CharacterSetAL16UTF16LE.class

                    package oracle.sql;

                    synchronized 
                    class CharacterSetAL16UTF16LE 
                    extends CharacterSet 
                    implements CharacterRepConstants {
    void CharacterSetAL16UTF16LE(int);
    
                    public boolean 
                    isLossyFrom(CharacterSet);
    
                    public boolean 
                    isConvertibleFrom(CharacterSet);
    
                    public boolean 
                    isUnicode();
    
                    public String 
                    toStringWithReplacement(byte[], int, int);
    
                    public String 
                    toString(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convert(String) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    convertWithReplacement(String);
    
                    public byte[] 
                    convert(CharacterSet, byte[], int, int) 
                    throws java.sql.SQLException;
    int 
                    decode(CharacterWalker) 
                    throws java.sql.SQLException;
    void 
                    encode(CharacterBuffer, int) 
                    throws java.sql.SQLException;
}

                

oracle/sql/Mutable.class

                    package oracle.sql;

                    public 
                    abstract 
                    interface Mutable {
    
                    public 
                    abstract void 
                    copy(CustomDatum);
}

                

oracle/sql/SQLUtil.class

                    package oracle.sql;

                    public 
                    synchronized 
                    class SQLUtil {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void SQLUtil();
    
                    public 
                    static Object 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, byte[], int, String, Class, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static CustomDatum 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, byte[], int, String, CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    static ORAData 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, byte[], int, String, ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    static Object 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, Datum, Class, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    JavaToSQL(oracle.jdbc.internal.OracleConnection, Object, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static Datum 
                    makeDatum(oracle.jdbc.internal.OracleConnection, byte[], int, String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static Datum 
                    makeDatum(oracle.jdbc.internal.OracleConnection, Object, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static Object 
                    getTypeDescriptor(String, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    checkDatumType(Datum, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    implementsInterface(Class, Class);
    
                    public 
                    static Datum 
                    makeOracleDatum(oracle.jdbc.internal.OracleConnection, Object, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    getInternalType(int) 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    get_internal_type(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/sql/converter_xcharset/lx20001.glb

oracle/sql/converter_xcharset/lx20002.glb

oracle/sql/converter_xcharset/lx2001f.glb

oracle/sql/converter_xcharset/lx200b2.glb

oracle/security/o3logon/C0.class

                    package oracle.security.o3logon;

                    public 
                    synchronized 
                    class C0 {
    
                    private 
                    static int 
                    n;
    
                    private 
                    static int[] 
                    o;
    
                    private 
                    static int 
                    p;
    
                    private 
                    final boolean 
                    q;
    
                    private 
                    final boolean 
                    r;
    
                    private 
                    static int[] 
                    s;
    
                    private byte 
                    a(byte);
    
                    private void 
                    b(byte);
    
                    public void C0();
    
                    public byte[] 
                    c(byte[], byte[]);
    
                    private byte[] 
                    d(String, boolean);
    
                    private int 
                    e(int[], char);
    
                    static void 
                    <clinit>();
    
                    private 
                    static byte 
                    f(byte);
    
                    public byte[] 
                    g(String, String);
    
                    private byte[] 
                    h(byte[]);
    
                    private 
                    static byte[] 
                    i(byte[]);
    
                    public byte[] 
                    j(byte[], byte[]);
    
                    private byte[] 
                    k(String, String, boolean);
    
                    private int 
                    l(String, byte[], int, boolean);
    
                    public byte[] 
                    m(String, String, boolean);
}

                

oracle/security/o3logon/C1.class

                    package oracle.security.o3logon;

                    public 
                    synchronized 
                    class C1 {
    
                    static 
                    final byte 
                    u = 1;
    
                    private 
                    static 
                    final int[] 
                    v;
    
                    static 
                    final byte 
                    w = 0;
    
                    private 
                    static 
                    final int[] 
                    x;
    
                    private 
                    static 
                    final byte[] 
                    y;
    
                    private 
                    final boolean 
                    z;
    
                    private 
                    static 
                    final int[] 
                    A;
    
                    private int[] 
                    B;
    
                    private 
                    static 
                    final byte[] 
                    C;
    
                    private 
                    static 
                    final int[] 
                    D;
    
                    private 
                    static 
                    final int[] 
                    E;
    
                    private 
                    static 
                    final int[] 
                    F;
    
                    private 
                    static 
                    final short[] 
                    G;
    
                    private 
                    static 
                    final byte[] 
                    H;
    
                    private 
                    static 
                    final int[] 
                    I;
    
                    private int[] 
                    J;
    
                    private 
                    static 
                    final int[] 
                    K;
    
                    private 
                    static 
                    final int[] 
                    L;
    
                    private 
                    final boolean 
                    M;
    
                    private int[] 
                    a(int[]);
    
                    public byte[] 
                    b(byte[], byte[], int);
    
                    private void 
                    c(int[], byte[]);
    
                    public void 
                    d(byte[], byte[], int);
    
                    public void C1();
    
                    public void 
                    e(byte[], int);
    
                    private void 
                    f(byte);
    
                    private byte 
                    g(byte);
    
                    public byte[] 
                    h(byte[], byte[]);
    
                    private void 
                    i();
    
                    private void 
                    j(int[], int[]);
    
                    private void 
                    k(byte[], int[]);
    
                    public void 
                    l(byte[]);
    
                    private void 
                    m(byte[]);
    
                    public void 
                    n(byte[], byte[], int);
    
                    public void 
                    o(byte[], int);
    
                    private void 
                    p();
    
                    public byte[] 
                    q(byte[], boolean);
    
                    private int[] 
                    r(byte[], short);
    
                    static void 
                    <clinit>();
    
                    private void 
                    s();
    
                    private void 
                    t(byte[]);
}

                

oracle/security/o3logon/O3LoginClientHelper.class

                    package oracle.security.o3logon;

                    public 
                    final 
                    synchronized 
                    class O3LoginClientHelper {
    
                    private boolean 
                    a;
    
                    private C0 
                    b;
    
                    public void O3LoginClientHelper();
    
                    public byte[] 
                    getEPasswd(byte[], byte[]);
    
                    public void O3LoginClientHelper(boolean);
    
                    public byte[] 
                    getSessionKey(String, String, byte[]);
}

                

oracle/security/o3logon/O3LoginProtocolHelper.class

                    package oracle.security.o3logon;

                    public 
                    final 
                    synchronized 
                    class O3LoginProtocolHelper {
    
                    private 
                    static int 
                    a;
    
                    private 
                    final byte[] 
                    b;
    
                    private 
                    static long 
                    c;
    
                    private 
                    static 
                    final boolean 
                    d = 0;
    
                    private 
                    static C0 
                    e;
    
                    private 
                    final byte[] 
                    f;
    
                    public byte[] 
                    getChallenge(byte[]);
    
                    public 
                    static byte[] 
                    getResponse(String, String, byte[]);
    
                    public byte[] 
                    getVerifier(String, String);
    
                    public String 
                    getPassword(byte[]);
    
                    public boolean 
                    authenticate(String, String);
    
                    public void O3LoginProtocolHelper();
    
                    static void 
                    <clinit>();
    
                    public void O3LoginProtocolHelper(byte[]);
}

                

oracle/jdbc/oracore/OracleTypeCOLLECTION.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeCOLLECTION 
                    extends OracleTypeADT 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -7279638692691669378;
    
                    public 
                    static 
                    final int 
                    TYPE_PLSQL_INDEX_TABLE = 1;
    
                    public 
                    static 
                    final int 
                    TYPE_NESTED_TABLE = 2;
    
                    public 
                    static 
                    final int 
                    TYPE_VARRAY = 3;
    int 
                    userCode;
    long 
                    maxSize;
    OracleType 
                    elementType;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleTypeCOLLECTION(String, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeCOLLECTION(OracleTypeADT, int, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeCOLLECTION(oracle.sql.SQLName, byte[], int, byte[], byte[], oracle.jdbc.internal.OracleConnection, byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    public boolean 
                    isInHierarchyOf(OracleType) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isObjectType();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    unlinearize(byte[], long, oracle.sql.Datum, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    unlinearize(byte[], long, oracle.sql.Datum, long, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum 
                    unlinearizeInternal(byte[], long, oracle.sql.Datum, long, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isInlineImage(byte[], int) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.ARRAY 
                    unpickle80(UnpickleContext, oracle.sql.ARRAY, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.ARRAY 
                    unpickle80(UnpickleContext, oracle.sql.ARRAY, long, int, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private Object 
                    unpickle80rec(UnpickleContext, oracle.sql.ARRAY, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private Object 
                    unpickle80rec(UnpickleContext, oracle.sql.ARRAY, long, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private Object 
                    unpickle80rec_elems(UnpickleContext, oracle.sql.ARRAY, int, int, int, java.util.Map, int) 
                    throws java.sql.SQLException;
    
                    protected int 
                    pickle81(PickleContext, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    oracle.sql.ARRAY 
                    unpickle81(PickleContext, oracle.sql.ARRAY, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.ARRAY 
                    unpickle81(PickleContext, oracle.sql.ARRAY, long, int, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    boolean 
                    unpickle81ImgHeader(PickleContext, oracle.sql.ARRAY, int, int) 
                    throws java.sql.SQLException;
    void 
                    unpickle81ImgBody(PickleContext, oracle.sql.ARRAY, long, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    void 
                    unpickle81ImgBody(PickleContext, oracle.sql.ARRAY, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    unpickle81ImgBodyElements(PickleContext, oracle.sql.ARRAY, int, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized void 
                    initCollElemTypeName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeName(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeName(int, boolean) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeType(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeType(int, boolean) 
                    throws java.sql.SQLException;
    
                    public int 
                    getNumAttrs() 
                    throws java.sql.SQLException;
    
                    public OracleType 
                    getAttrTypeAt(int) 
                    throws java.sql.SQLException;
    oracle.sql.ArrayDescriptor 
                    createArrayDescriptor() 
                    throws java.sql.SQLException;
    oracle.sql.ArrayDescriptor 
                    createArrayDescriptorWithItsOwnTree() 
                    throws java.sql.SQLException;
    
                    public OracleType 
                    getElementType() 
                    throws java.sql.SQLException;
    
                    public int 
                    getUserCode() 
                    throws java.sql.SQLException;
    
                    public long 
                    getMaxLength() 
                    throws java.sql.SQLException;
    
                    private long 
                    getAccessLength(long, long, int) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void 
                    initMetadataRecursively() 
                    throws java.sql.SQLException;
    
                    public void 
                    initChildNamesRecursively(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void 
                    cacheDescriptor() 
                    throws java.sql.SQLException;
    
                    public void 
                    printXML(java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeADT.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeADT 
                    extends OracleNamedType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 3031304012507165702;
    
                    static 
                    final int 
                    S_TOP = 1;
    
                    static 
                    final int 
                    S_EMBEDDED = 2;
    
                    static 
                    final int 
                    S_UPT_ADT = 4;
    
                    static 
                    final int 
                    S_JAVA_OBJECT = 16;
    
                    static 
                    final int 
                    S_FINAL_TYPE = 32;
    
                    static 
                    final int 
                    S_SUB_TYPE = 64;
    
                    static 
                    final int 
                    S_ATTR_TDS = 128;
    
                    static 
                    final int 
                    S_HAS_METADATA = 256;
    
                    static 
                    final int 
                    S_TDS_PARSED = 512;
    
                    private int 
                    statusBits;
    int 
                    tdsVersion;
    
                    static 
                    final int 
                    KOPT_V80 = 1;
    
                    static 
                    final int 
                    KOPT_V81 = 2;
    
                    static 
                    final int 
                    KOPT_VNFT = 3;
    
                    static 
                    final int 
                    KOPT_VERSION = 3;
    boolean 
                    endOfAdt;
    int 
                    typeVersion;
    byte[] 
                    lds;
    long[] 
                    ldsOffsetArray;
    long 
                    fixedDataSize;
    int 
                    alignmentRequirement;
    OracleType[] 
                    attrTypes;
    String[] 
                    attrNames;
    String[] 
                    attrTypeNames;
    
                    public long 
                    tdoCState;
    byte[] 
                    toid;
    byte[] 
                    fdo;
    int 
                    charSetId;
    int 
                    charSetForm;
    boolean 
                    bigEndian;
    int 
                    flattenedAttrNum;
    
                    transient int 
                    opcode;
    
                    transient int 
                    idx;
    
                    static 
                    final int 
                    CURRENT_USER_OBJECT = 0;
    
                    static 
                    final int 
                    CURRENT_USER_SYNONYM = 1;
    
                    static 
                    final int 
                    CURRENT_USER_PUBLIC_SYNONYM = 2;
    
                    static 
                    final int 
                    OTHER_USER_OBJECT = 3;
    
                    static 
                    final int 
                    OTHER_USER_SYNONYM = 4;
    
                    static 
                    final int 
                    PUBLIC_SYNONYM = 5;
    
                    static 
                    final int 
                    BREAK = 6;
    
                    static 
                    final String[] 
                    sqlString;
    
                    static 
                    final int 
                    TDS_SIZE = 4;
    
                    static 
                    final int 
                    TDS_NUMBER = 1;
    
                    static 
                    final int 
                    KOPM_OTS_SQL_CHAR = 1;
    
                    static 
                    final int 
                    KOPM_OTS_DATE = 2;
    
                    static 
                    final int 
                    KOPM_OTS_DECIMAL = 3;
    
                    static 
                    final int 
                    KOPM_OTS_DOUBLE = 4;
    
                    static 
                    final int 
                    KOPM_OTS_FLOAT = 5;
    
                    static 
                    final int 
                    KOPM_OTS_NUMBER = 6;
    
                    static 
                    final int 
                    KOPM_OTS_SQL_VARCHAR2 = 7;
    
                    static 
                    final int 
                    KOPM_OTS_SINT32 = 8;
    
                    static 
                    final int 
                    KOPM_OTS_REF = 9;
    
                    static 
                    final int 
                    KOPM_OTS_VARRAY = 10;
    
                    static 
                    final int 
                    KOPM_OTS_UINT8 = 11;
    
                    static 
                    final int 
                    KOPM_OTS_SINT8 = 12;
    
                    static 
                    final int 
                    KOPM_OTS_UINT16 = 13;
    
                    static 
                    final int 
                    KOPM_OTS_UINT32 = 14;
    
                    static 
                    final int 
                    KOPM_OTS_LOB = 15;
    
                    static 
                    final int 
                    KOPM_OTS_CANONICAL = 17;
    
                    static 
                    final int 
                    KOPM_OTS_OCTET = 18;
    
                    static 
                    final int 
                    KOPM_OTS_RAW = 19;
    
                    static 
                    final int 
                    KOPM_OTS_ROWID = 20;
    
                    static 
                    final int 
                    KOPM_OTS_STAMP = 21;
    
                    static 
                    final int 
                    KOPM_OTS_TZSTAMP = 23;
    
                    static 
                    final int 
                    KOPM_OTS_INTERVAL = 24;
    
                    static 
                    final int 
                    KOPM_OTS_PTR = 25;
    
                    static 
                    final int 
                    KOPM_OTS_SINT16 = 26;
    
                    static 
                    final int 
                    KOPM_OTS_UPT = 27;
    
                    static 
                    final int 
                    KOPM_OTS_COLLECTION = 28;
    
                    static 
                    final int 
                    KOPM_OTS_CLOB = 29;
    
                    static 
                    final int 
                    KOPM_OTS_BLOB = 30;
    
                    static 
                    final int 
                    KOPM_OTS_BFILE = 31;
    
                    static 
                    final int 
                    KOPM_OTS_BINARY_INTEGE = 32;
    
                    static 
                    final int 
                    KOPM_OTS_IMPTZSTAMP = 33;
    
                    static 
                    final int 
                    KOPM_OTS_BFLOAT = 37;
    
                    static 
                    final int 
                    KOPM_OTS_BDOUBLE = 45;
    
                    static 
                    final int 
                    KOTTCOPQ = 58;
    
                    static 
                    final int 
                    KOPT_OP_STARTEMBADT = 39;
    
                    static 
                    final int 
                    KOPT_OP_ENDEMBADT = 40;
    
                    static 
                    final int 
                    KOPT_OP_STARTADT = 41;
    
                    static 
                    final int 
                    KOPT_OP_ENDADT = 42;
    
                    static 
                    final int 
                    KOPT_OP_SUBTYPE_MARKER = 43;
    
                    static 
                    final int 
                    KOPT_OP_EMBADT_INFO = 44;
    
                    static 
                    final int 
                    KOPT_OPCODE_START = 38;
    
                    static 
                    final int 
                    KOPT_OP_VERSION = 38;
    
                    static 
                    final int 
                    REGULAR_PATCH = 0;
    
                    static 
                    final int 
                    SIMPLE_PATCH = 1;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeADT();
    
                    public void OracleTypeADT(byte[], int, int, short, String) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeADT(String, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeADT(String, java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeADT(OracleTypeADT, int, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeADT(OracleTypeADT, int, java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeADT(oracle.sql.SQLName, byte[], int, byte[], byte[], oracle.jdbc.internal.OracleConnection, byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode() 
                    throws java.sql.SQLException;
    
                    public OracleType[] 
                    getAttrTypes() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(OracleType) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isObjectType();
    
                    public oracle.sql.TypeDescriptor 
                    getTypeDescriptor();
    
                    public 
                    synchronized void 
                    init(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    init(byte[], oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    initMetadata(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    private void 
                    initEndianess(byte[]);
    void 
                    parseLDS(java.io.InputStream) 
                    throws java.sql.SQLException;
    
                    public void 
                    generateLDS() 
                    throws java.sql.SQLException;
    
                    private java.util.Vector 
                    generateLDSrec() 
                    throws java.sql.SQLException;
    TDSReader 
                    parseTDS(byte[], long) 
                    throws java.sql.SQLException;
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    private void 
                    applyTDSpatches(TDSReader) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized OracleNamedType 
                    cleanup();
    void 
                    copy_properties(OracleTypeADT);
    OracleType 
                    getNextTypeObject(TDSReader) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    linearize(oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    unlinearize(byte[], long, oracle.sql.Datum, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum 
                    _unlinearize(byte[], long, oracle.sql.Datum, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.STRUCT 
                    unpickle80(UnpickleContext, oracle.sql.STRUCT, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private oracle.sql.STRUCT 
                    unpickle80rec(UnpickleContext, oracle.sql.STRUCT, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private boolean[] 
                    unpickle_nulls(UnpickleContext) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.STRUCT 
                    unpickle81(PickleContext, oracle.sql.STRUCT, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.STRUCT 
                    unpickle81Prefix(PickleContext, oracle.sql.STRUCT, byte) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(PickleContext, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(PickleContext, byte, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private oracle.sql.STRUCT 
                    unpickle81datum(PickleContext, byte, byte) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.Datum 
                    unpickle81datumAsNull(PickleContext, byte, byte) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    pickle81(oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    protected int 
                    pickle81(PickleContext, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    hasTypeVersion();
    
                    private boolean 
                    needsToid();
    
                    private boolean 
                    shouldHavePrefix();
    
                    protected int 
                    pickle81Prefix(PickleContext) 
                    throws java.sql.SQLException;
    
                    private int 
                    pickle81rec(PickleContext, oracle.sql.Datum, int) 
                    throws java.sql.SQLException;
    
                    private Object 
                    toObject(oracle.sql.STRUCT, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeType(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeType(int, boolean) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeName(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeName(int, boolean) 
                    throws java.sql.SQLException;
    
                    private void 
                    initADTAttrNames() 
                    throws java.sql.SQLException;
    oracle.sql.StructDescriptor 
                    createStructDescriptor() 
                    throws java.sql.SQLException;
    oracle.sql.STRUCT 
                    createObjSTRUCT(oracle.sql.StructDescriptor, Object[]) 
                    throws java.sql.SQLException;
    oracle.sql.STRUCT 
                    createByteSTRUCT(oracle.sql.StructDescriptor, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    getSubtypeName(java.sql.Connection, byte[], long) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    toid2typename(java.sql.Connection, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTdsVersion();
    
                    public void 
                    printDebug();
    
                    private String 
                    debugText();
    
                    public byte[] 
                    getTOID();
    
                    public int 
                    getImageFormatVersion();
    
                    public int 
                    getTypeVersion();
    
                    public int 
                    getCharSet();
    
                    public int 
                    getCharSetForm();
    
                    public 
                    synchronized long 
                    getTdoCState();
    
                    public long 
                    getFIXED_DATA_SIZE();
    
                    public long[] 
                    getLDS_OFFSET_ARRAY();
    
                    synchronized long[] 
                    getLdsOffsetArray() 
                    throws java.sql.SQLException;
    
                    public long 
                    getFixedDataSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getAlignmentReq() 
                    throws java.sql.SQLException;
    
                    public int 
                    getNumAttrs() 
                    throws java.sql.SQLException;
    
                    public OracleType 
                    getAttrTypeAt(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isEmbeddedADT() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isUptADT() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTopADT() 
                    throws java.sql.SQLException;
    
                    public void 
                    setStatus(int) 
                    throws java.sql.SQLException;
    void 
                    setEmbeddedADT() 
                    throws java.sql.SQLException;
    void 
                    setUptADT() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isSubType() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFinalType() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isJavaObject() 
                    throws java.sql.SQLException;
    
                    public int 
                    getStatus() 
                    throws java.sql.SQLException;
    
                    public 
                    static OracleTypeADT 
                    shallowClone(OracleTypeADT) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    shallowCopy(OracleTypeADT, OracleTypeADT) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public 
                    synchronized void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized void 
                    setStatusBits(int);
    
                    private 
                    synchronized void 
                    maskAndSetStatusBits(int, int);
    
                    private void 
                    printUnsignedByteArray(byte[], java.io.PrintWriter);
    
                    public void 
                    initChildNamesRecursively(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void 
                    cacheDescriptor() 
                    throws java.sql.SQLException;
    
                    public void 
                    printXML(java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleNamedType.class

                    package oracle.jdbc.oracore;

                    public 
                    abstract 
                    synchronized 
                    class OracleNamedType 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    oracle.sql.SQLName 
                    sqlName;
    
                    transient OracleTypeADT 
                    parent;
    
                    transient int 
                    idx;
    
                    transient oracle.sql.TypeDescriptor 
                    descriptor;
    
                    static String 
                    getUserTypeTreeSql;
    
                    static String 
                    getAllTypeTreeSql;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleNamedType();
    
                    public void OracleNamedType(String, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    protected void OracleNamedType(OracleTypeADT, int, oracle.jdbc.internal.OracleConnection);
    
                    public String 
                    getFullName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getFullName(boolean) 
                    throws java.sql.SQLException;
    
                    public String 
                    getSchemaName() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSimpleName() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    hasName() 
                    throws java.sql.SQLException;
    
                    public OracleTypeADT 
                    getParent() 
                    throws java.sql.SQLException;
    
                    public void 
                    setParent(OracleTypeADT) 
                    throws java.sql.SQLException;
    
                    public int 
                    getOrder() 
                    throws java.sql.SQLException;
    
                    public void 
                    setOrder(int) 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.internal.OracleConnection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void 
                    setConnectionInternal(oracle.jdbc.internal.OracleConnection);
    
                    public oracle.sql.Datum 
                    unlinearize(byte[], long, oracle.sql.Datum, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    unlinearize(byte[], long, oracle.sql.Datum, long, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    linearize(oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TypeDescriptor 
                    getDescriptor() 
                    throws java.sql.SQLException;
    
                    public void 
                    setDescriptor(oracle.sql.TypeDescriptor) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeVersion();
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    fixupConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void 
                    printXML(java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    initNamesRecursively() 
                    throws java.sql.SQLException;
    
                    public void 
                    setNames(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setSqlName(oracle.sql.SQLName);
    
                    public java.util.Map 
                    createTypesTreeMap() 
                    throws java.sql.SQLException;
    java.util.Map 
                    getNodeMapFromUserTypes() 
                    throws java.sql.SQLException;
    java.util.Map 
                    getNodeMapFromAllTypes() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleType.class

                    package oracle.jdbc.oracore;

                    public 
                    abstract 
                    synchronized 
                    class OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -6719430495533003861;
    
                    public 
                    static 
                    final int 
                    STYLE_ARRAY_LENGTH = 0;
    
                    public 
                    static 
                    final int 
                    STYLE_DATUM = 1;
    
                    public 
                    static 
                    final int 
                    STYLE_JAVA = 2;
    
                    public 
                    static 
                    final int 
                    STYLE_RAWBYTE = 3;
    
                    public 
                    static 
                    final int 
                    STYLE_INT = 4;
    
                    public 
                    static 
                    final int 
                    STYLE_DOUBLE = 5;
    
                    public 
                    static 
                    final int 
                    STYLE_FLOAT = 6;
    
                    public 
                    static 
                    final int 
                    STYLE_LONG = 7;
    
                    public 
                    static 
                    final int 
                    STYLE_SHORT = 8;
    
                    public 
                    static 
                    final int 
                    STYLE_SKIP = 9;
    
                    static 
                    final int 
                    FORMAT_ADT_ATTR = 1;
    
                    static 
                    final int 
                    FORMAT_COLL_ELEM = 2;
    
                    static 
                    final int 
                    FORMAT_COLL_ELEM_NO_INDICATOR = 3;
    int 
                    nullOffset;
    int 
                    ldsOffset;
    int 
                    sizeForLds;
    int 
                    alignForLds;
    int 
                    typeCode;
    int 
                    dbTypeCode;
    
                    static 
                    final int 
                    KOPMAP_FLOAT = 2;
    
                    static 
                    final int 
                    KOPMAP_SB4 = 4;
    
                    static 
                    final int 
                    KOPMAP_PTR = 5;
    
                    static 
                    final int 
                    KOPMAP_ORLD = 11;
    
                    static 
                    final int 
                    KOPMAP_ORLN = 12;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleType();
    
                    public void OracleType(int);
    
                    public boolean 
                    isInHierarchyOf(OracleType) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isObjectType();
    
                    public oracle.sql.TypeDescriptor 
                    getTypeDescriptor();
    
                    public 
                    abstract oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTypeCode(int);
    
                    public int 
                    getTypeCode() 
                    throws java.sql.SQLException;
    
                    public void 
                    setDBTypeCode(int);
    
                    public int 
                    getDBTypeCode() 
                    throws java.sql.SQLException;
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public int 
                    getSizeLDS(byte[]);
    
                    public int 
                    getAlignLDS(byte[]);
    
                    protected 
                    abstract Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(PickleContext, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(PickleContext, byte, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.Datum 
                    unpickle81datumAsNull(PickleContext, byte, byte) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected int 
                    pickle81(PickleContext, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    void 
                    writeSerializedFields(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    void 
                    readSerializedFields(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isNCHAR() 
                    throws java.sql.SQLException;
    
                    public int 
                    getPrecision() 
                    throws java.sql.SQLException;
    
                    public int 
                    getScale() 
                    throws java.sql.SQLException;
    
                    public void 
                    initMetadataRecursively() 
                    throws java.sql.SQLException;
    
                    public void 
                    initNamesRecursively() 
                    throws java.sql.SQLException;
    
                    public void 
                    initChildNamesRecursively(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void 
                    cacheDescriptor() 
                    throws java.sql.SQLException;
    
                    public void 
                    setNames(String, String) 
                    throws java.sql.SQLException;
    
                    public String 
                    toXMLString() 
                    throws java.sql.SQLException;
    
                    public void 
                    printXML(java.io.PrintStream) 
                    throws java.sql.SQLException;
    void 
                    printXMLHeader(java.io.PrintWriter) 
                    throws java.sql.SQLException;
    
                    public void 
                    printXML(java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/TDSReader.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class TDSReader {
    
                    static 
                    final int 
                    KOPT_NONE_FINAL_TYPE = 1;
    
                    static 
                    final int 
                    KOPT_JAVA_OBJECT = 2;
    int 
                    nullOffset;
    int 
                    ldsOffset;
    long 
                    fixedDataSize;
    java.util.Vector 
                    patches;
    byte[] 
                    tds;
    int 
                    beginIndex;
    int 
                    index;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    void TDSReader(byte[], long);
    void 
                    skipBytes(int) 
                    throws java.sql.SQLException;
    void 
                    checkNextByte(byte) 
                    throws java.sql.SQLException;
    byte 
                    readByte() 
                    throws java.sql.SQLException;
    int 
                    readUnsignedByte() 
                    throws java.sql.SQLException;
    short 
                    readShort() 
                    throws java.sql.SQLException;
    long 
                    readLong() 
                    throws java.sql.SQLException;
    void 
                    addNormalPatch(long, byte, OracleType) 
                    throws java.sql.SQLException;
    void 
                    addSimplePatch(long, OracleType) 
                    throws java.sql.SQLException;
    void 
                    addPatch(TDSPatch) 
                    throws java.sql.SQLException;
    long 
                    moveToPatchPos(TDSPatch) 
                    throws java.sql.SQLException;
    TDSPatch 
                    getNextPatch() 
                    throws java.sql.SQLException;
    void 
                    skip_to(long);
    long 
                    offset() 
                    throws java.sql.SQLException;
    long 
                    absoluteOffset() 
                    throws java.sql.SQLException;
    byte[] 
                    tds() 
                    throws java.sql.SQLException;
    boolean 
                    isJavaObject(int, byte);
    boolean 
                    isFinalType(int, byte);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/UnpickleContext.class

                    package oracle.jdbc.oracore;

                    public 
                    final 
                    synchronized 
                    class UnpickleContext {
    byte[] 
                    image;
    int 
                    absoluteOffset;
    int 
                    beginOffset;
    int 
                    markedOffset;
    java.util.Vector 
                    patches;
    long[] 
                    ldsOffsets;
    boolean[] 
                    nullIndicators;
    boolean 
                    bigEndian;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void UnpickleContext();
    
                    public void UnpickleContext(byte[], int, boolean[], long[], boolean);
    
                    public byte 
                    readByte() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readVarNumBytes() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readPtrBytes() 
                    throws java.sql.SQLException;
    
                    public void 
                    skipPtrBytes() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readBytes(int) 
                    throws java.sql.SQLException;
    
                    public long 
                    readLong() 
                    throws java.sql.SQLException;
    
                    public short 
                    readShort() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readLengthBytes() 
                    throws java.sql.SQLException;
    
                    public void 
                    skipLengthBytes() 
                    throws java.sql.SQLException;
    
                    public void 
                    skipTo(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    skipTo(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    mark() 
                    throws java.sql.SQLException;
    
                    public void 
                    reset() 
                    throws java.sql.SQLException;
    
                    public void 
                    markAndSkip() 
                    throws java.sql.SQLException;
    
                    public void 
                    markAndSkip(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    skipBytes(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isNull(int);
    
                    public int 
                    absoluteOffset() 
                    throws java.sql.SQLException;
    
                    public int 
                    offset() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    image() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/PickleContext.class

                    package oracle.jdbc.oracore;

                    public 
                    final 
                    synchronized 
                    class PickleContext {
    
                    private PickleOutputStream 
                    outStream;
    byte[] 
                    image;
    int 
                    imageOffset;
    
                    private byte[] 
                    lengthBuffer;
    
                    static short 
                    KOPI20_LN_ELNL;
    
                    static short 
                    KOPI20_LN_5BLN;
    
                    static short 
                    KOPI20_LN_ATMN;
    
                    static short 
                    KOPI20_LN_IEMN;
    
                    static short 
                    KOPI20_LN_MAXV;
    
                    static short 
                    KOPI20_IF_IS81;
    
                    static short 
                    KOPI20_IF_CMSB;
    
                    static short 
                    KOPI20_IF_CLSB;
    
                    static short 
                    KOPI20_IF_DEGN;
    
                    static short 
                    KOPI20_IF_COLL;
    
                    static short 
                    KOPI20_IF_NOPS;
    
                    static short 
                    KOPI20_IF_ANY;
    
                    static short 
                    KOPI20_IF_NONL;
    
                    static short 
                    KOPI20_CF_CMSB;
    
                    static short 
                    KOPI20_CF_CLSB;
    
                    static short 
                    KOPI20_CF_INDX;
    
                    static short 
                    KOPI20_CF_NOLN;
    
                    static short 
                    KOPI20_VERSION;
    
                    static 
                    final byte 
                    KOPUP_INLINE_COLL = 1;
    
                    static 
                    final byte 
                    KOPUP_TYPEINFO_NONE = 0;
    
                    static 
                    final byte 
                    KOPUP_TYPEINFO_TOID = 4;
    
                    static 
                    final byte 
                    KOPUP_TYPEINFO_TOBJN = 8;
    
                    static 
                    final byte 
                    KOPUP_TYPEINFO_TDS = 12;
    
                    static 
                    final byte 
                    KOPUP_VSN_PRESENT = 16;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void PickleContext();
    
                    public void PickleContext(byte[]);
    
                    public void PickleContext(byte[], long);
    
                    public void 
                    initStream(int);
    
                    public void 
                    initStream();
    
                    public int 
                    lengthInBytes(int);
    
                    public int 
                    writeElementNull() 
                    throws java.sql.SQLException;
    
                    public int 
                    writeAtomicNull() 
                    throws java.sql.SQLException;
    
                    public int 
                    writeImmediatelyEmbeddedElementNull(byte) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeLength(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeLength(int, boolean) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    to5bLengthBytes_pctx(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeData(byte) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeData(byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    patchImageLen(int, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeImageHeader(boolean) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeOpaqueImageHeader(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeImageHeader(int, boolean) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeCollImageHeader(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeCollImageHeader(int, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeCollImageHeader(byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    writeCollImageHeader(int, byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    stream2Bytes() 
                    throws java.sql.SQLException;
    
                    public byte 
                    readByte() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    readAndCheckVersion() 
                    throws java.sql.SQLException;
    
                    public int 
                    readLength() 
                    throws java.sql.SQLException;
    
                    public void 
                    skipLength() 
                    throws java.sql.SQLException;
    
                    public int 
                    readRestOfLength(byte) 
                    throws java.sql.SQLException;
    
                    public void 
                    skipRestOfLength(byte) 
                    throws java.sql.SQLException;
    
                    public int 
                    readLength(boolean) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readPrefixSegment() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readDataValue() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readBytes(int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    read1ByteDataValue() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readDataValue(byte) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    readDataValue(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    skipDataValue() 
                    throws java.sql.SQLException;
    
                    public void 
                    skipDataValue(byte) 
                    throws java.sql.SQLException;
    
                    public void 
                    skipBytes(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    offset() 
                    throws java.sql.SQLException;
    
                    public int 
                    absoluteOffset() 
                    throws java.sql.SQLException;
    
                    public void 
                    skipTo(long) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    image() 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    is81format(byte) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isCollectionImage_pctx(byte) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isDegenerateImage_pctx(byte) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    hasPrefix(byte) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isAtomicNull(byte) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isImmediatelyEmbeddedNull(byte) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isElementNull(byte) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeCLOB.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeCLOB 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 1122821330765834411;
    
                    static int 
                    fixedDataSize;
    
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    int 
                    form;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeCLOB();
    
                    public void OracleTypeCLOB(oracle.jdbc.internal.OracleConnection);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isNCHAR() 
                    throws java.sql.SQLException;
    
                    public void 
                    setForm(int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/TDSPatch.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class TDSPatch {
    
                    static 
                    final int 
                    S_NORMAL_PATCH = 0;
    
                    static 
                    final int 
                    S_SIMPLE_PATCH = 1;
    int 
                    typeId;
    OracleType 
                    owner;
    long 
                    position;
    int 
                    uptCode;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void TDSPatch(int, OracleType, long, int) 
                    throws java.sql.SQLException;
    int 
                    getType() 
                    throws java.sql.SQLException;
    OracleNamedType 
                    getOwner() 
                    throws java.sql.SQLException;
    long 
                    getPosition() 
                    throws java.sql.SQLException;
    byte 
                    getUptTypeCode() 
                    throws java.sql.SQLException;
    void 
                    apply(OracleType) 
                    throws java.sql.SQLException;
    void 
                    apply(OracleType, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/PickleOutputStream.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class PickleOutputStream 
                    extends java.io.ByteArrayOutputStream {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void PickleOutputStream();
    
                    public void PickleOutputStream(int);
    
                    public 
                    synchronized int 
                    offset();
    
                    public 
                    synchronized void 
                    overwrite(int, byte[], int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeOPAQUE.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeOPAQUE 
                    extends OracleTypeADT 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    KOLOFLLB = 1;
    
                    static 
                    final long 
                    KOLOFLCL = 2;
    
                    static 
                    final long 
                    KOLOFLUB = 4;
    
                    static 
                    final long 
                    KOLOFLFX = 8;
    
                    static 
                    final long 
                    serialVersionUID = -7279638692691669378;
    long 
                    flagBits;
    long 
                    maxLen;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleTypeOPAQUE(String, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeOPAQUE(OracleTypeADT, int, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    public boolean 
                    isInHierarchyOf(OracleType) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isObjectType();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    unlinearize(byte[], long, oracle.sql.Datum, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    linearize(oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    protected int 
                    pickle81(PickleContext, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    oracle.sql.OPAQUE 
                    unpickle81(PickleContext, oracle.sql.OPAQUE, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(PickleContext, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private oracle.sql.OPAQUE 
                    unpickle81datum(PickleContext, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    private oracle.sql.OPAQUE 
                    unpickle81datum(PickleContext, oracle.sql.OPAQUE, int) 
                    throws java.sql.SQLException;
    oracle.sql.OpaqueDescriptor 
                    createOpaqueDescriptor() 
                    throws java.sql.SQLException;
    
                    public long 
                    getMaxLength() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTrustedLibrary() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isModeledInC() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isUnboundedSized() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFixedSized() 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/NodeMapException.class

                    package oracle.jdbc.oracore;

                    synchronized 
                    class NodeMapException 
                    extends Exception {
    void NodeMapException();
}

                

oracle/jdbc/oracore/OracleTypeFLOAT.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeFLOAT 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 4088841548269771109;
    int 
                    precision;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeFLOAT();
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public int 
                    getScale();
    
                    public int 
                    getPrecision();
    
                    public int 
                    getSizeLDS(byte[]);
    
                    public int 
                    getAlignLDS(byte[]);
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected 
                    static Object 
                    unpickle80NativeArray(UnpickleContext, long, int, int, int) 
                    throws java.sql.SQLException;
    
                    protected 
                    static Object 
                    unpickle81NativeArray(PickleContext, long, int, int) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeNUMBER.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeNUMBER 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -7182242886677299812;
    int 
                    precision;
    int 
                    scale;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeNUMBER();
    
                    protected void OracleTypeNUMBER(int);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public int 
                    getSizeLDS(byte[]);
    
                    public int 
                    getAlignLDS(byte[]);
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected 
                    static Object 
                    numericUnpickle80rec(int, int, UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected 
                    static Object 
                    unpickle80NativeArray(UnpickleContext, long, int, int, int) 
                    throws java.sql.SQLException;
    
                    protected 
                    static Object 
                    unpickle81NativeArray(PickleContext, long, int, int) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    static Object 
                    toNumericObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.NUMBER 
                    toNUMBER(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.Datum[] 
                    toNUMBERArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    static oracle.sql.Datum[] 
                    cArrayToNUMBERArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getPrecision();
    
                    public int 
                    getScale();
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeREF.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeREF 
                    extends OracleNamedType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 3186448715463064573;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeREF();
    
                    public void OracleTypeREF(String, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeREF(OracleTypeADT, int, oracle.jdbc.internal.OracleConnection);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.StructDescriptor 
                    createStructDescriptor() 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/Util.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class Util {
    
                    private 
                    static int[] 
                    ldsRoundTable;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void Util();
    
                    static void 
                    checkNextByte(java.io.InputStream, byte) 
                    throws java.sql.SQLException;
    
                    public 
                    static int[] 
                    toJavaUnsignedBytes(byte[]);
    
                    static byte[] 
                    readBytes(java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    writeBytes(java.io.OutputStream, byte[]) 
                    throws java.sql.SQLException;
    
                    static void 
                    skipBytes(java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    static long 
                    readLong(java.io.InputStream) 
                    throws java.sql.SQLException;
    
                    static short 
                    readShort(java.io.InputStream) 
                    throws java.sql.SQLException;
    
                    static byte 
                    readByte(java.io.InputStream) 
                    throws java.sql.SQLException;
    
                    static byte 
                    fdoGetSize(byte[], int);
    
                    static byte 
                    fdoGetAlign(byte[], int);
    
                    static int 
                    ldsRound(int, int);
    
                    private 
                    static byte 
                    fdoGetEntry(byte[], int);
    
                    public 
                    static short 
                    getUnsignedByte(byte);
    
                    public 
                    static byte[] 
                    serializeObject(Object) 
                    throws java.io.IOException;
    
                    public 
                    static Object 
                    deserializeObject(byte[]) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public 
                    static void 
                    printByteArray(byte[]);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/TypeTreeElement.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class TypeTreeElement {
    String 
                    schemaName;
    String 
                    typeName;
    String[] 
                    childSchemaNames;
    String[] 
                    childTypeNames;
    int 
                    size;
    
                    public void TypeTreeElement(String, String);
    
                    public void 
                    putChild(String, String, int);
    
                    public String 
                    getChildSchemaName(int);
    
                    public String 
                    getChildTypeName(int);
    
                    public String 
                    toString();
}

                

oracle/jdbc/oracore/OracleTypeUPT.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeUPT 
                    extends OracleTypeADT 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -1994358478872378695;
    
                    static 
                    final byte 
                    KOPU_UPT_ADT = -6;
    
                    static 
                    final byte 
                    KOPU_UPT_COLL = -5;
    
                    static 
                    final byte 
                    KOPU_UPT_REFCUR = 102;
    
                    static 
                    final byte 
                    KOTTCOPQ = 58;
    byte 
                    uptCode;
    OracleNamedType 
                    realType;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    protected void OracleTypeUPT();
    
                    public void OracleTypeUPT(String, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void OracleTypeUPT(OracleTypeADT, int, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(OracleType) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInHierarchyOf(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isObjectType();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected int 
                    pickle81(PickleContext, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(PickleContext, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(PickleContext, byte, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private Object 
                    unpickle81UPT(PickleContext, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected oracle.sql.Datum 
                    unpickle81datumAsNull(PickleContext, byte, byte) 
                    throws java.sql.SQLException;
    oracle.sql.StructDescriptor 
                    createStructDescriptor() 
                    throws java.sql.SQLException;
    oracle.sql.ArrayDescriptor 
                    createArrayDescriptor() 
                    throws java.sql.SQLException;
    
                    public OracleType 
                    getRealType() 
                    throws java.sql.SQLException;
    
                    public int 
                    getNumAttrs() 
                    throws java.sql.SQLException;
    
                    public OracleType 
                    getAttrTypeAt(int) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public void 
                    initChildNamesRecursively(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void 
                    initMetadataRecursively() 
                    throws java.sql.SQLException;
    
                    public void 
                    cacheDescriptor() 
                    throws java.sql.SQLException;
    
                    public void 
                    printXML(java.io.PrintWriter, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeDATE.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeDATE 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -5858803341118747965;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleTypeDATE();
    
                    public void OracleTypeDATE(int);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    public int 
                    getSizeLDS(byte[]);
    
                    public int 
                    getAlignLDS(byte[]);
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeCHAR.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeCHAR 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -6899444518695804629;
    int 
                    form;
    int 
                    charset;
    int 
                    length;
    int 
                    characterSemantic;
    
                    private 
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    
                    private short 
                    pickleCharaterSetId;
    
                    private 
                    transient oracle.sql.CharacterSet 
                    pickleCharacterSet;
    
                    private short 
                    pickleNcharCharacterSet;
    
                    static 
                    final int 
                    SQLCS_IMPLICIT = 1;
    
                    static 
                    final int 
                    SQLCS_NCHAR = 2;
    
                    static 
                    final int 
                    SQLCS_EXPLICIT = 3;
    
                    static 
                    final int 
                    SQLCS_FLEXIBLE = 4;
    
                    static 
                    final int 
                    SQLCS_LIT_NULL = 5;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeCHAR();
    
                    public void OracleTypeCHAR(oracle.jdbc.internal.OracleConnection);
    
                    protected void OracleTypeCHAR(oracle.jdbc.internal.OracleConnection, int);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected int 
                    pickle81(PickleContext, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private oracle.sql.CHAR 
                    getDbCHAR(oracle.sql.Datum);
    
                    private oracle.sql.Datum[] 
                    cArrayToDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getLength();
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isNCHAR() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeBINARY_FLOAT.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeBINARY_FLOAT 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    protected void OracleTypeBINARY_FLOAT();
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/oracore/OracleTypeBINARY_DOUBLE.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeBINARY_DOUBLE 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    protected void OracleTypeBINARY_DOUBLE();
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/oracore/OracleTypeSINT32.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeSINT32 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -5465988397261455848;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    protected void OracleTypeSINT32();
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeBFILE.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeBFILE 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -707073491109554687;
    
                    static int 
                    fixedDataSize;
    
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleTypeBFILE();
    
                    public void OracleTypeBFILE(oracle.jdbc.internal.OracleConnection);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeRAW.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeRAW 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -6083664758336974576;
    int 
                    length;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleTypeRAW();
    
                    public void OracleTypeRAW(int);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum[] 
                    toDatumArray(Object, oracle.jdbc.internal.OracleConnection, long, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected int 
                    pickle81(PickleContext, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public int 
                    getLength();
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeBLOB.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeBLOB 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = -2311211431562030662;
    
                    static int 
                    fixedDataSize;
    
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeBLOB();
    
                    public void OracleTypeBLOB(oracle.jdbc.internal.OracleConnection);
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTypeCode();
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected 
                    static Object 
                    lobUnpickle80rec(OracleType, int, int, UnpickleContext, int, int, int) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    setConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeTIMESTAMP.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeTIMESTAMP 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 3948043338303602796;
    int 
                    precision;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    protected void OracleTypeTIMESTAMP();
    
                    public void OracleTypeTIMESTAMP(oracle.jdbc.internal.OracleConnection);
    
                    public int 
                    getTypeCode();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public int 
                    getScale() 
                    throws java.sql.SQLException;
    
                    public int 
                    getPrecision() 
                    throws java.sql.SQLException;
    
                    public void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeTIMESTAMPTZ.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeTIMESTAMPTZ 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 5643686037837085645;
    int 
                    precision;
    
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    protected void OracleTypeTIMESTAMPTZ();
    
                    public void OracleTypeTIMESTAMPTZ(oracle.jdbc.internal.OracleConnection);
    
                    public int 
                    getTypeCode();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public int 
                    getScale() 
                    throws java.sql.SQLException;
    
                    public int 
                    getPrecision() 
                    throws java.sql.SQLException;
    
                    public void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeTIMESTAMPLTZ.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeTIMESTAMPLTZ 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 1615519855865602397;
    int 
                    precision;
    
                    transient oracle.jdbc.internal.OracleConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    protected void OracleTypeTIMESTAMPLTZ();
    
                    public void OracleTypeTIMESTAMPLTZ(oracle.jdbc.internal.OracleConnection);
    
                    public int 
                    getTypeCode();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public int 
                    getScale() 
                    throws java.sql.SQLException;
    
                    public int 
                    getPrecision() 
                    throws java.sql.SQLException;
    
                    public void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/oracore/OracleTypeINTERVAL.class

                    package oracle.jdbc.oracore;

                    public 
                    synchronized 
                    class OracleTypeINTERVAL 
                    extends OracleType 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 1394800182554224957;
    
                    final int 
                    LDIINTYEARMONTH;
    
                    final int 
                    LDIINTDAYSECOND;
    
                    final int 
                    SIZE_INTERVAL_YM;
    
                    final int 
                    SIZE_INTERVAL_DS;
    byte 
                    typeId;
    int 
                    scale;
    int 
                    precision;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    protected void OracleTypeINTERVAL();
    
                    public void OracleTypeINTERVAL(oracle.jdbc.internal.OracleConnection);
    
                    public int 
                    getTypeCode();
    
                    public void 
                    parseTDSrec(TDSReader) 
                    throws java.sql.SQLException;
    
                    public int 
                    getScale() 
                    throws java.sql.SQLException;
    
                    public int 
                    getPrecision() 
                    throws java.sql.SQLException;
    
                    public void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    protected Object 
                    toObject(byte[], int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(Object, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle80rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    protected Object 
                    unpickle81rec(UnpickleContext, int, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/internal/OracleConnection.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface OracleConnection 
                    extends oracle.jdbc.OracleConnection {
    
                    public 
                    static 
                    final int 
                    CHAR_TO_ASCII = 0;
    
                    public 
                    static 
                    final int 
                    CHAR_TO_UNICODE = 1;
    
                    public 
                    static 
                    final int 
                    RAW_TO_ASCII = 2;
    
                    public 
                    static 
                    final int 
                    RAW_TO_UNICODE = 3;
    
                    public 
                    static 
                    final int 
                    UNICODE_TO_CHAR = 4;
    
                    public 
                    static 
                    final int 
                    ASCII_TO_CHAR = 5;
    
                    public 
                    static 
                    final int 
                    NONE = 6;
    
                    public 
                    static 
                    final int 
                    JAVACHAR_TO_CHAR = 7;
    
                    public 
                    static 
                    final int 
                    RAW_TO_JAVACHAR = 8;
    
                    public 
                    static 
                    final int 
                    CHAR_TO_JAVACHAR = 9;
    
                    public 
                    static 
                    final int 
                    GLOBAL_TXN = 1;
    
                    public 
                    static 
                    final int 
                    NO_GLOBAL_TXN = 0;
    
                    public 
                    abstract short 
                    getStructAttrNCsId() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.util.Map 
                    getTypeMap() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.util.Properties 
                    getDBAccessProperties() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.util.Properties 
                    getOCIHandles() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getDatabaseProductVersion() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    cancel() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getURL() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract short 
                    getVersionNumber() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.util.Map 
                    getJavaObjectTypeMap();
    
                    public 
                    abstract void 
                    setJavaObjectTypeMap(java.util.Map);
    
                    public 
                    abstract oracle.sql.BfileDBAccess 
                    createBfileDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BlobDBAccess 
                    createBlobDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ClobDBAccess 
                    createClobDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setDefaultFixedString(boolean);
    
                    public 
                    abstract boolean 
                    getDefaultFixedString();
    
                    public 
                    abstract oracle.jdbc.OracleConnection 
                    getWrapper();
    
                    public 
                    abstract Class 
                    classForNameAndSchema(String, String) 
                    throws ClassNotFoundException;
    
                    public 
                    abstract void 
                    setFDO(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    getFDO(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getBigEndian() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getDescriptor(byte[]);
    
                    public 
                    abstract void 
                    putDescriptor(byte[], Object) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract OracleConnection 
                    getPhysicalConnection();
    
                    public 
                    abstract void 
                    removeDescriptor(String);
    
                    public 
                    abstract void 
                    removeAllDescriptor();
    
                    public 
                    abstract int 
                    numberOfDescriptorCacheEntries();
    
                    public 
                    abstract java.util.Enumeration 
                    descriptorCacheKeys();
    
                    public 
                    abstract long 
                    getTdoCState(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.Datum 
                    toDatum(oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract short 
                    getDbCsId() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract short 
                    getJdbcCsId() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract short 
                    getNCharSet();
    
                    public 
                    abstract java.sql.ResultSet 
                    newArrayDataResultSet(oracle.sql.Datum[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSet 
                    newArrayDataResultSet(oracle.sql.ARRAY, long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSet 
                    newArrayLocatorResultSet(oracle.sql.ArrayDescriptor, byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSetMetaData 
                    newStructMetaData(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    getForm(oracle.jdbc.oracore.OracleTypeADT, oracle.jdbc.oracore.OracleTypeCLOB, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    CHARBytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    NCHARBytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    IsNCharFixedWith();
    
                    public 
                    abstract short 
                    getDriverCharSet();
    
                    public 
                    abstract int 
                    getC2SNlsRatio();
    
                    public 
                    abstract int 
                    getMaxCharSize() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getMaxCharbyteSize();
    
                    public 
                    abstract int 
                    getMaxNCharbyteSize();
    
                    public 
                    abstract boolean 
                    isCharSetMultibyte(short);
    
                    public 
                    abstract int 
                    javaCharsToCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    javaCharsToNCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStartTime(long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    getStartTime() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isStatementCacheInitialized();
    
                    public 
                    abstract void 
                    getPropertyForPooledConnection(oracle.jdbc.pool.OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTypeMap(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getProtocolType();
    
                    public 
                    abstract java.sql.Connection 
                    getLogicalConnection(oracle.jdbc.pool.OraclePooledConnection, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTxnMode(int);
    
                    public 
                    abstract int 
                    getTxnMode();
    
                    public 
                    abstract int 
                    getHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getOCIEnvHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setAbandonedTimeoutEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getHeartbeatNoChangeCount() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    closeInternal(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.jdbc.pool.OracleConnectionCacheCallback 
                    getConnectionCacheCallbackObj() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getConnectionCacheCallbackPrivObj() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getConnectionCacheCallbackFlag() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.util.Properties 
                    getServerSessionInfo() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CLOB 
                    createClob(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CLOB 
                    createClob(byte[], short) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BLOB 
                    createBlob(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    createBfile(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isDescriptorSharable(OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract OracleStatement 
                    refCursorCursorToStatement(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract javax.transaction.xa.XAResource 
                    getXAResource() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    abort() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setApplicationContext(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    clearAllApplicationContext(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isV8Compatible() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/internal/ObjectData.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface ObjectData {
}

                

oracle/jdbc/internal/OracleStatement.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface OracleStatement 
                    extends oracle.jdbc.OracleStatement {
    
                    public 
                    static 
                    final int 
                    DEFAULT_RSET_TYPE = 1;
    
                    public 
                    static 
                    final int 
                    CLOSED = 0;
    
                    public 
                    static 
                    final int 
                    ACTIVE = 1;
    
                    public 
                    static 
                    final int 
                    CACHED = 2;
    
                    public 
                    static 
                    final int 
                    NON_CACHED = 3;
    
                    public 
                    abstract void 
                    setFixedString(boolean);
    
                    public 
                    abstract boolean 
                    getFixedString();
    
                    public 
                    abstract int 
                    sendBatch() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getserverCursor();
    
                    public 
                    abstract int 
                    getcacheState();
    
                    public 
                    abstract int 
                    getstatementType();
}

                

oracle/jdbc/internal/ClientDataSupport.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface ClientDataSupport {
    
                    public 
                    abstract Object 
                    getClientData(Object);
    
                    public 
                    abstract Object 
                    setClientData(Object, Object);
    
                    public 
                    abstract Object 
                    removeClientData(Object);
}

                

oracle/jdbc/internal/ObjectDataFactory.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface ObjectDataFactory {
}

                

oracle/jdbc/internal/OracleResultSet.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface OracleResultSet 
                    extends oracle.jdbc.OracleResultSet {
    
                    public 
                    abstract void 
                    closeStatementOnClose() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/internal/OracleResultSetMetaData.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface OracleResultSetMetaData 
                    extends oracle.jdbc.OracleResultSetMetaData {
}

                

oracle/jdbc/internal/OracleResultSetCache.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface OracleResultSetCache 
                    extends oracle.jdbc.OracleResultSetCache {
}

                

oracle/jdbc/internal/OraclePreparedStatement.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface OraclePreparedStatement 
                    extends oracle.jdbc.OraclePreparedStatement, OracleStatement {
    
                    public 
                    abstract void 
                    setCheckBindTypes(boolean);
    
                    public 
                    abstract void 
                    setInternalBytes(int, byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    enterImplicitCache() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    enterExplicitCache() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    exitImplicitCacheToActive() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    exitExplicitCacheToActive() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    exitImplicitCacheToClose() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    exitExplicitCacheToClose() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/internal/OracleCallableStatement.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface OracleCallableStatement 
                    extends oracle.jdbc.OracleCallableStatement, OraclePreparedStatement {
    
                    public 
                    abstract byte[] 
                    privateGetBytes(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/internal/OracleTypes.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    synchronized 
                    class OracleTypes 
                    extends oracle.jdbc.OracleTypes {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void OracleTypes();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/internal/StructMetaData.class

                    package oracle.jdbc.internal;

                    public 
                    abstract 
                    interface StructMetaData 
                    extends oracle.jdbc.StructMetaData {
}

                

oracle/jdbc/driver/OracleConnection.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    synchronized 
                    class OracleConnection 
                    extends oracle.jdbc.OracleConnectionWrapper 
                    implements oracle.jdbc.internal.OracleConnection, oracle.jdbc.internal.ClientDataSupport {
    
                    static int 
                    DEFAULT_ROW_PREFETCH;
    
                    static 
                    final String 
                    svptPrefix = ORACLE_SVPT_;
    
                    static 
                    final int 
                    BINARYSTREAM = 0;
    
                    static 
                    final int 
                    ASCIISTREAM = 1;
    
                    static 
                    final int 
                    UNICODESTREAM = 2;
    
                    static 
                    final int 
                    EOJ_NON = 0;
    
                    static 
                    final int 
                    EOJ_B_TO_A = 1;
    
                    static 
                    final int 
                    EOJ_B_TO_U = 2;
    
                    static 
                    final int 
                    EOJ_A_TO_U = 3;
    
                    static 
                    final int 
                    EOJ_8_TO_A = 4;
    
                    static 
                    final int 
                    EOJ_8_TO_U = 5;
    
                    static 
                    final int 
                    EOJ_U_TO_A = 6;
    
                    static 
                    final int 
                    ASCII_CHARSET = 0;
    
                    static 
                    final int 
                    NLS_CHARSET = 1;
    
                    static 
                    final int 
                    CHAR_TO_ASCII = 0;
    
                    static 
                    final int 
                    CHAR_TO_UNICODE = 1;
    
                    static 
                    final int 
                    RAW_TO_ASCII = 2;
    
                    static 
                    final int 
                    RAW_TO_UNICODE = 3;
    
                    static 
                    final int 
                    UNICODE_TO_CHAR = 4;
    
                    static 
                    final int 
                    ASCII_TO_CHAR = 5;
    
                    static 
                    final int 
                    NONE = 6;
    
                    static 
                    final int 
                    JAVACHAR_TO_CHAR = 7;
    
                    static 
                    final int 
                    RAW_TO_JAVACHAR = 8;
    
                    static 
                    final int 
                    CHAR_TO_JAVACHAR = 9;
    
                    static 
                    final int 
                    JAVACHAR_TO_ASCII = 10;
    
                    static 
                    final int 
                    JAVACHAR_TO_UNICODE = 11;
    
                    static 
                    final String 
                    RESOURCE_MANAGER_ID_DEFAULT = 0000;
    
                    public void OracleConnection();
    
                    static boolean 
                    containsKey(java.util.Map, Object);
    
                    public 
                    abstract Object 
                    getClientData(Object);
    
                    public 
                    abstract Object 
                    setClientData(Object, Object);
    
                    public 
                    abstract Object 
                    removeClientData(Object);
    
                    public 
                    abstract void 
                    setClientIdentifier(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    clearClientIdentifier(String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleCloseCallback.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    interface OracleCloseCallback {
    
                    public 
                    abstract void 
                    beforeClose(oracle.jdbc.internal.OracleConnection, Object);
    
                    public 
                    abstract void 
                    afterClose(Object);
}

                

oracle/jdbc/driver/OracleDriver$1.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleDriver$1 
                    implements java.security.PrivilegedAction {
    void OracleDriver$1(String[], String, String);
    
                    public Object 
                    run();
}

                

oracle/jdbc/driver/OracleDriver.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleDriver 
                    implements java.sql.Driver {
    
                    public 
                    static 
                    final char 
                    slash_character = 47;
    
                    public 
                    static 
                    final char 
                    at_sign_character = 64;
    
                    public 
                    static 
                    final char 
                    left_square_bracket_character = 91;
    
                    public 
                    static 
                    final char 
                    right_square_bracket_character = 93;
    
                    public 
                    static 
                    final String 
                    oracle_string = oracle;
    
                    public 
                    static 
                    final String 
                    protocol_string = protocol;
    
                    public 
                    static 
                    final String 
                    user_string = user;
    
                    public 
                    static 
                    final String 
                    password_string = password;
    
                    public 
                    static 
                    final String 
                    database_string = database;
    
                    public 
                    static 
                    final String 
                    server_string = server;
    
                    public 
                    static 
                    final String 
                    access_string = access;
    
                    public 
                    static 
                    final String 
                    protocolFullName_string = protocolFullName;
    
                    public 
                    static 
                    final String 
                    logon_as_internal_str = internal_logon;
    
                    public 
                    static 
                    final String 
                    proxy_client_name = PROXY_CLIENT_NAME;
    
                    public 
                    static 
                    final String 
                    prefetch_string = prefetch;
    
                    public 
                    static 
                    final String 
                    row_prefetch_string = rowPrefetch;
    
                    public 
                    static 
                    final String 
                    default_row_prefetch_string = defaultRowPrefetch;
    
                    public 
                    static 
                    final String 
                    batch_string = batch;
    
                    public 
                    static 
                    final String 
                    execute_batch_string = executeBatch;
    
                    public 
                    static 
                    final String 
                    default_execute_batch_string = defaultExecuteBatch;
    
                    public 
                    static 
                    final String 
                    process_escapes_string = processEscapes;
    
                    public 
                    static 
                    final String 
                    dms_parent_name_string = DMSName;
    
                    public 
                    static 
                    final String 
                    dms_parent_type_string = DMSType;
    
                    public 
                    static 
                    final String 
                    accumulate_batch_result = AccumulateBatchResult;
    
                    public 
                    static 
                    final String 
                    j2ee_compliance = oracle.jdbc.J2EE13Compliant;
    
                    public 
                    static 
                    final String 
                    v8compatible_string = oracle.jdbc.V8Compatible;
    
                    public 
                    static 
                    final String 
                    permit_timestamp_date_mismatch_string = oracle.jdbc.internal.permitBindDateDefineTimestampMismatch;
    
                    public 
                    static 
                    final String 
                    StreamChunkSize_string = oracle.jdbc.StreamChunkSize;
    
                    public 
                    static 
                    final String 
                    SetFloatAndDoubleUseBinary_string = SetFloatAndDoubleUseBinary;
    
                    public 
                    static 
                    final String 
                    xa_trans_loose = oracle.jdbc.XATransLoose;
    
                    public 
                    static 
                    final String 
                    tcp_no_delay = oracle.jdbc.TcpNoDelay;
    
                    public 
                    static 
                    final String 
                    read_timeout = oracle.jdbc.ReadTimeout;
    
                    public 
                    static 
                    final String 
                    defaultnchar_string = oracle.jdbc.defaultNChar;
    
                    public 
                    static 
                    final String 
                    defaultncharprop_string = defaultNChar;
    
                    public 
                    static 
                    final String 
                    useFetchSizeWithLongColumn_prop_string = useFetchSizeWithLongColumn;
    
                    public 
                    static 
                    final String 
                    useFetchSizeWithLongColumn_string = oracle.jdbc.useFetchSizeWithLongColumn;
    
                    public 
                    static 
                    final String 
                    remarks_string = remarks;
    
                    public 
                    static 
                    final String 
                    report_remarks_string = remarksReporting;
    
                    public 
                    static 
                    final String 
                    synonyms_string = synonyms;
    
                    public 
                    static 
                    final String 
                    include_synonyms_string = includeSynonyms;
    
                    public 
                    static 
                    final String 
                    restrict_getTables_string = restrictGetTables;
    
                    public 
                    static 
                    final String 
                    fixed_string_string = fixedString;
    
                    public 
                    static 
                    final String 
                    dll_string = oracle.jdbc.ocinativelibrary;
    
                    public 
                    static 
                    final String 
                    nls_lang_backdoor = oracle.jdbc.ociNlsLangBackwardCompatible;
    
                    public 
                    static 
                    final String 
                    disable_defineColumnType_string = disableDefineColumnType;
    
                    public 
                    static 
                    final String 
                    convert_nchar_literals_string = oracle.jdbc.convertNcharLiterals;
    
                    public 
                    static 
                    final String 
                    dataSizeUnitsPropertyName = ;
    
                    public 
                    static 
                    final String 
                    dataSizeBytes = ;
    
                    public 
                    static 
                    final String 
                    dataSizeChars = ;
    
                    public 
                    static 
                    final String 
                    dms_stmt_metrics_string = oracle.jdbc.DMSStatementMetrics;
    
                    public 
                    static 
                    final String 
                    dms_stmt_caching_metrics_string = oracle.jdbc.DMSStatementCachingMetrics;
    
                    public 
                    static 
                    final String 
                    set_new_password_string = OCINewPassword;
    
                    public 
                    static 
                    final String 
                    retain_v9_bind_behavior_string = oracle.jdbc.RetainV9LongBindBehavior;
    
                    public 
                    static 
                    final String 
                    no_caching_buffers = oracle.jdbc.FreeMemoryOnEnterImplicitCache;
    
                    public 
                    static 
                    final String 
                    secret_store_connect = oracle.security.client.connect_string;
    
                    public 
                    static 
                    final String 
                    secret_store_username = oracle.security.client.username;
    
                    public 
                    static 
                    final String 
                    secret_store_password = oracle.security.client.password;
    
                    public 
                    static 
                    final String 
                    secret_store_default_username = oracle.security.client.default_username;
    
                    public 
                    static 
                    final String 
                    secret_store_default_password = oracle.security.client.default_password;
    
                    public 
                    static 
                    final String 
                    wallet_location_string = oracle.net.wallet_location;
    
                    private 
                    static String 
                    walletLocation;
    
                    static 
                    final int 
                    EXTENSION_TYPE_ORACLE_ERROR = -3;
    
                    static 
                    final int 
                    EXTENSION_TYPE_GEN_ERROR = -2;
    
                    static 
                    final int 
                    EXTENSION_TYPE_TYPE4_CLIENT = 0;
    
                    static 
                    final int 
                    EXTENSION_TYPE_TYPE4_SERVER = 1;
    
                    static 
                    final int 
                    EXTENSION_TYPE_TYPE2_CLIENT = 2;
    
                    static 
                    final int 
                    EXTENSION_TYPE_TYPE2_SERVER = 3;
    
                    private 
                    static 
                    final int 
                    NUMBER_OF_EXTENSION_TYPES = 4;
    
                    private OracleDriverExtension[] 
                    driverExtensions;
    
                    private 
                    static 
                    final String 
                    DRIVER_PACKAGE_STRING = driver;
    
                    private 
                    static 
                    final String[] 
                    driverExtensionClassNames;
    
                    private 
                    static java.util.Properties 
                    driverAccess;
    
                    protected 
                    static java.sql.Connection 
                    defaultConn;
    
                    private 
                    static OracleDriver 
                    defaultDriver;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleDriver();
    
                    public java.sql.Connection 
                    connect(String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    defaultConnection() 
                    throws java.sql.SQLException;
    
                    private int 
                    oracleDriverExtensionTypeFromURL(String);
    
                    public boolean 
                    acceptsURL(String);
    
                    public java.sql.DriverPropertyInfo[] 
                    getPropertyInfo(String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public int 
                    getMajorVersion();
    
                    public int 
                    getMinorVersion();
    
                    public boolean 
                    jdbcCompliant();
    
                    public String 
                    processSqlEscapes(String) 
                    throws java.sql.SQLException;
    
                    private String 
                    parseLoginOption(String, java.util.Properties);
    
                    private java.util.Hashtable 
                    parseUrl(String) 
                    throws java.sql.SQLException;
    
                    private String[] 
                    getSecretStoreCredentials(String) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    getCompileTime();
    
                    private String 
                    translateConnStr(String) 
                    throws java.sql.SQLException;
    
                    protected 
                    static String 
                    getSystemPropertyUserName();
    
                    protected 
                    static String 
                    getSystemPropertyV8Compatible();
    
                    protected 
                    static String 
                    getSystemPropertyPollInterval();
    
                    public 
                    static String 
                    getSystemPropertyFastConnectionFailover(String);
    
                    public 
                    static String 
                    getSystemPropertyJserverVersion();
    
                    private 
                    static String 
                    getSystemProperty(String);
    
                    private 
                    static String 
                    getSystemProperty(String, String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleDriverExtension.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class OracleDriverExtension {
    void OracleDriverExtension();
    
                    abstract java.sql.Connection 
                    getConnection(String, String, String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    abstract OracleStatement 
                    allocateStatement(PhysicalConnection, int, int) 
                    throws java.sql.SQLException;
    
                    abstract OraclePreparedStatement 
                    allocatePreparedStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    
                    abstract OracleCallableStatement 
                    allocateCallableStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    
                    abstract OracleInputStream 
                    createInputStream(OracleStatement, int, Accessor) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/PhysicalConnection.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class PhysicalConnection 
                    extends OracleConnection {
    char[][] 
                    charOutput;
    byte[][] 
                    byteOutput;
    short[][] 
                    shortOutput;
    String 
                    url;
    String 
                    user;
    String 
                    savedUser;
    String 
                    database;
    boolean 
                    autoCommitSet;
    String 
                    protocol;
    int 
                    streamChunkSize;
    
                    public int 
                    protocolId;
    OracleTimeout 
                    timeout;
    boolean 
                    spawnNewThreadToCancel;
    DBConversion 
                    conversion;
    boolean 
                    xaWantsError;
    boolean 
                    usingXA;
    int 
                    txnMode;
    byte[] 
                    fdo;
    Boolean 
                    bigEndian;
    OracleStatement 
                    statements;
    int 
                    lifecycle;
    
                    static 
                    final int 
                    OPEN = 1;
    
                    static 
                    final int 
                    CLOSING = 2;
    
                    static 
                    final int 
                    CLOSED = 4;
    
                    static 
                    final int 
                    ABORTED = 8;
    boolean 
                    clientIdSet;
    String 
                    clientId;
    int 
                    defaultBatch;
    int 
                    defaultRowPrefetch;
    boolean 
                    reportRemarks;
    boolean 
                    includeSynonyms;
    boolean 
                    restrictGetTables;
    boolean 
                    accumulateBatchResult;
    boolean 
                    j2ee13Compliant;
    int 
                    txnLevel;
    java.util.Map 
                    map;
    java.util.Map 
                    javaObjectMap;
    java.util.Hashtable 
                    descriptorCache;
    OracleStatement 
                    statementHoldingLine;
    oracle.jdbc.OracleDatabaseMetaData 
                    databaseMetaData;
    LogicalConnection 
                    logicalConnectionAttached;
    boolean 
                    isProxy;
    boolean 
                    useFetchSizeWithLongColumn;
    OracleSql 
                    sqlObj;
    java.sql.SQLWarning 
                    sqlWarning;
    boolean 
                    readOnly;
    LRUStatementCache 
                    statementCache;
    boolean 
                    clearStatementMetaData;
    boolean 
                    processEscapes;
    boolean 
                    defaultAutoRefetch;
    OracleCloseCallback 
                    closeCallback;
    Object 
                    privateData;
    boolean 
                    defaultFixedString;
    boolean 
                    defaultNChar;
    java.sql.Statement 
                    savepointStatement;
    
                    static 
                    final int[] 
                    endToEndMaxLength;
    boolean 
                    endToEndAnyChanged;
    
                    final boolean[] 
                    endToEndHasChanged;
    short 
                    endToEndECIDSequenceNumber;
    String[] 
                    endToEndValues;
    
                    final boolean 
                    useDMSForEndToEnd;
    oracle.jdbc.OracleConnection 
                    wrapper;
    java.util.Properties 
                    connectionProperties;
    boolean 
                    wellBehavedStatementReuse;
    int 
                    minVcsBindSize;
    int 
                    maxRawBytesSql;
    int 
                    maxRawBytesPlsql;
    int 
                    maxVcsCharsSql;
    int 
                    maxVcsBytesPlsql;
    OracleDriverExtension 
                    driverExtension;
    
                    static 
                    final String 
                    uninitializedMarker = ;
    String 
                    databaseProductVersion;
    short 
                    versionNumber;
    boolean 
                    v8Compatible;
    boolean 
                    looseTimestampDateCheck;
    boolean 
                    isMemoryFreedOnEnteringCache;
    String 
                    ressourceManagerId;
    int 
                    namedTypeAccessorByteLen;
    int 
                    refTypeAccessorByteLen;
    boolean 
                    disableDefineColumnType;
    boolean 
                    convertNcharLiterals;
    oracle.sql.CharacterSet 
                    setCHARCharSetObj;
    oracle.sql.CharacterSet 
                    setCHARNCharSetObj;
    boolean 
                    plsqlCompilerWarnings;
    
                    static 
                    final String 
                    DATABASE_NAME = DATABASE_NAME;
    
                    static 
                    final String 
                    SERVER_HOST = SERVER_HOST;
    
                    static 
                    final String 
                    INSTANCE_NAME = INSTANCE_NAME;
    
                    static 
                    final String 
                    SERVICE_NAME = SERVICE_NAME;
    java.util.Hashtable 
                    clientData;
    String 
                    sessionTimeZone;
    java.util.Calendar 
                    dbTzCalendar;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void PhysicalConnection();
    void PhysicalConnection(String, String, String, String, java.util.Properties, OracleDriverExtension) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    initializePassword(String) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getProperties();
    
                    public 
                    synchronized java.sql.Connection 
                    _getPC();
    
                    public 
                    synchronized oracle.jdbc.internal.OracleConnection 
                    getPhysicalConnection();
    
                    public 
                    synchronized boolean 
                    isLogicalConnection();
    void 
                    initialize(String, String, String, java.util.Hashtable, java.util.Map, java.util.Map, String) 
                    throws java.sql.SQLException;
    void 
                    initializeSetCHARCharSetObjs();
    OracleTimeout 
                    getTimeout() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Statement 
                    createStatement() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Statement 
                    createStatement(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.PreparedStatement 
                    prepareStatement(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.PreparedStatement 
                    prepareStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.PreparedStatement 
                    prepareStatement(String, int, 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 
                    prepareCallWithKey(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 void 
                    cancel() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    commit() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    rollback() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public void 
                    closeInternal(boolean) 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    closeLogicalConnection() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    abort() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    doAbort() 
                    throws java.sql.SQLException;
    void 
                    closeProxySession() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getServerSessionInfo() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    applyConnectionAttributes(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Properties 
                    getConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Properties 
                    getUnMatchedConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAbandonedTimeoutEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerConnectionCacheCallback(oracle.jdbc.pool.OracleConnectionCacheCallback, Object, int) 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.pool.OracleConnectionCacheCallback 
                    getConnectionCacheCallbackObj() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getConnectionCacheCallbackPrivObj() 
                    throws java.sql.SQLException;
    
                    public int 
                    getConnectionCacheCallbackFlag() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionReleasePriority(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getConnectionReleasePriority() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isClosed() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isProxySession();
    
                    public 
                    synchronized void 
                    openProxySession(int, java.util.Properties) 
                    throws java.sql.SQLException;
    void 
                    doProxySession(int, java.util.Properties) 
                    throws java.sql.SQLException;
    void 
                    cleanup();
    
                    public 
                    synchronized java.sql.DatabaseMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public void 
                    setReadOnly(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isReadOnly() 
                    throws java.sql.SQLException;
    
                    public void 
                    setCatalog(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    getCatalog() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTransactionIsolation(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTransactionIsolation() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAutoClose(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoClose() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    clearWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    setWarnings(java.sql.SQLWarning);
    
                    public void 
                    setDefaultRowPrefetch(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getDefaultRowPrefetch();
    
                    public 
                    synchronized void 
                    setDefaultExecuteBatch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getDefaultExecuteBatch();
    
                    public 
                    synchronized void 
                    setRemarksReporting(boolean);
    
                    public 
                    synchronized boolean 
                    getRemarksReporting();
    
                    public void 
                    setIncludeSynonyms(boolean);
    
                    public 
                    synchronized String[] 
                    getEndToEndMetrics() 
                    throws java.sql.SQLException;
    
                    public short 
                    getEndToEndECIDSequenceNumber() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setEndToEndMetrics(String[], short) 
                    throws java.sql.SQLException;
    void 
                    setEndToEndMetricsInternal(String[], short) 
                    throws java.sql.SQLException;
    void 
                    updateEndToEndMetrics() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getIncludeSynonyms();
    
                    public void 
                    setRestrictGetTables(boolean);
    
                    public boolean 
                    getRestrictGetTables();
    
                    public void 
                    setDefaultFixedString(boolean);
    
                    public void 
                    setDefaultNChar(boolean);
    
                    public boolean 
                    getDefaultFixedString();
    
                    public int 
                    getNlsRatio();
    
                    public int 
                    getC2SNlsRatio();
    
                    synchronized void 
                    addStatement(OracleStatement);
    
                    synchronized void 
                    removeStatement(OracleStatement);
    
                    synchronized void 
                    closeStatements(boolean) 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    needLine() 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    holdLine(oracle.jdbc.internal.OracleStatement);
    
                    synchronized void 
                    holdLine(OracleStatement);
    
                    synchronized void 
                    releaseLine();
    void 
                    releaseLineForCancel();
    
                    public 
                    synchronized void 
                    startup(String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    shutdown(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    archive(int, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerSQLType(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerSQLType(String, Class) 
                    throws java.sql.SQLException;
    void 
                    ensureClassMapExists();
    void 
                    initializeClassMap();
    
                    public 
                    synchronized String 
                    getSQLType(Object) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getJavaObject(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    putDescriptor(String, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getDescriptor(String);
    
                    public 
                    synchronized void 
                    removeDecriptor(String);
    
                    public 
                    synchronized void 
                    removeDescriptor(String);
    
                    public 
                    synchronized void 
                    removeAllDescriptor();
    
                    public int 
                    numberOfDescriptorCacheEntries();
    
                    public java.util.Enumeration 
                    descriptorCacheKeys();
    
                    public 
                    synchronized void 
                    putDescriptor(byte[], Object) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getDescriptor(byte[]);
    
                    public 
                    synchronized void 
                    removeDecriptor(byte[]);
    
                    public short 
                    getJdbcCsId() 
                    throws java.sql.SQLException;
    
                    public short 
                    getDbCsId() 
                    throws java.sql.SQLException;
    
                    public short 
                    getNCsId() 
                    throws java.sql.SQLException;
    
                    public short 
                    getStructAttrCsId() 
                    throws java.sql.SQLException;
    
                    public short 
                    getStructAttrNCsId() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Map 
                    getTypeMap();
    
                    public 
                    synchronized void 
                    setTypeMap(java.util.Map);
    void 
                    addDefaultClassMapEntriesTo(java.util.Map);
    void 
                    addClassMapEntry(String, String, java.util.Map);
    
                    public 
                    synchronized void 
                    setUsingXAFlag(boolean);
    
                    public 
                    synchronized boolean 
                    getUsingXAFlag();
    
                    public 
                    synchronized void 
                    setXAErrorFlag(boolean);
    
                    public 
                    synchronized boolean 
                    getXAErrorFlag();
    void 
                    initUserName() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getUserName() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setStartTime(long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    getStartTime() 
                    throws java.sql.SQLException;
    void 
                    registerHeartbeat() 
                    throws java.sql.SQLException;
    
                    public int 
                    getHeartbeatNoChangeCount() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    getFDO(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFDO(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getBigEndian() 
                    throws java.sql.SQLException;
    
                    public 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;
    
                    public 
                    synchronized void 
                    rollback(java.sql.Savepoint) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    releaseSavepoint(java.sql.Savepoint) 
                    throws java.sql.SQLException;
    
                    public java.sql.Statement 
                    createStatement(int, int, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    prepareStatement(String, 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) 
                    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 
                    synchronized oracle.jdbc.OracleSavepoint 
                    oracleSetSavepoint() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.jdbc.OracleSavepoint 
                    oracleSetSavepoint(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    oracleRollback(oracle.jdbc.OracleSavepoint) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    oracleReleaseSavepoint(oracle.jdbc.OracleSavepoint) 
                    throws java.sql.SQLException;
    void 
                    disallowGlobalTxnMode(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTxnMode(int);
    
                    public int 
                    getTxnMode();
    
                    public 
                    synchronized Object 
                    getClientData(Object);
    
                    public 
                    synchronized Object 
                    setClientData(Object, Object);
    
                    public 
                    synchronized Object 
                    removeClientData(Object);
    
                    public oracle.sql.BlobDBAccess 
                    createBlobDBAccess() 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ClobDBAccess 
                    createClobDBAccess() 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BfileDBAccess 
                    createBfileDBAccess() 
                    throws java.sql.SQLException;
    
                    public void 
                    printState();
    
                    public String 
                    getProtocolType();
    
                    public String 
                    getURL();
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getStmtCacheSize();
    
                    public 
                    synchronized void 
                    setStatementCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getStatementCacheSize() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setImplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getImplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setExplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getExplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    purgeImplicitCache() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    purgeExplicitCache() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.PreparedStatement 
                    getStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.CallableStatement 
                    getCallWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    cacheImplicitStatement(OraclePreparedStatement, String, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    cacheExplicitStatement(OraclePreparedStatement, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isStatementCacheInitialized();
    
                    public void 
                    setDefaultAutoRefetch(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getDefaultAutoRefetch() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerTAFCallback(oracle.jdbc.OracleOCIFailover, Object) 
                    throws java.sql.SQLException;
    
                    public String 
                    getDatabaseProductVersion() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getReportRemarks();
    
                    public 
                    synchronized short 
                    getVersionNumber() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerCloseCallback(OracleCloseCallback, Object);
    
                    public void 
                    setCreateStatementAsRefCursor(boolean);
    
                    public boolean 
                    getCreateStatementAsRefCursor();
    
                    public int 
                    pingDatabase(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Map 
                    getJavaObjectTypeMap();
    
                    public 
                    synchronized void 
                    setJavaObjectTypeMap(java.util.Map);
    
                    public void 
                    clearClientIdentifier(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setClientIdentifier(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setSessionTimeZone(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    getSessionTimeZone();
    void 
                    setDbTzCalendar(String);
    
                    public java.util.Calendar 
                    getDbTzCalendar();
    
                    public void 
                    setAccumulateBatchResult(boolean);
    
                    public boolean 
                    isAccumulateBatchResult();
    
                    public void 
                    setJ2EE13Compliant(boolean);
    
                    public boolean 
                    getJ2EE13Compliant();
    
                    public Class 
                    classForNameAndSchema(String, String) 
                    throws ClassNotFoundException;
    
                    public Class 
                    safelyGetClassForName(String) 
                    throws ClassNotFoundException;
    
                    public int 
                    getHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getOCIEnvHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public 
                    static OracleConnection 
                    unwrapCompletely(oracle.jdbc.OracleConnection);
    
                    public void 
                    setWrapper(oracle.jdbc.OracleConnection);
    
                    public oracle.jdbc.OracleConnection 
                    unwrap();
    
                    public oracle.jdbc.OracleConnection 
                    getWrapper();
    
                    static oracle.jdbc.internal.OracleConnection 
                    _physicalConnectionWithin(java.sql.Connection);
    
                    public oracle.jdbc.internal.OracleConnection 
                    physicalConnectionWithin();
    
                    public long 
                    getTdoCState(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    getOracleTypeADT(oracle.jdbc.oracore.OracleTypeADT) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public short 
                    getNCharSet();
    
                    public java.sql.ResultSet 
                    newArrayDataResultSet(oracle.sql.Datum[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    newArrayDataResultSet(oracle.sql.ARRAY, long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    newArrayLocatorResultSet(oracle.sql.ArrayDescriptor, byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    newStructMetaData(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public int 
                    CHARBytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    NCHARBytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    IsNCharFixedWith();
    
                    public short 
                    getDriverCharSet();
    
                    public int 
                    getMaxCharSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getMaxCharbyteSize();
    
                    public int 
                    getMaxNCharbyteSize();
    
                    public boolean 
                    isCharSetMultibyte(short);
    
                    public int 
                    javaCharsToCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    javaCharsToNCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    getPropertyForPooledConnection(oracle.jdbc.pool.OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    final void 
                    getPropertyForPooledConnection(oracle.jdbc.pool.OraclePooledConnection, String) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getDBAccessProperties() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getOCIHandles() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    logon() 
                    throws java.sql.SQLException;
    void 
                    logoff() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    open(OracleStatement) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    doCancel() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    doSetAutoCommit(boolean) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    doCommit() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    doRollback() 
                    throws java.sql.SQLException;
    
                    abstract String 
                    doGetDatabaseProductVersion() 
                    throws java.sql.SQLException;
    
                    abstract short 
                    doGetVersionNumber() 
                    throws java.sql.SQLException;
    int 
                    getDefaultStreamChunkSize();
    
                    abstract OracleStatement 
                    RefCursorBytesToStatement(byte[], OracleStatement) 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.internal.OracleStatement 
                    refCursorCursorToStatement(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getLogicalConnection(oracle.jdbc.pool.OraclePooledConnection, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    getForm(oracle.jdbc.oracore.OracleTypeADT, oracle.jdbc.oracore.OracleTypeCLOB, int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    createClob(byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    createClob(byte[], short) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BLOB 
                    createBlob(byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BFILE 
                    createBfile(byte[]) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isDescriptorSharable(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    boolean 
                    useLittleEndianSetCHARBinder() 
                    throws java.sql.SQLException;
    
                    public void 
                    setPlsqlWarnings(String) 
                    throws java.sql.SQLException;
    void 
                    internalClose() 
                    throws java.sql.SQLException;
    
                    public javax.transaction.xa.XAResource 
                    getXAResource() 
                    throws java.sql.SQLException;
    
                    protected void 
                    doDescribeTable(AutoKeyInfo) 
                    throws java.sql.SQLException;
    
                    public void 
                    setApplicationContext(String, String, String) 
                    throws java.sql.SQLException;
    void 
                    doSetApplicationContext(String, String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    clearAllApplicationContext(String) 
                    throws java.sql.SQLException;
    void 
                    doClearAllApplicationContext(String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isV8Compatible() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleTimeout.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class OracleTimeout {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleTimeout();
    
                    static OracleTimeout 
                    newTimeout(String) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    setTimeout(long, OracleStatement) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    cancelTimeout() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    close() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleStatement.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    synchronized 
                    class OracleStatement 
                    implements oracle.jdbc.internal.OracleStatement, ScrollRsetStatement {
    
                    static 
                    final int 
                    PLAIN_STMT = 0;
    
                    static 
                    final int 
                    PREP_STMT = 1;
    
                    static 
                    final int 
                    CALL_STMT = 2;
    
                    static 
                    final byte 
                    IS_UNINITIALIZED = -1;
    
                    static 
                    final byte 
                    IS_SELECT = 0;
    
                    static 
                    final byte 
                    IS_PLSQL_BLOCK = 1;
    
                    static 
                    final byte 
                    IS_DML = 2;
    
                    static 
                    final byte 
                    IS_OTHER = 3;
    
                    static 
                    final byte 
                    IS_CALL_BLOCK = 4;
    int 
                    cursorId;
    int 
                    numberOfDefinePositions;
    int 
                    definesBatchSize;
    Accessor[] 
                    accessors;
    int 
                    defineByteSubRange;
    int 
                    defineCharSubRange;
    int 
                    defineIndicatorSubRange;
    int 
                    defineLengthSubRange;
    byte[] 
                    defineBytes;
    char[] 
                    defineChars;
    short[] 
                    defineIndicators;
    boolean 
                    described;
    boolean 
                    describedWithNames;
    int 
                    rowsProcessed;
    int 
                    cachedDefineByteSize;
    int 
                    cachedDefineCharSize;
    int 
                    cachedDefineIndicatorSize;
    OracleStatement 
                    children;
    OracleStatement 
                    nextChild;
    OracleStatement 
                    next;
    OracleStatement 
                    prev;
    long 
                    c_state;
    int 
                    numberOfBindPositions;
    byte[] 
                    bindBytes;
    char[] 
                    bindChars;
    short[] 
                    bindIndicators;
    int 
                    bindByteOffset;
    int 
                    bindCharOffset;
    int 
                    bindIndicatorOffset;
    int 
                    bindByteSubRange;
    int 
                    bindCharSubRange;
    int 
                    bindIndicatorSubRange;
    Accessor[] 
                    outBindAccessors;
    java.io.InputStream[][] 
                    parameterStream;
    int 
                    firstRowInBatch;
    boolean 
                    hasIbtBind;
    byte[] 
                    ibtBindBytes;
    char[] 
                    ibtBindChars;
    short[] 
                    ibtBindIndicators;
    int 
                    ibtBindByteOffset;
    int 
                    ibtBindCharOffset;
    int 
                    ibtBindIndicatorOffset;
    int 
                    ibtBindIndicatorSize;
    byte[] 
                    tmpByteArray;
    int 
                    sizeTmpByteArray;
    byte[] 
                    tmpBindsByteArray;
    boolean 
                    needToSendOalToFetch;
    int[] 
                    definedColumnType;
    int[] 
                    definedColumnSize;
    int[] 
                    definedColumnFormOfUse;
    T4CTTIoac[] 
                    oacdefSent;
    int[] 
                    nbPostPonedColumns;
    int[][] 
                    indexOfPostPonedColumn;
    int 
                    accessorByteOffset;
    int 
                    accessorCharOffset;
    int 
                    accessorShortOffset;
    
                    static 
                    final int 
                    VALID_ROWS_UNINIT = -999;
    PhysicalConnection 
                    connection;
    OracleInputStream 
                    streamList;
    OracleInputStream 
                    nextStream;
    OracleResultSetImpl 
                    currentResultSet;
    boolean 
                    processEscapes;
    boolean 
                    convertNcharLiterals;
    int 
                    queryTimeout;
    int 
                    batch;
    int 
                    currentRank;
    int 
                    currentRow;
    int 
                    validRows;
    int 
                    maxFieldSize;
    int 
                    maxRows;
    int 
                    totalRowsVisited;
    int 
                    rowPrefetch;
    int 
                    saved_rowPrefetch;
    int 
                    defaultRowPrefetch;
    boolean 
                    rowPrefetchChanged;
    boolean 
                    gotLastBatch;
    boolean 
                    clearParameters;
    boolean 
                    closed;
    boolean 
                    sqlStringChanged;
    OracleSql 
                    sqlObject;
    boolean 
                    needToParse;
    boolean 
                    needToPrepareDefineBuffer;
    boolean 
                    columnsDefinedByUser;
    byte 
                    sqlKind;
    int 
                    autoRollback;
    int 
                    defaultFetchDirection;
    boolean 
                    autoRefetch;
    boolean 
                    serverCursor;
    boolean 
                    fixedString;
    boolean 
                    noMoreUpdateCounts;
    boolean 
                    isExecuting;
    
                    static 
                    final byte 
                    EXECUTE_NONE = -1;
    
                    static 
                    final byte 
                    EXECUTE_QUERY = 1;
    
                    static 
                    final byte 
                    EXECUTE_UPDATE = 2;
    
                    static 
                    final byte 
                    EXECUTE_NORMAL = 3;
    byte 
                    executionType;
    OracleResultSet 
                    scrollRset;
    oracle.jdbc.OracleResultSetCache 
                    rsetCache;
    int 
                    userRsetType;
    int 
                    realRsetType;
    boolean 
                    needToAddIdentifier;
    java.sql.SQLWarning 
                    sqlWarning;
    int 
                    cacheState;
    int 
                    creationState;
    boolean 
                    isOpen;
    int 
                    statementType;
    boolean 
                    columnSetNull;
    int[] 
                    returnParamMeta;
    
                    static 
                    final int 
                    DMLR_METADATA_PREFIX_SIZE = 3;
    
                    static 
                    final int 
                    DMLR_METADATA_NUM_OF_RETURN_PARAMS = 0;
    
                    static 
                    final int 
                    DMLR_METADATA_ROW_BIND_BYTES = 1;
    
                    static 
                    final int 
                    DMLR_METADATA_ROW_BIND_CHARS = 2;
    
                    static 
                    final int 
                    DMLR_METADATA_TYPE_OFFSET = 0;
    
                    static 
                    final int 
                    DMLR_METADATA_IS_CHAR_TYPE_OFFSET = 1;
    
                    static 
                    final int 
                    DMLR_METADATA_BIND_SIZE_OFFSET = 2;
    
                    static 
                    final int 
                    DMLR_METADATA_PER_POSITION_SIZE = 3;
    Accessor[] 
                    returnParamAccessors;
    boolean 
                    returnParamsFetched;
    int 
                    rowsDmlReturned;
    int 
                    numReturnParams;
    byte[] 
                    returnParamBytes;
    char[] 
                    returnParamChars;
    short[] 
                    returnParamIndicators;
    int 
                    returnParamRowBytes;
    int 
                    returnParamRowChars;
    OracleReturnResultSet 
                    returnResultSet;
    boolean 
                    isAutoGeneratedKey;
    AutoKeyInfo 
                    autoKeyInfo;
    java.util.TimeZone 
                    defaultTZ;
    int 
                    lastIndex;
    java.util.Vector 
                    m_batchItems;
    java.util.ArrayList 
                    tempClobsToFree;
    java.util.ArrayList 
                    tempBlobsToFree;
    java.util.ArrayList 
                    oldTempClobsToFree;
    java.util.ArrayList 
                    oldTempBlobsToFree;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    abstract void 
                    doDescribe(boolean) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    executeForDescribe() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    executeForRows(boolean) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    fetch() 
                    throws java.sql.SQLException;
    void 
                    continueReadRow(int) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    doClose() 
                    throws java.sql.SQLException;
    
                    abstract void 
                    closeQuery() 
                    throws java.sql.SQLException;
    void OracleStatement(PhysicalConnection, int, int) 
                    throws java.sql.SQLException;
    void OracleStatement(PhysicalConnection, int, int, int, int) 
                    throws java.sql.SQLException;
    void 
                    initializeDefineSubRanges();
    void 
                    prepareDefinePreambles();
    void 
                    prepareAccessors() 
                    throws java.sql.SQLException;
    boolean 
                    checkAccessorsUsable() 
                    throws java.sql.SQLException;
    void 
                    executeMaybeDescribe() 
                    throws java.sql.SQLException;
    void 
                    adjustGotLastBatch();
    void 
                    doExecuteWithTimeout() 
                    throws java.sql.SQLException;
    void 
                    open() 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    executeQuery(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    closeWithKey(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    protected void 
                    closeOrCache(String) 
                    throws java.sql.SQLException;
    
                    protected void 
                    hardClose() 
                    throws java.sql.SQLException;
    
                    private void 
                    hardClose(boolean) 
                    throws java.sql.SQLException;
    
                    protected void 
                    alwaysOnClose() 
                    throws java.sql.SQLException;
    void 
                    closeLeaveCursorOpen() 
                    throws java.sql.SQLException;
    
                    public int 
                    executeUpdate(String) 
                    throws java.sql.SQLException;
    int 
                    executeUpdateInternal(String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    execute(String) 
                    throws java.sql.SQLException;
    boolean 
                    executeInternal(String) 
                    throws java.sql.SQLException;
    int 
                    getNumberOfColumns() 
                    throws java.sql.SQLException;
    Accessor[] 
                    getDescription() 
                    throws java.sql.SQLException;
    Accessor[] 
                    getDescriptionWithNames() 
                    throws java.sql.SQLException;
    byte 
                    getSqlKind();
    
                    public 
                    synchronized void 
                    clearDefines() 
                    throws java.sql.SQLException;
    void 
                    reparseOnRedefineIfNeeded() 
                    throws java.sql.SQLException;
    void 
                    defineColumnTypeInternal(int, int, int, boolean, String) 
                    throws java.sql.SQLException;
    void 
                    defineColumnTypeInternal(int, int, int, short, boolean, String) 
                    throws java.sql.SQLException;
    Accessor 
                    allocateAccessor(int, int, int, int, short, String, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    defineColumnType(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    defineColumnType(int, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    defineColumnType(int, int, int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    defineColumnTypeBytes(int, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    defineColumnTypeChars(int, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    defineColumnType(int, int, String) 
                    throws java.sql.SQLException;
    void 
                    setCursorId(int) 
                    throws java.sql.SQLException;
    void 
                    setPrefetchInternal(int, boolean, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setRowPrefetch(int) 
                    throws java.sql.SQLException;
    int 
                    getPrefetchInternal(boolean);
    
                    public 
                    synchronized int 
                    getRowPrefetch();
    
                    public void 
                    setFixedString(boolean);
    
                    public boolean 
                    getFixedString();
    void 
                    check_row_prefetch_changed() 
                    throws java.sql.SQLException;
    void 
                    setDefinesInitialized(boolean);
    void 
                    printState(String) 
                    throws java.sql.SQLException;
    void 
                    checkValidRowsStatus() 
                    throws java.sql.SQLException;
    void 
                    cleanupDefines();
    
                    public 
                    synchronized int 
                    getMaxFieldSize() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setMaxFieldSize(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getMaxRows() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setMaxRows(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setEscapeProcessing(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getQueryTimeout() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized 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;
    void 
                    foundPlsqlCompilerWarning() 
                    throws java.sql.SQLException;
    
                    public void 
                    setCursorName(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getResultSet() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getUpdateCount() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getMoreResults() 
                    throws java.sql.SQLException;
    
                    public int 
                    sendBatch() 
                    throws java.sql.SQLException;
    void 
                    prepareForNewResults(boolean, boolean) 
                    throws java.sql.SQLException;
    void 
                    reopenStreams() 
                    throws java.sql.SQLException;
    void 
                    endOfResultSet(boolean) 
                    throws java.sql.SQLException;
    boolean 
                    wasNullValue() 
                    throws java.sql.SQLException;
    int 
                    getColumnIndex(String) 
                    throws java.sql.SQLException;
    int 
                    getInternalType(int) 
                    throws java.sql.SQLException;
    void 
                    describe() 
                    throws java.sql.SQLException;
    void 
                    freeLine() 
                    throws java.sql.SQLException;
    void 
                    closeUsedStreams(int) 
                    throws java.sql.SQLException;
    
                    final void 
                    ensureOpen() 
                    throws java.sql.SQLException;
    void 
                    allocateTmpByteArray();
    
                    public 
                    synchronized void 
                    setFetchDirection(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getFetchDirection() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized 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 java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setResultSetCache(oracle.jdbc.OracleResultSetCache) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setResultSetCache(OracleResultSetCache) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized OracleResultSetCache 
                    getResultSetCache() 
                    throws java.sql.SQLException;
    void 
                    initBatch();
    int 
                    getBatchSize();
    void 
                    addBatchItem(String);
    String 
                    getBatchItem(int);
    void 
                    clearBatchItems();
    void 
                    checkIfJdbcBatchExists() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    addBatch(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    clearBatch() 
                    throws java.sql.SQLException;
    
                    public int[] 
                    executeBatch() 
                    throws java.sql.SQLException;
    
                    public int 
                    copyBinds(java.sql.Statement, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    notifyCloseRset() 
                    throws java.sql.SQLException;
    
                    public String 
                    getOriginalSql() 
                    throws java.sql.SQLException;
    void 
                    doScrollExecuteCommon() 
                    throws java.sql.SQLException;
    void 
                    allocateRowidAccessor() 
                    throws java.sql.SQLException;
    OracleResultSet 
                    doScrollStmtExecuteQuery() 
                    throws java.sql.SQLException;
    void 
                    processDmlReturningBind() 
                    throws java.sql.SQLException;
    void 
                    allocateDmlReturnStorage();
    void 
                    fetchDmlReturnParams() 
                    throws java.sql.SQLException;
    void 
                    setupReturnParamAccessors();
    void 
                    registerReturnParameterInternal(int, int, int, int, short, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setAutoRefetch(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoRefetch() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    creationState();
    
                    public boolean 
                    isColumnSetNull(int);
    
                    public boolean 
                    isNCHAR(int) 
                    throws java.sql.SQLException;
    void 
                    addChild(OracleStatement);
    
                    public boolean 
                    getMoreResults(int) 
                    throws java.sql.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 int 
                    getcacheState();
    
                    public int 
                    getstatementType();
    
                    public boolean 
                    getserverCursor();
    void 
                    initializeIndicatorSubRange();
    
                    private void 
                    autoKeyRegisterReturnParams() 
                    throws java.sql.SQLException;
    
                    private 
                    final void 
                    setNonAutoKey();
    void 
                    saveDefineBuffersIfRequired(char[], byte[], short[], boolean) 
                    throws java.sql.SQLException;
    
                    final void 
                    checkTypeForAutoKey(int) 
                    throws java.sql.SQLException;
    void 
                    addToTempLobsToFree(oracle.sql.CLOB);
    void 
                    addToTempLobsToFree(oracle.sql.BLOB);
    void 
                    addToOldTempLobsToFree(oracle.sql.CLOB);
    void 
                    addToOldTempLobsToFree(oracle.sql.BLOB);
    void 
                    cleanAllTempLobs();
    void 
                    cleanOldTempLobs();
    void 
                    cleanTempClobs(java.util.ArrayList);
    void 
                    cleanTempBlobs(java.util.ArrayList);
    java.util.TimeZone 
                    getDefaultTimeZone();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/ScrollRsetStatement.class

                    package oracle.jdbc.driver;

                    abstract 
                    interface ScrollRsetStatement {
    
                    public 
                    abstract java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    notifyCloseRset() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    copyBinds(java.sql.Statement, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getOriginalSql() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract OracleResultSetCache 
                    getResultSetCache() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setAutoRefetch(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getAutoRefetch() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getMaxFieldSize() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/Accessor.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class Accessor {
    
                    static 
                    final int 
                    FIXED_CHAR = 999;
    
                    static 
                    final int 
                    CHAR = 96;
    
                    static 
                    final int 
                    VARCHAR = 1;
    
                    static 
                    final int 
                    VCS = 9;
    
                    static 
                    final int 
                    LONG = 8;
    
                    static 
                    final int 
                    NUMBER = 2;
    
                    static 
                    final int 
                    VARNUM = 6;
    
                    static 
                    final int 
                    BINARY_FLOAT = 100;
    
                    static 
                    final int 
                    BINARY_DOUBLE = 101;
    
                    static 
                    final int 
                    RAW = 23;
    
                    static 
                    final int 
                    VBI = 15;
    
                    static 
                    final int 
                    LONG_RAW = 24;
    
                    static 
                    final int 
                    ROWID = 104;
    
                    static 
                    final int 
                    ROWID_THIN = 11;
    
                    static 
                    final int 
                    RESULT_SET = 102;
    
                    static 
                    final int 
                    RSET = 116;
    
                    static 
                    final int 
                    DATE = 12;
    
                    static 
                    final int 
                    BLOB = 113;
    
                    static 
                    final int 
                    CLOB = 112;
    
                    static 
                    final int 
                    BFILE = 114;
    
                    static 
                    final int 
                    NAMED_TYPE = 109;
    
                    static 
                    final int 
                    REF_TYPE = 111;
    
                    static 
                    final int 
                    TIMESTAMP = 180;
    
                    static 
                    final int 
                    TIMESTAMPTZ = 181;
    
                    static 
                    final int 
                    TIMESTAMPLTZ = 231;
    
                    static 
                    final int 
                    INTERVALYM = 182;
    
                    static 
                    final int 
                    INTERVALDS = 183;
    
                    static 
                    final int 
                    UROWID = 208;
    
                    static 
                    final int 
                    PLSQL_INDEX_TABLE = 998;
    
                    static 
                    final int 
                    T2S_OVERLONG_RAW = 997;
    
                    static 
                    final int 
                    SET_CHAR_BYTES = 996;
    
                    static 
                    final int 
                    NULL_TYPE = 995;
    
                    static 
                    final int 
                    DML_RETURN_PARAM = 994;
    
                    static 
                    final int 
                    ONLY_FORM_USABLE = 0;
    
                    static 
                    final int 
                    NOT_USABLE = 1;
    
                    static 
                    final int 
                    NO_NEED_TO_PREPARE = 2;
    
                    static 
                    final int 
                    NEED_TO_PREPARE = 3;
    OracleStatement 
                    statement;
    boolean 
                    outBind;
    int 
                    internalType;
    int 
                    internalTypeMaxLength;
    boolean 
                    isStream;
    boolean 
                    isColumnNumberAware;
    short 
                    formOfUse;
    oracle.jdbc.oracore.OracleType 
                    internalOtype;
    int 
                    externalType;
    String 
                    internalTypeName;
    String 
                    columnName;
    int 
                    describeType;
    int 
                    describeMaxLength;
    boolean 
                    nullable;
    int 
                    precision;
    int 
                    scale;
    int 
                    flags;
    int 
                    contflag;
    int 
                    total_elems;
    oracle.jdbc.oracore.OracleType 
                    describeOtype;
    String 
                    describeTypeName;
    int 
                    definedColumnType;
    int 
                    definedColumnSize;
    int 
                    oacmxl;
    byte[] 
                    rowSpaceByte;
    char[] 
                    rowSpaceChar;
    short[] 
                    rowSpaceIndicator;
    int 
                    columnIndex;
    int 
                    lengthIndex;
    int 
                    indicatorIndex;
    int 
                    columnIndexLastRow;
    int 
                    lengthIndexLastRow;
    int 
                    indicatorIndexLastRow;
    int 
                    byteLength;
    int 
                    charLength;
    int 
                    defineType;
    boolean 
                    isDMLReturnedParam;
    int 
                    lastRowProcessed;
    boolean 
                    isUseLess;
    int 
                    physicalColumnIndex;
    boolean 
                    isNullByDescribe;
    void Accessor();
    void 
                    setOffsets(int);
    void 
                    init(OracleStatement, int, int, short, boolean) 
                    throws java.sql.SQLException;
    
                    abstract void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    void 
                    initForDescribe(int, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDescribe(int, int, boolean, int, int, int, int, int, short, String) 
                    throws java.sql.SQLException;
    OracleInputStream 
                    initForNewRow() 
                    throws java.sql.SQLException;
    int 
                    useForDataAccessIfPossible(int, int, int, String) 
                    throws java.sql.SQLException;
    boolean 
                    useForDescribeIfPossible(int, int, boolean, int, int, int, int, int, short, String) 
                    throws java.sql.SQLException;
    void 
                    setFormOfUse(short);
    void 
                    updateColumnNumber(int);
    
                    public String 
                    toString();
    void 
                    unimpl(String) 
                    throws java.sql.SQLException;
    boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    short 
                    getShort(int) 
                    throws java.sql.SQLException;
    int 
                    getInt(int) 
                    throws java.sql.SQLException;
    long 
                    getLong(int) 
                    throws java.sql.SQLException;
    float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    byte[] 
                    privateGetBytes(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getAnyDataEmbeddedObject(int) 
                    throws java.sql.SQLException;
    java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum[] 
                    getOraclePlsqlIndexTable(int) 
                    throws java.sql.SQLException;
    boolean 
                    isNull(int) 
                    throws java.sql.SQLException;
    void 
                    setNull(int) 
                    throws java.sql.SQLException;
    void 
                    fetchNextColumns() 
                    throws java.sql.SQLException;
    void 
                    calculateSizeTmpByteArray();
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    readStream(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    initMetadata() 
                    throws java.sql.SQLException;
    void 
                    setDisplaySize(int) 
                    throws java.sql.SQLException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/T4CTTIoac.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIoac {
    
                    static 
                    final short 
                    UACFIND = 1;
    
                    static 
                    final short 
                    UACFALN = 2;
    
                    static 
                    final short 
                    UACFRCP = 4;
    
                    static 
                    final short 
                    UACFBBV = 8;
    
                    static 
                    final short 
                    UACFNCP = 16;
    
                    static 
                    final short 
                    UACFBLP = 32;
    
                    static 
                    final short 
                    UACFARR = 64;
    
                    static 
                    final short 
                    UACFIGN = 128;
    
                    static 
                    final short 
                    UACFNSCL = 1;
    
                    static 
                    final short 
                    UACFBUC = 2;
    
                    static 
                    final short 
                    UACFSKP = 4;
    
                    static 
                    final short 
                    UACFCHRCNT = 8;
    
                    static 
                    final short 
                    UACFNOADJ = 16;
    
                    static 
                    final short 
                    UACFCUS = 4096;
    
                    static 
                    final byte[] 
                    NO_BYTES;
    boolean 
                    isStream;
    int 
                    ncs;
    short 
                    formOfUse;
    
                    static int 
                    maxBindArrayLength;
    T4CMAREngine 
                    meg;
    short 
                    oacdty;
    short 
                    oacflg;
    short 
                    oacpre;
    short 
                    oacscl;
    int 
                    oacmxl;
    int 
                    oacmxlc;
    int 
                    oacmal;
    int 
                    oacfl2;
    byte[] 
                    oactoid;
    int 
                    oactoidl;
    int 
                    oacvsn;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIoac(T4CMAREngine);
    void T4CTTIoac(T4CTTIoac);
    boolean 
                    isOldSufficient(T4CTTIoac);
    boolean 
                    isNType();
    void 
                    unmarshal() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    init(NamedTypeAccessor);
    void 
                    init(PlsqlIndexTableAccessor);
    void 
                    initIbt(short, int, int);
    void 
                    init(oracle.jdbc.oracore.OracleTypeADT, int, int);
    void 
                    init(short, int, short, short, short) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal() 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    isStream() 
                    throws java.sql.SQLException;
    void 
                    print(int, int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleInputStream.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    synchronized 
                    class OracleInputStream 
                    extends OracleBufferedStream {
    OracleStatement 
                    statement;
    int 
                    columnIndex;
    Accessor 
                    accessor;
    OracleInputStream 
                    nextStream;
    boolean 
                    hasBeenOpen;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    protected void OracleInputStream(OracleStatement, int, Accessor);
    
                    public String 
                    toString();
    
                    public boolean 
                    needBytes() 
                    throws java.io.IOException;
    
                    public boolean 
                    isNull() 
                    throws java.io.IOException;
    
                    public boolean 
                    isClosed();
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public 
                    abstract int 
                    getBytes() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleBufferedStream.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleBufferedStream 
                    extends java.io.InputStream {
    byte[] 
                    buf;
    int 
                    pos;
    int 
                    count;
    boolean 
                    closed;
    int 
                    chunkSize;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleBufferedStream(int);
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public boolean 
                    needBytes() 
                    throws java.io.IOException;
    
                    public int 
                    flushBytes(int);
    
                    public int 
                    writeBytes(byte[], int, int);
    
                    public 
                    synchronized int 
                    read() 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public 
                    synchronized int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    public int 
                    available() 
                    throws java.io.IOException;
    
                    public boolean 
                    isNull() 
                    throws java.io.IOException;
    
                    public 
                    synchronized void 
                    mark(int);
    
                    public 
                    synchronized void 
                    reset() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    public long 
                    skip(int) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleResultSetImpl.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleResultSetImpl 
                    extends BaseResultSet {
    PhysicalConnection 
                    connection;
    OracleStatement 
                    statement;
    boolean 
                    closed;
    boolean 
                    explicitly_closed;
    boolean 
                    m_emptyRset;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleResultSetImpl(PhysicalConnection, OracleStatement) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    private boolean 
                    close_or_fetch_from_next(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public int 
                    getRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized short 
                    getShort(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getInt(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    getLong(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    
                    synchronized byte[] 
                    privateGetBytes(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBfile(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Ref 
                    getRef(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Blob 
                    getBlob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Clob 
                    getClob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.Reader 
                    getCharacterStream(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.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setFetchSize(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getFetchSize() 
                    throws java.sql.SQLException;
    void 
                    internal_close(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    boolean 
                    isEmptyResultSet();
    int 
                    getValidRows();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/BaseResultSet.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class BaseResultSet 
                    extends OracleResultSet {
    java.sql.SQLWarning 
                    sqlWarning;
    boolean 
                    autoRefetch;
    boolean 
                    close_statement_on_close;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    void BaseResultSet();
    
                    public 
                    synchronized String 
                    getCursorName() 
                    throws java.sql.SQLException;
    
                    public void 
                    closeStatementOnClose();
    
                    public void 
                    beforeFirst() 
                    throws java.sql.SQLException;
    
                    public void 
                    afterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    first() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    last() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    relative(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public void 
                    setFetchDirection(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getFetchDirection() 
                    throws java.sql.SQLException;
    
                    public int 
                    getType() 
                    throws java.sql.SQLException;
    
                    public int 
                    getConcurrency() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    clearWarnings() 
                    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 
                    updateString(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBytes(int, byte[]) 
                    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 
                    updateAsciiStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBinaryStream(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 
                    updateOracleObject(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateROWID(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateNUMBER(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateDATE(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateARRAY(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateSTRUCT(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateOPAQUE(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateREF(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCHAR(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRAW(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBLOB(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCLOB(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBFILE(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateINTERVALYM(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateINTERVALDS(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTIMESTAMP(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTIMESTAMPTZ(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTIMESTAMPLTZ(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBfile(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCustomDatum(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateORAData(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRef(int, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBlob(int, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateClob(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateArray(int, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    insertRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    deleteRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    refreshRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    cancelRowUpdates() 
                    throws java.sql.SQLException;
    
                    public void 
                    moveToInsertRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    moveToCurrentRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    setAutoRefetch(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoRefetch() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/Binder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class Binder {
    short 
                    type;
    int 
                    bytelen;
    void Binder();
    
                    abstract Binder 
                    copyingBinder();
    
                    abstract void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean) 
                    throws java.sql.SQLException;
    
                    public String 
                    toString();
}

                

oracle/jdbc/driver/OracleResultSet.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    synchronized 
                    class OracleResultSet 
                    implements oracle.jdbc.internal.OracleResultSet {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    public 
                    static 
                    final int 
                    FETCH_FORWARD = 1000;
    
                    public 
                    static 
                    final int 
                    FETCH_REVERSE = 1001;
    
                    public 
                    static 
                    final int 
                    FETCH_UNKNOWN = 1002;
    
                    public 
                    static 
                    final int 
                    TYPE_FORWARD_ONLY = 1003;
    
                    public 
                    static 
                    final int 
                    TYPE_SCROLL_INSENSITIVE = 1004;
    
                    public 
                    static 
                    final int 
                    TYPE_SCROLL_SENSITIVE = 1005;
    
                    public 
                    static 
                    final int 
                    CONCUR_READ_ONLY = 1007;
    
                    public 
                    static 
                    final int 
                    CONCUR_UPDATABLE = 1008;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleResultSet();
    int 
                    getFirstUserColumnIndex() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    closeStatementOnClose() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    getBfile(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    getCursor(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ROWID 
                    getROWID(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.NUMBER 
                    getNUMBER(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.DATE 
                    getDATE(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    getOracleObject(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ARRAY 
                    getARRAY(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.STRUCT 
                    getSTRUCT(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.OPAQUE 
                    getOPAQUE(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.REF 
                    getREF(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CHAR 
                    getCHAR(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.RAW 
                    getRAW(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BLOB 
                    getBLOB(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    getCLOB(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BFILE 
                    getBFILE(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BFILE 
                    getBfile(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CustomDatum 
                    getCustomDatum(String, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ORAData 
                    getORAData(String, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateOracleObject(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateROWID(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateNUMBER(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateDATE(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateINTERVALYM(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateINTERVALDS(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTIMESTAMP(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTIMESTAMPTZ(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTIMESTAMPLTZ(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateARRAY(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateSTRUCT(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateOPAQUE(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateREF(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCHAR(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateRAW(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBLOB(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCLOB(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBFILE(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBfile(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCustomDatum(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateORAData(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateRef(int, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBlob(int, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateClob(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateArray(int, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateROWID(String, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateNUMBER(String, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateDATE(String, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateOracleObject(String, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateARRAY(String, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateSTRUCT(String, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateOPAQUE(String, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateREF(String, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCHAR(String, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRAW(String, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBLOB(String, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCLOB(String, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBFILE(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBfile(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCustomDatum(String, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateORAData(String, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRef(String, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBlob(String, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateClob(String, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateArray(String, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setAutoRefetch(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getAutoRefetch() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    clearWarnings() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getCursorName() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract short 
                    getShort(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getInt(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract long 
                    getLong(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(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 java.math.BigDecimal 
                    getBigDecimal(String, int) 
                    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 java.io.InputStream 
                    getAsciiStream(String) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getUnicodeStream(String) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Ref 
                    getRef(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Blob 
                    getBlob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Clob 
                    getClob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMP 
                    getTIMESTAMP(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALYM 
                    getINTERVALYM(String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALDS 
                    getINTERVALDS(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.io.Reader 
                    getCharacterStream(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.Array 
                    getArray(String) 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    getBigDecimal(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 
                    abstract boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    beforeFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    afterLast() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    first() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    last() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getRow() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    relative(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setFetchDirection(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getFetchDirection() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setFetchSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getFetchSize() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getType() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getConcurrency() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    insertRow() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateRow() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    deleteRow() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    refreshRow() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    moveToInsertRow() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    cancelRowUpdates() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    moveToCurrentRow() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    rowUpdated() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    rowInserted() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    rowDeleted() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateNull(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBoolean(int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateByte(int, byte) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateShort(int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateInt(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateLong(int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateFloat(int, float) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateDouble(int, double) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBigDecimal(int, java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateString(int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBytes(int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateDate(int, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTime(int, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTimestamp(int, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateAsciiStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBinaryStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCharacterStream(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateObject(int, Object, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateObject(int, Object) 
                    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 
                    updateString(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBytes(String, byte[]) 
                    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 
                    updateAsciiStream(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBinaryStream(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 
                    abstract java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
    
                    public java.net.URL 
                    getURL(String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleSql.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleSql {
    
                    static 
                    final int 
                    UNINITIALIZED = -1;
    
                    static 
                    final String[] 
                    EMPTY_LIST;
    DBConversion 
                    conversion;
    String 
                    originalSql;
    String 
                    parameterSql;
    String 
                    utickSql;
    String 
                    processedSql;
    String 
                    rowidSql;
    String 
                    actualSql;
    byte[] 
                    sqlBytes;
    byte 
                    sqlKind;
    int 
                    parameterCount;
    boolean 
                    currentConvertNcharLiterals;
    boolean 
                    currentProcessEscapes;
    boolean 
                    includeRowid;
    String[] 
                    parameterList;
    char[] 
                    currentParameter;
    boolean 
                    isV8Compatible;
    int 
                    bindParameterCount;
    String[] 
                    bindParameterList;
    int 
                    cachedBindParameterCount;
    String[] 
                    cachedBindParameterList;
    String 
                    cachedParameterSql;
    String 
                    cachedUtickSql;
    String 
                    cachedProcessedSql;
    String 
                    cachedRowidSql;
    String 
                    cachedActualSql;
    byte[] 
                    cachedSqlBytes;
    int 
                    selectEndIndex;
    int 
                    orderByStartIndex;
    int 
                    orderByEndIndex;
    int 
                    whereStartIndex;
    int 
                    whereEndIndex;
    int 
                    forUpdateStartIndex;
    int 
                    forUpdateEndIndex;
    
                    final int[] 
                    ncharLiteralLocation;
    int 
                    lastNcharLiteralLocation;
    
                    static 
                    final String 
                    paramPrefix = rowid;
    int 
                    paramSuffix;
    StringBuffer 
                    stringBufferForScrollableStatement;
    
                    private 
                    static 
                    final int 
                    cMax = 127;
    
                    private 
                    static 
                    final int[][] 
                    TRANSITION;
    
                    private 
                    static 
                    final int[][] 
                    ACTION;
    
                    private 
                    static 
                    final int 
                    NO_ACTION = 0;
    
                    private 
                    static 
                    final int 
                    DML_ACTION = 1;
    
                    private 
                    static 
                    final int 
                    PLSQL_ACTION = 2;
    
                    private 
                    static 
                    final int 
                    CALL_ACTION = 3;
    
                    private 
                    static 
                    final int 
                    SELECT_ACTION = 4;
    
                    private 
                    static 
                    final int 
                    ORDER_ACTION = 7;
    
                    private 
                    static 
                    final int 
                    ORDER_BY_ACTION = 8;
    
                    private 
                    static 
                    final int 
                    WHERE_ACTION = 6;
    
                    private 
                    static 
                    final int 
                    FOR_ACTION = 9;
    
                    private 
                    static 
                    final int 
                    FOR_UPDATE_ACTION = 10;
    
                    private 
                    static 
                    final int 
                    OTHER_ACTION = 5;
    
                    private 
                    static 
                    final int 
                    QUESTION_ACTION = 11;
    
                    private 
                    static 
                    final int 
                    PARAMETER_ACTION = 12;
    
                    private 
                    static 
                    final int 
                    END_PARAMETER_ACTION = 13;
    
                    private 
                    static 
                    final int 
                    START_NCHAR_LITERAL_ACTION = 14;
    
                    private 
                    static 
                    final int 
                    END_NCHAR_LITERAL_ACTION = 15;
    int 
                    current_argument;
    int 
                    i;
    int 
                    length;
    char 
                    c;
    boolean 
                    first;
    boolean 
                    in_string;
    String 
                    odbc_sql;
    StringBuffer 
                    oracle_sql;
    StringBuffer 
                    token_buffer;
    boolean 
                    isLocate;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleSql(DBConversion);
    void 
                    initialize(String) 
                    throws java.sql.SQLException;
    String 
                    getOriginalSql();
    boolean 
                    setNamedParameters(int, String[]) 
                    throws java.sql.SQLException;
    void 
                    resetNamedParameters();
    String 
                    getSql(boolean, boolean) 
                    throws java.sql.SQLException;
    String 
                    getRevisedSql() 
                    throws java.sql.SQLException;
    String 
                    removeForUpdate(String) 
                    throws java.sql.SQLException;
    void 
                    appendForUpdate(StringBuffer) 
                    throws java.sql.SQLException;
    String 
                    getInsertSqlForUpdatableResultSet(UpdatableResultSet) 
                    throws java.sql.SQLException;
    String 
                    getRefetchSqlForScrollableResultSet(ScrollableResultSet, int) 
                    throws java.sql.SQLException;
    String 
                    getUpdateSqlForUpdatableResultSet(UpdatableResultSet, int, Object[], int[]) 
                    throws java.sql.SQLException;
    String 
                    getDeleteSqlForUpdatableResultSet(UpdatableResultSet) 
                    throws java.sql.SQLException;
    byte[] 
                    getSqlBytes(boolean, boolean) 
                    throws java.sql.SQLException;
    byte 
                    getSqlKind() 
                    throws java.sql.SQLException;
    int 
                    getParameterCount() 
                    throws java.sql.SQLException;
    String[] 
                    getParameterList() 
                    throws java.sql.SQLException;
    void 
                    setIncludeRowid(boolean);
    
                    public String 
                    toString();
    
                    private String 
                    hexUnicode(int) 
                    throws java.sql.SQLException;
    String 
                    convertNcharLiterals(String) 
                    throws java.sql.SQLException;
    void 
                    computeBasicInfo(String) 
                    throws java.sql.SQLException;
    
                    private String 
                    addRowid(String) 
                    throws java.sql.SQLException;
    String 
                    parse(String) 
                    throws java.sql.SQLException;
    void 
                    handleODBC() 
                    throws java.sql.SQLException;
    void 
                    handleToken(String) 
                    throws java.sql.SQLException;
    void 
                    handleFunction() 
                    throws java.sql.SQLException;
    void 
                    handleCall() 
                    throws java.sql.SQLException;
    void 
                    handleTimestamp() 
                    throws java.sql.SQLException;
    void 
                    handleTime() 
                    throws java.sql.SQLException;
    void 
                    handleDate() 
                    throws java.sql.SQLException;
    void 
                    handleEscape() 
                    throws java.sql.SQLException;
    void 
                    handleScalarFunction() 
                    throws java.sql.SQLException;
    void 
                    usingFunctionName(String) 
                    throws java.sql.SQLException;
    void 
                    replacingFunctionPrefix(String) 
                    throws java.sql.SQLException;
    void 
                    handleOuterJoin() 
                    throws java.sql.SQLException;
    String 
                    nextArgument();
    void 
                    appendChar(StringBuffer, char);
    void 
                    skipSpace();
    String 
                    generateParameterName();
    
                    static boolean 
                    isValidPlsqlWarning(String) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    isValidObjectName(String) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    main(String[]);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleReturnResultSet.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleReturnResultSet 
                    extends BaseResultSet {
    OracleStatement 
                    statement;
    boolean 
                    closed;
    Accessor[] 
                    returnAccessors;
    void OracleReturnResultSet(OracleStatement) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized short 
                    getShort(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getInt(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    getLong(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBfile(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Ref 
                    getRef(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Blob 
                    getBlob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Clob 
                    getClob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.Reader 
                    getCharacterStream(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.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public int 
                    getRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setFetchSize(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getFetchSize() 
                    throws java.sql.SQLException;
    boolean 
                    isEmptyResultSet();
}

                

oracle/jdbc/driver/AutoKeyInfo.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class AutoKeyInfo 
                    extends OracleResultSetMetaData {
    String 
                    originalSql;
    String 
                    newSql;
    String 
                    tableName;
    String[] 
                    columnNames;
    int[] 
                    columnIndexes;
    int 
                    numColumns;
    String[] 
                    tableColumnNames;
    int[] 
                    tableColumnTypes;
    int[] 
                    tableMaxLengths;
    boolean[] 
                    tableNullables;
    short[] 
                    tableFormOfUses;
    int[] 
                    tablePrecisions;
    int[] 
                    tableScales;
    String[] 
                    tableTypeNames;
    int 
                    autoKeyType;
    
                    static 
                    final int 
                    KEYFLAG = 0;
    
                    static 
                    final int 
                    COLUMNAME = 1;
    
                    static 
                    final int 
                    COLUMNINDEX = 2;
    int[] 
                    returnTypes;
    Accessor[] 
                    returnAccessors;
    void AutoKeyInfo(String);
    void AutoKeyInfo(String, String[]);
    void AutoKeyInfo(String, int[]);
    String 
                    getNewSql() 
                    throws java.sql.SQLException;
    
                    private String 
                    getNewSqlByColumnName() 
                    throws java.sql.SQLException;
    
                    private String 
                    getNewSqlByColumnIndexes() 
                    throws java.sql.SQLException;
    
                    private 
                    final int 
                    getReturnParamTypeCode(int, String, int[]) 
                    throws java.sql.SQLException;
    
                    static 
                    final boolean 
                    isInsertSqlStmt(String) 
                    throws java.sql.SQLException;
    String 
                    getTableName() 
                    throws java.sql.SQLException;
    void 
                    allocateSpaceForDescribedData(int) 
                    throws java.sql.SQLException;
    void 
                    fillDescribedData(int, String, int, int, boolean, short, int, int, String) 
                    throws java.sql.SQLException;
    void 
                    initMetaData(OracleReturnResultSet) 
                    throws java.sql.SQLException;
    void 
                    initMetaDataKeyFlag() 
                    throws java.sql.SQLException;
    void 
                    initMetaDataColumnIndexes() 
                    throws java.sql.SQLException;
    int 
                    getValidColumnIndex(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getColumnCount() 
                    throws java.sql.SQLException;
    
                    public String 
                    getColumnName(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    getTableName(int) 
                    throws java.sql.SQLException;
    Accessor[] 
                    getDescription() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/OracleResultSetMetaData.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleResultSetMetaData 
                    implements oracle.jdbc.internal.OracleResultSetMetaData {
    PhysicalConnection 
                    connection;
    OracleStatement 
                    statement;
    int 
                    m_beginColumnIndex;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleResultSetMetaData();
    
                    public void OracleResultSetMetaData(PhysicalConnection, OracleStatement) 
                    throws java.sql.SQLException;
    void OracleResultSetMetaData(PhysicalConnection, OracleStatement, int) 
                    throws java.sql.SQLException;
    
                    public void OracleResultSetMetaData(OracleResultSet) 
                    throws java.sql.SQLException;
    
                    public int 
                    getColumnCount() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isAutoIncrement(int) 
                    throws java.sql.SQLException;
    int 
                    getValidColumnIndex(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;
    
                    public boolean 
                    isNCHAR(int) 
                    throws java.sql.SQLException;
    Accessor[] 
                    getDescription() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleResultSetCache.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    interface OracleResultSetCache 
                    extends oracle.jdbc.internal.OracleResultSetCache {
}

                

oracle/jdbc/driver/T4CMAREngine.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CMAREngine {
    
                    static 
                    final int 
                    TTCC_MXL = 252;
    
                    static 
                    final int 
                    TTCC_ESC = 253;
    
                    static 
                    final int 
                    TTCC_LNG = 254;
    
                    static 
                    final int 
                    TTCC_ERR = 255;
    
                    static 
                    final int 
                    TTCC_MXIN = 64;
    
                    static 
                    final byte 
                    TTCLXMULTI = 1;
    
                    static 
                    final byte 
                    TTCLXMCONV = 2;
    T4CTypeRep 
                    types;
    oracle.net.ns.Communication 
                    net;
    DBConversion 
                    conv;
    short 
                    versionNumber;
    byte 
                    proSvrVer;
    java.io.InputStream 
                    inStream;
    java.io.OutputStream 
                    outStream;
    
                    final byte[] 
                    ignored;
    
                    final byte[] 
                    tmpBuffer1;
    
                    final byte[] 
                    tmpBuffer2;
    
                    final byte[] 
                    tmpBuffer3;
    
                    final byte[] 
                    tmpBuffer4;
    
                    final byte[] 
                    tmpBuffer5;
    
                    final byte[] 
                    tmpBuffer6;
    
                    final byte[] 
                    tmpBuffer7;
    
                    final byte[] 
                    tmpBuffer8;
    
                    final int[] 
                    retLen;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    
                    static String 
                    toHex(long, int);
    
                    static String 
                    toHex(byte);
    
                    static String 
                    toHex(short);
    
                    static String 
                    toHex(int);
    
                    static String 
                    toHex(byte[], int);
    
                    static String 
                    toHex(byte[]);
    void T4CMAREngine(oracle.net.ns.Communication) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    initBuffers();
    void 
                    marshalSB1(byte) 
                    throws java.io.IOException;
    void 
                    marshalUB1(short) 
                    throws java.io.IOException;
    void 
                    marshalSB2(short) 
                    throws java.io.IOException;
    void 
                    marshalUB2(int) 
                    throws java.io.IOException;
    void 
                    marshalSB4(int) 
                    throws java.io.IOException;
    void 
                    marshalUB4(long) 
                    throws java.io.IOException;
    void 
                    marshalSB8(long) 
                    throws java.io.IOException;
    void 
                    marshalSWORD(int) 
                    throws java.io.IOException;
    void 
                    marshalUWORD(long) 
                    throws java.io.IOException;
    void 
                    marshalB1Array(byte[]) 
                    throws java.io.IOException;
    void 
                    marshalB1Array(byte[], int, int) 
                    throws java.io.IOException;
    void 
                    marshalUB4Array(long[]) 
                    throws java.io.IOException;
    void 
                    marshalO2U(boolean) 
                    throws java.io.IOException;
    void 
                    marshalNULLPTR() 
                    throws java.io.IOException;
    void 
                    marshalPTR() 
                    throws java.io.IOException;
    void 
                    marshalCHR(byte[]) 
                    throws java.io.IOException;
    void 
                    marshalCHR(byte[], int, int) 
                    throws java.io.IOException;
    void 
                    marshalCLR(byte[], int) 
                    throws java.io.IOException;
    void 
                    marshalCLR(byte[], int, int) 
                    throws java.io.IOException;
    void 
                    marshalKEYVAL(byte[][], int[], byte[][], int[], byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshalKEYVAL(byte[][], byte[][], byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshalDALC(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    addPtr(byte) 
                    throws java.io.IOException;
    byte 
                    value2Buffer(int, byte[], byte) 
                    throws java.io.IOException;
    byte 
                    value2Buffer(long, byte[], byte) 
                    throws java.io.IOException;
    void 
                    reverseArray(byte[], byte);
    byte 
                    unmarshalSB1() 
                    throws java.sql.SQLException, java.io.IOException;
    short 
                    unmarshalUB1() 
                    throws java.sql.SQLException, java.io.IOException;
    short 
                    unmarshalSB2() 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalUB2() 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalUCS2(byte[], long) 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalSB4() 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    unmarshalUB4() 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalSB4(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    unmarshalSB8() 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalRefCursor(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalSWORD() 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    unmarshalUWORD() 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    unmarshalNBytes(int) 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalNBytes(byte[], int, int) 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    getNBytes(byte[], int, int) 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    getNBytes(int) 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    unmarshalTEXT(int) 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    unmarshalCHR(int) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    unmarshalCLR(byte[], int, int[]) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    unmarshalCLR(byte[], int, int[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    unmarshalCLR(int, int[]) 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalKEYVAL(byte[][], byte[][], int) 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    unmarshalBuffer(byte[], int, int) 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    unmarshalCLRforREFS() 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    escapeSequenceNull(int) 
                    throws java.sql.SQLException;
    int 
                    processIndicator(boolean, int) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    unmarshalDALC(byte[], int, int[]) 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    unmarshalDALC() 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    unmarshalDALC(int[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    buffer2Value(byte) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    buffer2Value(byte, java.io.ByteArrayInputStream) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/NamedTypeAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class NamedTypeAccessor 
                    extends TypeAccessor {
    void NamedTypeAccessor(OracleStatement, String, short, int, boolean) 
                    throws java.sql.SQLException;
    void NamedTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String) 
                    throws java.sql.SQLException;
    void NamedTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String, oracle.jdbc.oracore.OracleType) 
                    throws java.sql.SQLException;
    oracle.jdbc.oracore.OracleType 
                    otypeFromName(String) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/TypeAccessor.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class TypeAccessor 
                    extends Accessor {
    byte[][] 
                    pickledBytes;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void TypeAccessor();
    
                    abstract oracle.jdbc.oracore.OracleType 
                    otypeFromName(String) 
                    throws java.sql.SQLException;
    void 
                    initForDescribe(int, int, boolean, int, int, int, int, int, short, String) 
                    throws java.sql.SQLException;
    void 
                    setOffsets(int);
    byte[] 
                    pickledBytes(int);
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    void 
                    initMetadata() 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/PlsqlIndexTableAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class PlsqlIndexTableAccessor 
                    extends Accessor {
    int 
                    elementInternalType;
    int 
                    maxNumberOfElements;
    int 
                    elementMaxLen;
    int 
                    ibtValueIndex;
    int 
                    ibtIndicatorIndex;
    int 
                    ibtLengthIndex;
    int 
                    ibtMetaIndex;
    int 
                    ibtByteLength;
    int 
                    ibtCharLength;
    void PlsqlIndexTableAccessor(OracleStatement, int, int, int, int, short, boolean) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    Object[] 
                    getPlsqlIndexTable(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum[] 
                    getOraclePlsqlIndexTable(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/DBConversion$AsciiStream.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class DBConversion$AsciiStream 
                    extends OracleBufferedStream {
    void DBConversion$AsciiStream(DBConversion, char[], int, int);
    
                    public boolean 
                    needBytes();
}

                

oracle/jdbc/driver/DBConversion$UnicodeStream.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class DBConversion$UnicodeStream 
                    extends OracleBufferedStream {
    void DBConversion$UnicodeStream(DBConversion, char[], int, int);
    
                    public boolean 
                    needBytes();
}

                

oracle/jdbc/driver/DBConversion.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class DBConversion {
    
                    public 
                    static 
                    final boolean 
                    DO_CONVERSION_WITH_REPLACEMENT = 1;
    
                    public 
                    static 
                    final short 
                    ORACLE8_PROD_VERSION = 8030;
    
                    protected short 
                    serverNCharSetId;
    
                    protected short 
                    serverCharSetId;
    
                    protected short 
                    clientCharSetId;
    
                    protected oracle.sql.CharacterSet 
                    serverCharSet;
    
                    protected oracle.sql.CharacterSet 
                    serverNCharSet;
    
                    protected oracle.sql.CharacterSet 
                    clientCharSet;
    
                    protected oracle.sql.CharacterSet 
                    asciiCharSet;
    
                    protected boolean 
                    isServerCharSetFixedWidth;
    
                    protected boolean 
                    isServerNCharSetFixedWidth;
    
                    protected int 
                    c2sNlsRatio;
    
                    protected int 
                    s2cNlsRatio;
    
                    protected int 
                    sMaxCharSize;
    
                    protected int 
                    cMaxCharSize;
    
                    protected int 
                    maxNCharSize;
    
                    protected boolean 
                    isServerCSMultiByte;
    
                    public 
                    static 
                    final short 
                    DBCS_CHARSET = -1;
    
                    public 
                    static 
                    final short 
                    UCS2_CHARSET = -5;
    
                    public 
                    static 
                    final short 
                    ASCII_CHARSET = 1;
    
                    public 
                    static 
                    final short 
                    ISO_LATIN_1_CHARSET = 31;
    
                    public 
                    static 
                    final short 
                    AL24UTFFSS_CHARSET = 870;
    
                    public 
                    static 
                    final short 
                    UTF8_CHARSET = 871;
    
                    public 
                    static 
                    final short 
                    AL32UTF8_CHARSET = 873;
    
                    public 
                    static 
                    final short 
                    AL16UTF16_CHARSET = 2000;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void DBConversion(short, short, short) 
                    throws java.sql.SQLException;
    
                    public short 
                    getServerCharSetId();
    
                    public short 
                    getNCharSetId();
    
                    public boolean 
                    IsNCharFixedWith();
    
                    public short 
                    getClientCharSet();
    
                    public oracle.sql.CharacterSet 
                    getDbCharSetObj();
    
                    public oracle.sql.CharacterSet 
                    getDriverCharSetObj();
    
                    public oracle.sql.CharacterSet 
                    getDriverNCharSetObj();
    
                    public 
                    static 
                    final short 
                    findDriverCharSet(short, short);
    
                    public 
                    static 
                    final byte[] 
                    stringToDriverCharBytes(String, short) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    StringToCharBytes(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    CharBytesToString(byte[], int) 
                    throws java.sql.SQLException;
    
                    public String 
                    CharBytesToString(byte[], int, boolean) 
                    throws java.sql.SQLException;
    
                    public String 
                    NCharBytesToString(byte[], int) 
                    throws java.sql.SQLException;
    
                    public int 
                    javaCharsToCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    javaCharsToCHARBytes(char[], int, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    javaCharsToNCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    javaCharsToNCHARBytes(char[], int, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    protected int 
                    javaCharsToCHARBytes(char[], int, byte[], short) 
                    throws java.sql.SQLException;
    
                    protected int 
                    javaCharsToCHARBytes(char[], int, byte[], int, short, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    CHARBytesToJavaChars(byte[], int, char[], int, int[], int) 
                    throws java.sql.SQLException;
    
                    public int 
                    NCHARBytesToJavaChars(byte[], int, char[], int, int[], int) 
                    throws java.sql.SQLException;
    
                    static 
                    final int 
                    _CHARBytesToJavaChars(byte[], int, char[], int, short, int[], int, oracle.sql.CharacterSet, oracle.sql.CharacterSet, oracle.sql.CharacterSet, boolean) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    asciiBytesToCHARBytes(byte[]);
    
                    public int 
                    javaCharsToDbCsBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    javaCharsToDbCsBytes(char[], int, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    static 
                    final int 
                    dbCsBytesToJavaChars(byte[], int, char[], int, int, oracle.sql.CharacterSet) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    javaCharsToUcs2Bytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    javaCharsToUcs2Bytes(char[], int, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    ucs2BytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final byte[] 
                    stringToAsciiBytes(String);
    
                    public 
                    static 
                    final int 
                    asciiBytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    javaCharsToAsciiBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final boolean 
                    isCharSetMultibyte(short);
    
                    public int 
                    getMaxCharbyteSize();
    
                    public int 
                    getMaxNCharbyteSize();
    
                    public int 
                    _getMaxCharbyteSize(short);
    
                    public boolean 
                    isUcs2CharSet();
    
                    public 
                    static 
                    final int 
                    RAWBytesToHexChars(byte[], int, char[]);
    
                    public java.io.InputStream 
                    ConvertStream(java.io.InputStream, int);
    
                    public java.io.InputStream 
                    ConvertStream(java.io.InputStream, int, int);
    
                    public java.io.InputStream 
                    ConvertStream(java.io.Reader, int, int, short);
    
                    public java.io.Reader 
                    ConvertCharacterStream(java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    ConvertCharacterStream(java.io.InputStream, int, short) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    CharsToStream(char[], int, int, int) 
                    throws java.sql.SQLException;
    
                    static 
                    final void 
                    unexpectedCharset(short) 
                    throws java.sql.SQLException;
    
                    protected 
                    static 
                    final void 
                    catchBytesLen(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    protected 
                    static 
                    final void 
                    catchCharsLen(char[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final int 
                    getUtfLen(char);
    int 
                    encodedByteLength(String, boolean);
    int 
                    encodedByteLength(char[], boolean);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/UpdatableResultSet.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class UpdatableResultSet 
                    extends BaseResultSet {
    
                    static 
                    final int 
                    concurrencyType = 1008;
    
                    static 
                    final int 
                    beginColumnIndex = 1;
    PhysicalConnection 
                    connection;
    OracleResultSet 
                    resultSet;
    boolean 
                    isCachedRset;
    ScrollRsetStatement 
                    scrollStmt;
    java.sql.ResultSetMetaData 
                    rsetMetaData;
    
                    private int 
                    rsetType;
    
                    private int 
                    columnCount;
    
                    private OraclePreparedStatement 
                    deleteStmt;
    
                    private OraclePreparedStatement 
                    insertStmt;
    
                    private OraclePreparedStatement 
                    updateStmt;
    
                    private int[] 
                    indexColsChanged;
    
                    private Object[] 
                    rowBuffer;
    
                    private boolean[] 
                    m_nullIndicator;
    
                    private int[][] 
                    typeInfo;
    
                    private boolean 
                    isInserting;
    
                    private boolean 
                    isUpdating;
    
                    private int 
                    wasNull;
    
                    private 
                    static 
                    final int 
                    VALUE_NULL = 1;
    
                    private 
                    static 
                    final int 
                    VALUE_NOT_NULL = 2;
    
                    private 
                    static 
                    final int 
                    VALUE_UNKNOWN = 3;
    
                    private 
                    static 
                    final int 
                    VALUE_IN_RSET = 4;
    
                    private 
                    static 
                    final int 
                    ASCII_STREAM = 1;
    
                    private 
                    static 
                    final int 
                    BINARY_STREAM = 2;
    
                    private 
                    static 
                    final int 
                    UNICODE_STREAM = 3;
    
                    private 
                    static int 
                    _MIN_STREAM_SIZE;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void UpdatableResultSet(ScrollRsetStatement, ScrollableResultSet, int, int) 
                    throws java.sql.SQLException;
    void UpdatableResultSet(ScrollRsetStatement, OracleResultSetImpl, int, int) 
                    throws java.sql.SQLException;
    
                    private void 
                    init(ScrollRsetStatement, OracleResultSet, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    int 
                    getFirstUserColumnIndex();
    
                    public 
                    synchronized java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    clearWarnings() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    beforeFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    afterLast() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    first() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    last() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    relative(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized short 
                    getShort(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getInt(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    getLong(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Ref 
                    getRef(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Blob 
                    getBlob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Clob 
                    getClob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBfile(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFetchDirection(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getFetchDirection() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFetchSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized 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 
                    synchronized void 
                    insertRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    updateRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    deleteRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    refreshRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    cancelRowUpdates() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    moveToInsertRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    moveToCurrentRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    updateString(int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized 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 
                    updateBytes(int, byte[]) 
                    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 
                    updateAsciiStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    final boolean 
                    isStreamType(int);
    
                    public void 
                    updateBinaryStream(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 
                    synchronized void 
                    updateObject(int, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    updateOracleObject(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateROWID(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateNUMBER(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateDATE(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateINTERVALYM(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateINTERVALDS(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTIMESTAMP(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTIMESTAMPTZ(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTIMESTAMPLTZ(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateARRAY(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateSTRUCT(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateOPAQUE(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateREF(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCHAR(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRAW(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBLOB(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCLOB(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBFILE(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBfile(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCustomDatum(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateORAData(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRef(int, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBlob(int, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateClob(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateArray(int, java.sql.Array) 
                    throws java.sql.SQLException;
    int 
                    getColumnCount() 
                    throws java.sql.SQLException;
    java.sql.ResultSetMetaData 
                    getInternalMetadata() 
                    throws java.sql.SQLException;
    
                    private void 
                    cancelRowChanges() 
                    throws java.sql.SQLException;
    boolean 
                    isOnInsertRow();
    
                    private void 
                    cancelRowInserts();
    boolean 
                    isUpdatingRow();
    
                    private void 
                    clearRowBuffer();
    
                    private void 
                    setRowBufferAt(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    private void 
                    setRowBufferAt(int, Object, int[]) 
                    throws java.sql.SQLException;
    
                    private oracle.sql.Datum 
                    getRowBufferDatumAt(int) 
                    throws java.sql.SQLException;
    
                    private Object 
                    getRowBufferAt(int) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    isRowBufferUpdatedAt(int);
    
                    private void 
                    prepareInsertRowStatement() 
                    throws java.sql.SQLException;
    
                    private void 
                    prepareInsertRowBinds() 
                    throws java.sql.SQLException;
    
                    private void 
                    executeInsertRow() 
                    throws java.sql.SQLException;
    
                    private int 
                    getNumColumnsChanged() 
                    throws java.sql.SQLException;
    
                    private void 
                    prepareUpdateRowStatement(int) 
                    throws java.sql.SQLException;
    
                    private void 
                    prepareUpdateRowBinds(int) 
                    throws java.sql.SQLException;
    
                    private void 
                    executeUpdateRow() 
                    throws java.sql.SQLException;
    
                    private void 
                    prepareDeleteRowStatement() 
                    throws java.sql.SQLException;
    
                    private void 
                    prepareDeleteRowBinds() 
                    throws java.sql.SQLException;
    
                    private void 
                    executeDeleteRow() 
                    throws java.sql.SQLException;
    
                    private int 
                    prepareCompareSelfBinds(OraclePreparedStatement, int) 
                    throws java.sql.SQLException;
    
                    private int 
                    prepareSubqueryBinds(OraclePreparedStatement, int) 
                    throws java.sql.SQLException;
    
                    private void 
                    setIsNull(int);
    
                    private void 
                    setIsNull(boolean);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/ScrollableResultSet.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ScrollableResultSet 
                    extends BaseResultSet {
    PhysicalConnection 
                    connection;
    OracleResultSetImpl 
                    resultSet;
    ScrollRsetStatement 
                    scrollStmt;
    java.sql.ResultSetMetaData 
                    metadata;
    
                    private int 
                    rsetType;
    
                    private int 
                    rsetConcurency;
    
                    private int 
                    beginColumnIndex;
    
                    private int 
                    columnCount;
    
                    private int 
                    wasNull;
    OracleResultSetCache 
                    rsetCache;
    int 
                    currentRow;
    
                    private int 
                    numRowsCached;
    
                    private boolean 
                    allRowsCached;
    
                    private int 
                    lastRefetchSz;
    
                    private java.util.Vector 
                    refetchRowids;
    
                    private OraclePreparedStatement 
                    refetchStmt;
    
                    private int 
                    usrFetchDirection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void ScrollableResultSet(ScrollRsetStatement, OracleResultSetImpl, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    resetBeginColumnIndex();
    
                    synchronized java.sql.ResultSet 
                    getResultSet();
    
                    synchronized int 
                    removeRowInCache(int) 
                    throws java.sql.SQLException;
    
                    synchronized int 
                    refreshRowsInCache(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    beforeFirst() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    afterLast() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    first() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    last() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getRow() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    relative(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized short 
                    getShort(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getInt(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    getLong(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Ref 
                    getRef(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Blob 
                    getBlob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Clob 
                    getClob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBfile(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFetchDirection(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getFetchDirection() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFetchSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getFetchSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getType() 
                    throws java.sql.SQLException;
    
                    public int 
                    getConcurrency() 
                    throws java.sql.SQLException;
    
                    public void 
                    refreshRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    setCurrentRowValueAt(Object, int, Object) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    isEmptyResultSet() 
                    throws java.sql.SQLException;
    boolean 
                    isValidRow(int) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    cacheRowAt(int) 
                    throws java.sql.SQLException;
    
                    private int 
                    cacheAllRows() 
                    throws java.sql.SQLException;
    int 
                    getColumnCount() 
                    throws java.sql.SQLException;
    
                    private java.sql.ResultSetMetaData 
                    getInternalMetadata() 
                    throws java.sql.SQLException;
    
                    private int 
                    getLastRow() 
                    throws java.sql.SQLException;
    
                    private int 
                    get_refetch_size(int, int, int) 
                    throws java.sql.SQLException;
    
                    private OraclePreparedStatement 
                    prepare_refetch_statement(int) 
                    throws java.sql.SQLException;
    
                    private void 
                    prepare_refetch_binds(OraclePreparedStatement, int) 
                    throws java.sql.SQLException;
    
                    private void 
                    save_refetch_results(OracleResultSet, int, int, int) 
                    throws java.sql.SQLException;
    
                    private Object 
                    getCachedValueAt(int, int) 
                    throws java.sql.SQLException;
    
                    private oracle.sql.Datum 
                    getCachedDatumValueAt(int, int) 
                    throws java.sql.SQLException;
    
                    private void 
                    putCachedValueAt(int, int, Object) 
                    throws java.sql.SQLException;
    
                    private void 
                    removeCachedRowAt(int) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    needIdentifier(int, int);
    
                    public 
                    static boolean 
                    needCache(int, int);
    
                    public 
                    static boolean 
                    supportRefreshRow(int, int);
    int 
                    getFirstUserColumnIndex();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTypeRep.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTypeRep {
    short 
                    oVersion;
    
                    static 
                    final byte 
                    PRO = 1;
    
                    static 
                    final byte 
                    DTY = 2;
    
                    static 
                    final byte 
                    RXH = 3;
    
                    static 
                    final byte 
                    UDS = 4;
    
                    static 
                    final byte 
                    OAC = 5;
    
                    static 
                    final byte 
                    DSC = 1;
    
                    static 
                    final byte 
                    DTYDTY = 20;
    
                    static 
                    final byte 
                    DTYRXH8 = 21;
    
                    static 
                    final byte 
                    DTYUDS8 = 22;
    
                    static 
                    final byte 
                    DTYOAC8 = 23;
    
                    static 
                    final byte 
                    NATIVE = 0;
    
                    static 
                    final byte 
                    UNIVERSAL = 1;
    
                    static 
                    final byte 
                    LSB = 2;
    
                    static 
                    final byte 
                    MAXREP = 3;
    
                    static 
                    final byte 
                    B1 = 0;
    
                    static 
                    final byte 
                    B2 = 1;
    
                    static 
                    final byte 
                    B4 = 2;
    
                    static 
                    final byte 
                    B8 = 3;
    
                    static 
                    final byte 
                    PTR = 4;
    
                    static 
                    final byte 
                    MAXTYPE = 4;
    byte[] 
                    rep;
    
                    final byte 
                    NUMREPS;
    byte 
                    conversionFlags;
    boolean 
                    serverConversion;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTypeRep();
    void 
                    setRep(byte, byte) 
                    throws java.sql.SQLException;
    byte 
                    getRep(byte) 
                    throws java.sql.SQLException;
    void 
                    setFlags(byte);
    byte 
                    getFlags();
    boolean 
                    isConvNeeded();
    void 
                    setServerConversion(boolean);
    boolean 
                    isServerConversion();
    void 
                    setVersion(short);
    short 
                    getVersion();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OraclePreparedStatement$PushedBatch.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OraclePreparedStatement$PushedBatch {
    int[] 
                    currentBatchCharLens;
    int[] 
                    lastBoundCharLens;
    Accessor[] 
                    currentBatchBindAccessors;
    boolean 
                    lastBoundNeeded;
    boolean 
                    need_to_parse;
    boolean 
                    current_batch_need_to_prepare_binds;
    int 
                    first_row_in_batch;
    int 
                    number_of_rows_to_be_bound;
    OraclePreparedStatement$PushedBatch 
                    next;
    void OraclePreparedStatement$PushedBatch(OraclePreparedStatement);
}

                

oracle/jdbc/driver/OraclePreparedStatement.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    synchronized 
                    class OraclePreparedStatement 
                    extends OracleStatement 
                    implements oracle.jdbc.internal.OraclePreparedStatement, ScrollRsetStatement {
    int 
                    numberOfBindRowsAllocated;
    
                    static Binder 
                    theStaticVarnumCopyingBinder;
    
                    static Binder 
                    theStaticVarnumNullBinder;
    Binder 
                    theVarnumNullBinder;
    
                    static Binder 
                    theStaticBooleanBinder;
    Binder 
                    theBooleanBinder;
    
                    static Binder 
                    theStaticByteBinder;
    Binder 
                    theByteBinder;
    
                    static Binder 
                    theStaticShortBinder;
    Binder 
                    theShortBinder;
    
                    static Binder 
                    theStaticIntBinder;
    Binder 
                    theIntBinder;
    
                    static Binder 
                    theStaticLongBinder;
    Binder 
                    theLongBinder;
    
                    static Binder 
                    theStaticFloatBinder;
    Binder 
                    theFloatBinder;
    
                    static Binder 
                    theStaticDoubleBinder;
    Binder 
                    theDoubleBinder;
    
                    static Binder 
                    theStaticBigDecimalBinder;
    Binder 
                    theBigDecimalBinder;
    
                    static Binder 
                    theStaticVarcharCopyingBinder;
    
                    static Binder 
                    theStaticVarcharNullBinder;
    Binder 
                    theVarcharNullBinder;
    
                    static Binder 
                    theStaticStringBinder;
    Binder 
                    theStringBinder;
    
                    static Binder 
                    theStaticSetCHARCopyingBinder;
    
                    static Binder 
                    theStaticSetCHARBinder;
    
                    static Binder 
                    theStaticLittleEndianSetCHARBinder;
    
                    static Binder 
                    theStaticSetCHARNullBinder;
    Binder 
                    theSetCHARBinder;
    Binder 
                    theSetCHARNullBinder;
    
                    static Binder 
                    theStaticFixedCHARCopyingBinder;
    
                    static Binder 
                    theStaticFixedCHARBinder;
    
                    static Binder 
                    theStaticFixedCHARNullBinder;
    Binder 
                    theFixedCHARBinder;
    Binder 
                    theFixedCHARNullBinder;
    
                    static Binder 
                    theStaticDateCopyingBinder;
    
                    static Binder 
                    theStaticDateBinder;
    
                    static Binder 
                    theStaticDateNullBinder;
    Binder 
                    theDateBinder;
    Binder 
                    theDateNullBinder;
    
                    static Binder 
                    theStaticTimeCopyingBinder;
    
                    static Binder 
                    theStaticTimeBinder;
    Binder 
                    theTimeBinder;
    
                    static Binder 
                    theStaticTimestampCopyingBinder;
    
                    static Binder 
                    theStaticTimestampBinder;
    
                    static Binder 
                    theStaticTimestampNullBinder;
    Binder 
                    theTimestampBinder;
    Binder 
                    theTimestampNullBinder;
    
                    static Binder 
                    theStaticOracleNumberBinder;
    Binder 
                    theOracleNumberBinder;
    
                    static Binder 
                    theStaticOracleDateBinder;
    Binder 
                    theOracleDateBinder;
    
                    static Binder 
                    theStaticOracleTimestampBinder;
    Binder 
                    theOracleTimestampBinder;
    
                    static Binder 
                    theStaticTSTZCopyingBinder;
    
                    static Binder 
                    theStaticTSTZBinder;
    
                    static Binder 
                    theStaticTSTZNullBinder;
    Binder 
                    theTSTZBinder;
    Binder 
                    theTSTZNullBinder;
    
                    static Binder 
                    theStaticTSLTZCopyingBinder;
    
                    static Binder 
                    theStaticTSLTZBinder;
    
                    static Binder 
                    theStaticTSLTZNullBinder;
    Binder 
                    theTSLTZBinder;
    Binder 
                    theTSLTZNullBinder;
    
                    static Binder 
                    theStaticRowidCopyingBinder;
    
                    static Binder 
                    theStaticRowidBinder;
    
                    static Binder 
                    theStaticLittleEndianRowidBinder;
    
                    static Binder 
                    theStaticRowidNullBinder;
    Binder 
                    theRowidBinder;
    Binder 
                    theRowidNullBinder;
    
                    static Binder 
                    theStaticIntervalDSCopyingBinder;
    
                    static Binder 
                    theStaticIntervalDSBinder;
    
                    static Binder 
                    theStaticIntervalDSNullBinder;
    Binder 
                    theIntervalDSBinder;
    Binder 
                    theIntervalDSNullBinder;
    
                    static Binder 
                    theStaticIntervalYMCopyingBinder;
    
                    static Binder 
                    theStaticIntervalYMBinder;
    
                    static Binder 
                    theStaticIntervalYMNullBinder;
    Binder 
                    theIntervalYMBinder;
    Binder 
                    theIntervalYMNullBinder;
    
                    static Binder 
                    theStaticBfileCopyingBinder;
    
                    static Binder 
                    theStaticBfileBinder;
    
                    static Binder 
                    theStaticBfileNullBinder;
    Binder 
                    theBfileBinder;
    Binder 
                    theBfileNullBinder;
    
                    static Binder 
                    theStaticBlobCopyingBinder;
    
                    static Binder 
                    theStaticBlobBinder;
    
                    static Binder 
                    theStaticBlobNullBinder;
    Binder 
                    theBlobBinder;
    Binder 
                    theBlobNullBinder;
    
                    static Binder 
                    theStaticClobCopyingBinder;
    
                    static Binder 
                    theStaticClobBinder;
    
                    static Binder 
                    theStaticClobNullBinder;
    Binder 
                    theClobBinder;
    Binder 
                    theClobNullBinder;
    
                    static Binder 
                    theStaticRawCopyingBinder;
    
                    static Binder 
                    theStaticRawBinder;
    
                    static Binder 
                    theStaticRawNullBinder;
    Binder 
                    theRawBinder;
    Binder 
                    theRawNullBinder;
    
                    static Binder 
                    theStaticPlsqlRawCopyingBinder;
    
                    static Binder 
                    theStaticPlsqlRawBinder;
    Binder 
                    thePlsqlRawBinder;
    
                    static Binder 
                    theStaticBinaryFloatCopyingBinder;
    
                    static Binder 
                    theStaticBinaryFloatBinder;
    
                    static Binder 
                    theStaticBinaryFloatNullBinder;
    Binder 
                    theBinaryFloatBinder;
    Binder 
                    theBinaryFloatNullBinder;
    
                    static Binder 
                    theStaticBINARY_FLOATCopyingBinder;
    
                    static Binder 
                    theStaticBINARY_FLOATBinder;
    
                    static Binder 
                    theStaticBINARY_FLOATNullBinder;
    Binder 
                    theBINARY_FLOATBinder;
    Binder 
                    theBINARY_FLOATNullBinder;
    
                    static Binder 
                    theStaticBinaryDoubleCopyingBinder;
    
                    static Binder 
                    theStaticBinaryDoubleBinder;
    
                    static Binder 
                    theStaticBinaryDoubleNullBinder;
    Binder 
                    theBinaryDoubleBinder;
    Binder 
                    theBinaryDoubleNullBinder;
    
                    static Binder 
                    theStaticBINARY_DOUBLECopyingBinder;
    
                    static Binder 
                    theStaticBINARY_DOUBLEBinder;
    
                    static Binder 
                    theStaticBINARY_DOUBLENullBinder;
    Binder 
                    theBINARY_DOUBLEBinder;
    Binder 
                    theBINARY_DOUBLENullBinder;
    
                    static Binder 
                    theStaticLongStreamBinder;
    Binder 
                    theLongStreamBinder;
    
                    static Binder 
                    theStaticLongRawStreamBinder;
    Binder 
                    theLongRawStreamBinder;
    
                    static Binder 
                    theStaticNamedTypeCopyingBinder;
    
                    static Binder 
                    theStaticNamedTypeBinder;
    
                    static Binder 
                    theStaticNamedTypeNullBinder;
    Binder 
                    theNamedTypeBinder;
    Binder 
                    theNamedTypeNullBinder;
    
                    static Binder 
                    theStaticRefTypeCopyingBinder;
    
                    static Binder 
                    theStaticRefTypeBinder;
    
                    static Binder 
                    theStaticRefTypeNullBinder;
    Binder 
                    theRefTypeBinder;
    Binder 
                    theRefTypeNullBinder;
    
                    static Binder 
                    theStaticPlsqlIbtCopyingBinder;
    
                    static Binder 
                    theStaticPlsqlIbtBinder;
    
                    static Binder 
                    theStaticPlsqlIbtNullBinder;
    Binder 
                    thePlsqlIbtBinder;
    Binder 
                    thePlsqlNullBinder;
    
                    static Binder 
                    theStaticOutBinder;
    Binder 
                    theOutBinder;
    
                    static Binder 
                    theStaticReturnParamBinder;
    Binder 
                    theReturnParamBinder;
    
                    static Binder 
                    theStaticT4CRowidBinder;
    
                    static Binder 
                    theStaticT4CRowidNullBinder;
    
                    public 
                    static 
                    final int 
                    TypeBinder_BYTELEN = 24;
    char[] 
                    digits;
    Binder[][] 
                    binders;
    int[][] 
                    parameterInt;
    long[][] 
                    parameterLong;
    float[][] 
                    parameterFloat;
    double[][] 
                    parameterDouble;
    java.math.BigDecimal[][] 
                    parameterBigDecimal;
    String[][] 
                    parameterString;
    java.sql.Date[][] 
                    parameterDate;
    java.sql.Time[][] 
                    parameterTime;
    java.sql.Timestamp[][] 
                    parameterTimestamp;
    byte[][][] 
                    parameterDatum;
    oracle.jdbc.oracore.OracleTypeADT[][] 
                    parameterOtype;
    PlsqlIbtBindInfo[][] 
                    parameterPlsqlIbt;
    Binder[] 
                    currentRowBinders;
    int[] 
                    currentRowCharLens;
    Accessor[] 
                    currentRowBindAccessors;
    short[] 
                    currentRowFormOfUse;
    boolean 
                    currentRowNeedToPrepareBinds;
    int[] 
                    currentBatchCharLens;
    Accessor[] 
                    currentBatchBindAccessors;
    short[] 
                    currentBatchFormOfUse;
    boolean 
                    currentBatchNeedToPrepareBinds;
    OraclePreparedStatement$PushedBatch 
                    pushedBatches;
    OraclePreparedStatement$PushedBatch 
                    pushedBatchesTail;
    int 
                    totalBindByteLength;
    int 
                    totalBindCharLength;
    int 
                    totalBindIndicatorLength;
    
                    static 
                    final int 
                    BIND_METADATA_NUMBER_OF_BIND_POSITIONS_OFFSET = 0;
    
                    static 
                    final int 
                    BIND_METADATA_BIND_BUFFER_CAPACITY_OFFSET = 1;
    
                    static 
                    final int 
                    BIND_METADATA_NUMBER_OF_BOUND_ROWS_OFFSET = 2;
    
                    static 
                    final int 
                    BIND_METADATA_PER_POSITION_DATA_OFFSET = 3;
    
                    static 
                    final int 
                    BIND_METADATA_TYPE_OFFSET = 0;
    
                    static 
                    final int 
                    BIND_METADATA_BYTE_PITCH_OFFSET = 1;
    
                    static 
                    final int 
                    BIND_METADATA_CHAR_PITCH_OFFSET = 2;
    
                    static 
                    final int 
                    BIND_METADATA_VALUE_DATA_OFFSET_HI = 3;
    
                    static 
                    final int 
                    BIND_METADATA_VALUE_DATA_OFFSET_LO = 4;
    
                    static 
                    final int 
                    BIND_METADATA_NULL_INDICATORS_OFFSET_HI = 5;
    
                    static 
                    final int 
                    BIND_METADATA_NULL_INDICATORS_OFFSET_LO = 6;
    
                    static 
                    final int 
                    BIND_METADATA_VALUE_LENGTHS_OFFSET_HI = 7;
    
                    static 
                    final int 
                    BIND_METADATA_VALUE_LENGTHS_OFFSET_LO = 8;
    
                    static 
                    final int 
                    BIND_METADATA_FORM_OF_USE_OFFSET = 9;
    
                    static 
                    final int 
                    BIND_METADATA_PER_POSITION_SIZE = 10;
    int 
                    bindBufferCapacity;
    int 
                    numberOfBoundRows;
    int 
                    indicatorsOffset;
    int 
                    valueLengthsOffset;
    boolean 
                    preparedAllBinds;
    boolean 
                    preparedCharBinds;
    Binder[] 
                    lastBinders;
    byte[] 
                    lastBoundBytes;
    int 
                    lastBoundByteOffset;
    char[] 
                    lastBoundChars;
    int 
                    lastBoundCharOffset;
    int[] 
                    lastBoundByteOffsets;
    int[] 
                    lastBoundCharOffsets;
    int[] 
                    lastBoundByteLens;
    int[] 
                    lastBoundCharLens;
    short[] 
                    lastBoundInds;
    short[] 
                    lastBoundLens;
    boolean 
                    lastBoundNeeded;
    byte[][] 
                    lastBoundTypeBytes;
    oracle.jdbc.oracore.OracleTypeADT[] 
                    lastBoundTypeOtypes;
    
                    private 
                    static 
                    final int 
                    STREAM_MAX_BYTES_SQL = 2147483647;
    int 
                    maxRawBytesSql;
    int 
                    maxRawBytesPlsql;
    int 
                    maxVcsCharsSql;
    int 
                    maxVcsBytesPlsql;
    
                    private int 
                    maxCharSize;
    
                    private int 
                    maxNCharSize;
    
                    private int 
                    charMaxCharsSql;
    
                    private int 
                    charMaxNCharsSql;
    
                    private int 
                    maxVcsCharsPlsql;
    
                    private int 
                    maxVcsNCharsPlsql;
    
                    private int 
                    maxStreamCharsSql;
    
                    private int 
                    maxStreamNCharsSql;
    
                    private boolean 
                    isServerCharSetFixedWidth;
    
                    private boolean 
                    isServerNCharSetFixedWidth;
    int 
                    minVcsBindSize;
    int 
                    prematureBatchCount;
    boolean 
                    checkBindTypes;
    boolean 
                    scrollRsetTypeSolved;
    int 
                    SetBigStringTryClob;
    
                    static 
                    final int 
                    BSTYLE_UNKNOWN = 0;
    
                    static 
                    final int 
                    BSTYLE_ORACLE = 1;
    
                    static 
                    final int 
                    BSTYLE_JDBC = 2;
    int 
                    m_batchStyle;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OraclePreparedStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    void OraclePreparedStatement(PhysicalConnection, String, int, int, int, int) 
                    throws java.sql.SQLException;
    void 
                    allocBinds(int) 
                    throws java.sql.SQLException;
    void 
                    initializeBinds() 
                    throws java.sql.SQLException;
    void 
                    growBinds(int) 
                    throws java.sql.SQLException;
    void 
                    processCompletedBindRow(int, boolean) 
                    throws java.sql.SQLException;
    void 
                    processPlsqlIndexTabBinds(int) 
                    throws java.sql.SQLException;
    void 
                    initializeBindSubRanges(int, int);
    void 
                    initializeIndicatorSubRange();
    void 
                    prepareBindPreambles(int, int);
    void 
                    setupBindBuffers(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    enterImplicitCache() 
                    throws java.sql.SQLException;
    
                    public void 
                    enterExplicitCache() 
                    throws java.sql.SQLException;
    
                    public void 
                    exitImplicitCacheToActive() 
                    throws java.sql.SQLException;
    
                    public void 
                    exitExplicitCacheToActive() 
                    throws java.sql.SQLException;
    
                    public void 
                    exitImplicitCacheToClose() 
                    throws java.sql.SQLException;
    
                    public void 
                    exitExplicitCacheToClose() 
                    throws java.sql.SQLException;
    
                    public void 
                    closeWithKey(String) 
                    throws java.sql.SQLException;
    int 
                    executeInternal() 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    executeQuery() 
                    throws java.sql.SQLException;
    
                    public int 
                    executeUpdate() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    execute() 
                    throws java.sql.SQLException;
    void 
                    slideDownCurrentRow(int);
    void 
                    resetBatch();
    
                    public int 
                    sendBatch() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setExecuteBatch(int) 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    set_execute_batch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    final int 
                    getExecuteBatch();
    
                    public 
                    synchronized void 
                    defineParameterTypeBytes(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    defineParameterTypeChars(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    defineParameterType(int, int, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public void 
                    setNull(int, int, String) 
                    throws java.sql.SQLException;
    void 
                    setNullInternal(int, int, String) 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    setNullInternal(int, int) 
                    throws java.sql.SQLException;
    void 
                    setNullCritial(int, int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setNullAtName(String, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setNull(int, int) 
                    throws java.sql.SQLException;
    void 
                    setNullCritical(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setNullAtName(String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBoolean(int, boolean) 
                    throws java.sql.SQLException;
    void 
                    setBooleanInternal(int, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBooleanAtName(String, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setByte(int, byte) 
                    throws java.sql.SQLException;
    void 
                    setByteInternal(int, byte) 
                    throws java.sql.SQLException;
    
                    public void 
                    setByteAtName(String, byte) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setShort(int, short) 
                    throws java.sql.SQLException;
    void 
                    setShortInternal(int, short) 
                    throws java.sql.SQLException;
    
                    public void 
                    setShortAtName(String, short) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setInt(int, int) 
                    throws java.sql.SQLException;
    void 
                    setIntInternal(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setIntAtName(String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setLong(int, long) 
                    throws java.sql.SQLException;
    void 
                    setLongInternal(int, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setLongAtName(String, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFloat(int, float) 
                    throws java.sql.SQLException;
    void 
                    setFloatInternal(int, float) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryFloat(int, float) 
                    throws java.sql.SQLException;
    void 
                    setBinaryFloatInternal(int, float) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryFloatAtName(String, float) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryFloat(int, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    void 
                    setBinaryFloatInternal(int, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryFloatAtName(String, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryDouble(int, double) 
                    throws java.sql.SQLException;
    void 
                    setBinaryDoubleInternal(int, double) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryDouble(int, oracle.sql.BINARY_DOUBLE) 
                    throws java.sql.SQLException;
    void 
                    setBinaryDoubleInternal(int, oracle.sql.BINARY_DOUBLE) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryDoubleAtName(String, double) 
                    throws java.sql.SQLException;
    
                    public void 
                    setFloatAtName(String, float) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryDoubleAtName(String, oracle.sql.BINARY_DOUBLE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDouble(int, double) 
                    throws java.sql.SQLException;
    void 
                    setDoubleInternal(int, double) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDoubleAtName(String, double) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBigDecimal(int, java.math.BigDecimal) 
                    throws java.sql.SQLException;
    void 
                    setBigDecimalInternal(int, java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBigDecimalAtName(String, java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setString(int, String) 
                    throws java.sql.SQLException;
    void 
                    setStringInternal(int, String) 
                    throws java.sql.SQLException;
    void 
                    basicBindNullString(int) 
                    throws java.sql.SQLException;
    void 
                    basicBindString(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStringAtName(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStringForClob(int, String) 
                    throws java.sql.SQLException;
    void 
                    setStringForClobCritical(int, String) 
                    throws java.sql.SQLException;
    void 
                    setReaderContentsForClobCritical(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    void 
                    setAsciiStreamContentsForClobCritical(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStringForClobAtName(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFixedCHAR(int, String) 
                    throws java.sql.SQLException;
    void 
                    setFixedCHARInternal(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setFixedCHARAtName(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCursor(int, java.sql.ResultSet) 
                    throws java.sql.SQLException;
    void 
                    setCursorInternal(int, java.sql.ResultSet) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCursorAtName(String, java.sql.ResultSet) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setROWID(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    void 
                    setROWIDInternal(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public void 
                    setROWIDAtName(String, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public void 
                    setArray(int, java.sql.Array) 
                    throws java.sql.SQLException;
    void 
                    setArrayInternal(int, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    setArrayAtName(String, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    setARRAY(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    void 
                    setARRAYInternal(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    void 
                    setArrayCritical(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public void 
                    setARRAYAtName(String, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOPAQUE(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    void 
                    setOPAQUEInternal(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    void 
                    setOPAQUECritical(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOPAQUEAtName(String, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStructDescriptor(int, oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    void 
                    setStructDescriptorInternal(int, oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    void 
                    setStructDescriptorCritical(int, oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStructDescriptorAtName(String, oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    setPreBindsCompelete() 
                    throws java.sql.SQLException;
    
                    public void 
                    setSTRUCT(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    void 
                    setSTRUCTInternal(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    void 
                    setSTRUCTCritical(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public void 
                    setSTRUCTAtName(String, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setRAW(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    void 
                    setRAWInternal(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRAWAtName(String, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCHAR(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    void 
                    setCHARInternal(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCHARAtName(String, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDATE(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    void 
                    setDATEInternal(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDATEAtName(String, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setNUMBER(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    void 
                    setNUMBERInternal(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public void 
                    setNUMBERAtName(String, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBLOB(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    void 
                    setBLOBInternal(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBLOBAtName(String, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBlob(int, java.sql.Blob) 
                    throws java.sql.SQLException;
    void 
                    setBlobInternal(int, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBlobAtName(String, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCLOB(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    void 
                    setCLOBInternal(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCLOBAtName(String, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setClob(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    void 
                    setClobInternal(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public void 
                    setClobAtName(String, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBFILE(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    void 
                    setBFILEInternal(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBFILEAtName(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBfile(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    void 
                    setBfileInternal(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBfileAtName(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBytes(int, byte[]) 
                    throws java.sql.SQLException;
    void 
                    setBytesInternal(int, byte[]) 
                    throws java.sql.SQLException;
    void 
                    bindBytesAsStream(int, byte[]) 
                    throws java.sql.SQLException;
    void 
                    basicBindBytes(int, byte[]) 
                    throws java.sql.SQLException;
    void 
                    basicBindBinaryStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytesAtName(String, byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytesForBlob(int, byte[]) 
                    throws java.sql.SQLException;
    void 
                    setBytesForBlobCritical(int, byte[]) 
                    throws java.sql.SQLException;
    void 
                    setBinaryStreamContentsForBlobCritical(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytesForBlobAtName(String, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setInternalBytes(int, byte[], int) 
                    throws java.sql.SQLException;
    void 
                    setInternalBytesInternal(int, byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDate(int, java.sql.Date) 
                    throws java.sql.SQLException;
    void 
                    setDateInternal(int, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDateAtName(String, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTime(int, java.sql.Time) 
                    throws java.sql.SQLException;
    void 
                    setTimeInternal(int, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTimeAtName(String, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTimestamp(int, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    void 
                    setTimestampInternal(int, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTimestampAtName(String, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setINTERVALYM(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    void 
                    setINTERVALYMInternal(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public void 
                    setINTERVALYMAtName(String, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setINTERVALDS(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    void 
                    setINTERVALDSInternal(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public void 
                    setINTERVALDSAtName(String, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTIMESTAMP(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    void 
                    setTIMESTAMPInternal(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTIMESTAMPAtName(String, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTIMESTAMPTZ(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    void 
                    setTIMESTAMPTZInternal(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTIMESTAMPTZAtName(String, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTIMESTAMPLTZ(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    void 
                    setTIMESTAMPLTZInternal(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTIMESTAMPLTZAtName(String, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAsciiStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    void 
                    setAsciiStreamInternal(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    void 
                    basicBindAsciiStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    void 
                    setAsciiStreamContentsForStringInternal(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setAsciiStreamAtName(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    void 
                    setBinaryStreamInternal(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    void 
                    setBinaryStreamContentsForByteArrayInternal(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryStreamAtName(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setUnicodeStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    void 
                    setUnicodeStreamInternal(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setUnicodeStreamAtName(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCustomDatum(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    void 
                    setCustomDatumInternal(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCustomDatumAtName(String, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public void 
                    setORAData(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    void 
                    setORADataInternal(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public void 
                    setORADataAtName(String, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object, int, int) 
                    throws java.sql.SQLException;
    void 
                    setObjectInternal(int, Object, int, int) 
                    throws java.sql.SQLException;
    void 
                    setObjectCritical(int, Object, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObjectAtName(String, Object, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object, int) 
                    throws java.sql.SQLException;
    void 
                    setObjectInternal(int, Object, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObjectAtName(String, Object, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRefType(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    void 
                    setRefTypeInternal(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRefTypeAtName(String, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRef(int, java.sql.Ref) 
                    throws java.sql.SQLException;
    void 
                    setRefInternal(int, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRefAtName(String, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public void 
                    setREF(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    void 
                    setREFInternal(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    void 
                    setREFCritical(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    setREFAtName(String, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object) 
                    throws java.sql.SQLException;
    void 
                    setObjectInternal(int, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObjectAtName(String, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOracleObject(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    void 
                    setOracleObjectInternal(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOracleObjectAtName(String, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setPlsqlIndexTable(int, Object, int, int, int, int) 
                    throws java.sql.SQLException;
    void 
                    setPlsqlIndexTableInternal(int, Object, int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setPlsqlIndexTableAtName(String, Object, int, int, int, int) 
                    throws java.sql.SQLException;
    void 
                    endOfResultSet(boolean) 
                    throws java.sql.SQLException;
    int 
                    sqlTypeForObject(Object);
    
                    public 
                    synchronized void 
                    clearParameters() 
                    throws java.sql.SQLException;
    void 
                    printByteArray(byte[]);
    
                    public void 
                    setCharacterStream(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    void 
                    setCharacterStreamInternal(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    void 
                    basicBindCharacterStream(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    void 
                    setReaderContentsForStringOrClobInVariableWidthCase(int, java.io.Reader, int, boolean) 
                    throws java.sql.SQLException;
    void 
                    setReaderContentsForStringInternal(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDate(int, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    void 
                    setDateInternal(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;
    void 
                    setTimeInternal(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;
    void 
                    setTimestampInternal(int, java.sql.Timestamp, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCheckBindTypes(boolean);
    
                    final void 
                    setOracleBatchStyle() 
                    throws java.sql.SQLException;
    
                    final void 
                    setJdbcBatchStyle() 
                    throws java.sql.SQLException;
    
                    final void 
                    checkIfJdbcBatchExists() 
                    throws java.sql.SQLException;
    boolean 
                    doesJdbcBatchExist();
    boolean 
                    isJdbcBatchStyle();
    
                    public 
                    synchronized void 
                    addBatch() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    addBatch(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    clearBatch() 
                    throws java.sql.SQLException;
    
                    public int[] 
                    executeBatch() 
                    throws java.sql.SQLException;
    void 
                    pushBatch(boolean);
    int 
                    doScrollPstmtExecuteUpdate() 
                    throws java.sql.SQLException;
    
                    public int 
                    copyBinds(java.sql.Statement, int) 
                    throws java.sql.SQLException;
    Binder 
                    copiedNullBinder(short, int) 
                    throws java.sql.SQLException;
    Binder 
                    copiedByteBinder(short, byte[], int, int, short) 
                    throws java.sql.SQLException;
    Binder 
                    copiedCharBinder(short, char[], int, int, short) 
                    throws java.sql.SQLException;
    
                    protected void 
                    hardClose() 
                    throws java.sql.SQLException;
    
                    protected void 
                    alwaysOnClose() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDisableStmtCaching(boolean);
    
                    public 
                    synchronized void 
                    setFormOfUse(int, short);
    
                    public 
                    synchronized void 
                    setURL(int, java.net.URL) 
                    throws java.sql.SQLException;
    void 
                    setURLInternal(int, java.net.URL) 
                    throws java.sql.SQLException;
    
                    public void 
                    setURLAtName(String, java.net.URL) 
                    throws java.sql.SQLException;
    
                    public java.sql.ParameterMetaData 
                    getParameterMetaData() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.OracleParameterMetaData 
                    OracleGetParameterMetaData() 
                    throws java.sql.SQLException;
    
                    public void 
                    registerReturnParameter(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    registerReturnParameter(int, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    registerReturnParameter(int, int, String) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    getReturnResultSet() 
                    throws java.sql.SQLException;
    int 
                    getInternalTypeForDmlReturning(int) 
                    throws java.sql.SQLException;
    
                    static int 
                    getReturnParameterCount(String);
    void 
                    registerReturnParamsForAutoKey() 
                    throws java.sql.SQLException;
    void 
                    cleanOldTempLobs();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/PlsqlIbtBindInfo.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class PlsqlIbtBindInfo {
    Object[] 
                    arrayData;
    int 
                    maxLen;
    int 
                    curLen;
    int 
                    element_internal_type;
    int 
                    elemMaxLen;
    int 
                    ibtByteLength;
    int 
                    ibtCharLength;
    int 
                    ibtValueIndex;
    int 
                    ibtIndicatorIndex;
    int 
                    ibtLengthIndex;
    void PlsqlIbtBindInfo(Object[], int, int, int, int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/LogicalConnection.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LogicalConnection 
                    extends OracleConnection {
    
                    static 
                    final ClosedConnection 
                    closedConnection;
    PhysicalConnection 
                    internalConnection;
    oracle.jdbc.pool.OraclePooledConnection 
                    pooledConnection;
    boolean 
                    closed;
    OracleCloseCallback 
                    closeCallback;
    Object 
                    privateData;
    long 
                    startTime;
    oracle.jdbc.pool.OracleConnectionCacheCallback 
                    connectionCacheCallback;
    Object 
                    connectionCacheCallbackUserObj;
    int 
                    callbackFlag;
    int 
                    releasePriority;
    int 
                    heartbeatCount;
    int 
                    heartbeatLastCount;
    int 
                    heartbeatNoChangeCount;
    boolean 
                    isAbandonedTimeoutEnabled;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    void LogicalConnection(oracle.jdbc.pool.OraclePooledConnection, PhysicalConnection, boolean) 
                    throws java.sql.SQLException;
    void 
                    registerHeartbeat() 
                    throws java.sql.SQLException;
    
                    public int 
                    getHeartbeatNoChangeCount() 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.internal.OracleConnection 
                    physicalConnectionWithin();
    
                    public 
                    synchronized void 
                    registerCloseCallback(OracleCloseCallback, Object);
    
                    public java.sql.Connection 
                    _getPC();
    
                    public 
                    synchronized boolean 
                    isLogicalConnection();
    
                    public oracle.jdbc.internal.OracleConnection 
                    getPhysicalConnection();
    
                    public java.sql.Connection 
                    getLogicalConnection(oracle.jdbc.pool.OraclePooledConnection, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    getPropertyForPooledConnection(oracle.jdbc.pool.OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public void 
                    closeInternal(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    abort() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    applyConnectionAttributes(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Properties 
                    getConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Properties 
                    getUnMatchedConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAbandonedTimeoutEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerConnectionCacheCallback(oracle.jdbc.pool.OracleConnectionCacheCallback, Object, int) 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.pool.OracleConnectionCacheCallback 
                    getConnectionCacheCallbackObj() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getConnectionCacheCallbackPrivObj() 
                    throws java.sql.SQLException;
    
                    public int 
                    getConnectionCacheCallbackFlag() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionReleasePriority(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getConnectionReleasePriority() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isClosed() 
                    throws java.sql.SQLException;
    
                    public void 
                    setStartTime(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getStartTime() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getServerSessionInfo() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getClientData(Object);
    
                    public Object 
                    setClientData(Object, Object);
    
                    public Object 
                    removeClientData(Object);
    
                    public void 
                    setClientIdentifier(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    clearClientIdentifier(String) 
                    throws java.sql.SQLException;
    
                    public short 
                    getStructAttrNCsId() 
                    throws java.sql.SQLException;
    
                    public java.util.Map 
                    getTypeMap() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getDBAccessProperties() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getOCIHandles() 
                    throws java.sql.SQLException;
    
                    public String 
                    getDatabaseProductVersion() 
                    throws java.sql.SQLException;
    
                    public void 
                    cancel() 
                    throws java.sql.SQLException;
    
                    public String 
                    getURL() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getIncludeSynonyms();
    
                    public boolean 
                    getRemarksReporting();
    
                    public boolean 
                    getRestrictGetTables();
    
                    public short 
                    getVersionNumber() 
                    throws java.sql.SQLException;
    
                    public java.util.Map 
                    getJavaObjectTypeMap();
    
                    public void 
                    setJavaObjectTypeMap(java.util.Map);
    
                    public oracle.sql.BfileDBAccess 
                    createBfileDBAccess() 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BlobDBAccess 
                    createBlobDBAccess() 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ClobDBAccess 
                    createClobDBAccess() 
                    throws java.sql.SQLException;
    
                    public void 
                    setDefaultFixedString(boolean);
    
                    public boolean 
                    getDefaultFixedString();
    
                    public oracle.jdbc.OracleConnection 
                    getWrapper();
    
                    public Class 
                    classForNameAndSchema(String, String) 
                    throws ClassNotFoundException;
    
                    public void 
                    setFDO(byte[]) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getFDO(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getBigEndian() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getDescriptor(byte[]);
    
                    public void 
                    putDescriptor(byte[], Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    removeDescriptor(String);
    
                    public void 
                    removeAllDescriptor();
    
                    public int 
                    numberOfDescriptorCacheEntries();
    
                    public java.util.Enumeration 
                    descriptorCacheKeys();
    
                    public void 
                    getOracleTypeADT(oracle.jdbc.oracore.OracleTypeADT) 
                    throws java.sql.SQLException;
    
                    public short 
                    getDbCsId() 
                    throws java.sql.SQLException;
    
                    public short 
                    getJdbcCsId() 
                    throws java.sql.SQLException;
    
                    public short 
                    getNCharSet();
    
                    public java.sql.ResultSet 
                    newArrayDataResultSet(oracle.sql.Datum[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    newArrayDataResultSet(oracle.sql.ARRAY, long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    newArrayLocatorResultSet(oracle.sql.ArrayDescriptor, byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    newStructMetaData(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public void 
                    getForm(oracle.jdbc.oracore.OracleTypeADT, oracle.jdbc.oracore.OracleTypeCLOB, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    CHARBytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    NCHARBytesToJavaChars(byte[], int, char[]) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    IsNCharFixedWith();
    
                    public short 
                    getDriverCharSet();
    
                    public int 
                    getC2SNlsRatio();
    
                    public int 
                    getMaxCharSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getMaxCharbyteSize();
    
                    public int 
                    getMaxNCharbyteSize();
    
                    public boolean 
                    isCharSetMultibyte(short);
    
                    public int 
                    javaCharsToCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    javaCharsToNCHARBytes(char[], int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    getStmtCacheSize();
    
                    public int 
                    getStatementCacheSize() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getImplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getExplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public void 
                    purgeImplicitCache() 
                    throws java.sql.SQLException;
    
                    public void 
                    purgeExplicitCache() 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    getStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.CallableStatement 
                    getCallWithKey(String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isStatementCacheInitialized();
    
                    public void 
                    setTypeMap(java.util.Map);
    
                    public String 
                    getProtocolType();
    
                    public void 
                    setTxnMode(int);
    
                    public int 
                    getTxnMode();
    
                    public int 
                    getHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getOCIEnvHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    createClob(byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    createClob(byte[], short) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BLOB 
                    createBlob(byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BFILE 
                    createBfile(byte[]) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isDescriptorSharable(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public oracle.jdbc.internal.OracleStatement 
                    refCursorCursorToStatement(int) 
                    throws java.sql.SQLException;
    
                    public long 
                    getTdoCState(String, String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public javax.transaction.xa.XAResource 
                    getXAResource() 
                    throws java.sql.SQLException;
    
                    public void 
                    setApplicationContext(String, String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    clearAllApplicationContext(String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isV8Compatible() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/ClosedConnection.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ClosedConnection 
                    extends PhysicalConnection {
    void ClosedConnection();
    void 
                    initializePassword(String) 
                    throws java.sql.SQLException;
    OracleStatement 
                    RefCursorBytesToStatement(byte[], OracleStatement) 
                    throws java.sql.SQLException;
    int 
                    getDefaultStreamChunkSize();
    short 
                    doGetVersionNumber() 
                    throws java.sql.SQLException;
    String 
                    doGetDatabaseProductVersion() 
                    throws java.sql.SQLException;
    void 
                    doRollback() 
                    throws java.sql.SQLException;
    void 
                    doCommit() 
                    throws java.sql.SQLException;
    void 
                    doSetAutoCommit(boolean) 
                    throws java.sql.SQLException;
    void 
                    doCancel() 
                    throws java.sql.SQLException;
    void 
                    doAbort() 
                    throws java.sql.SQLException;
    void 
                    open(OracleStatement) 
                    throws java.sql.SQLException;
    void 
                    logon() 
                    throws java.sql.SQLException;
    
                    public void 
                    getPropertyForPooledConnection(oracle.jdbc.pool.OraclePooledConnection) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/LRUStatementCache.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class LRUStatementCache {
    
                    private int 
                    cacheSize;
    
                    private int 
                    numElements;
    
                    private OracleStatementCacheEntry 
                    applicationCacheStart;
    
                    private OracleStatementCacheEntry 
                    applicationCacheEnd;
    
                    private OracleStatementCacheEntry 
                    implicitCacheStart;
    
                    private OracleStatementCacheEntry 
                    explicitCacheStart;
    boolean 
                    implicitCacheEnabled;
    boolean 
                    explicitCacheEnabled;
    
                    private boolean 
                    debug;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    protected void LRUStatementCache(int) 
                    throws java.sql.SQLException;
    
                    protected void 
                    resize(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setImplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getImplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public void 
                    setExplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getExplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    protected void 
                    addToImplicitCache(OraclePreparedStatement, String, int, int) 
                    throws java.sql.SQLException;
    
                    protected void 
                    addToExplicitCache(OraclePreparedStatement, String) 
                    throws java.sql.SQLException;
    
                    protected OracleStatement 
                    searchImplicitCache(String, int, int) 
                    throws java.sql.SQLException;
    
                    protected OracleStatement 
                    searchExplicitCache(String) 
                    throws java.sql.SQLException;
    
                    protected void 
                    purgeImplicitCache() 
                    throws java.sql.SQLException;
    
                    protected void 
                    purgeExplicitCache() 
                    throws java.sql.SQLException;
    
                    private void 
                    purgeCacheEntry(OracleStatementCacheEntry) 
                    throws java.sql.SQLException;
    
                    public int 
                    getCacheSize();
    
                    public void 
                    printCache(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleStatementCacheEntry.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleStatementCacheEntry {
    
                    protected OracleStatementCacheEntry 
                    applicationNext;
    
                    protected OracleStatementCacheEntry 
                    applicationPrev;
    
                    protected OracleStatementCacheEntry 
                    explicitNext;
    
                    protected OracleStatementCacheEntry 
                    explicitPrev;
    
                    protected OracleStatementCacheEntry 
                    implicitNext;
    
                    protected OracleStatementCacheEntry 
                    implicitPrev;
    boolean 
                    onImplicit;
    String 
                    sql;
    int 
                    statementType;
    int 
                    scrollType;
    OraclePreparedStatement 
                    statement;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleStatementCacheEntry();
    
                    public void 
                    print() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleCallableStatement.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    synchronized 
                    class OracleCallableStatement 
                    extends OraclePreparedStatement 
                    implements oracle.jdbc.internal.OracleCallableStatement {
    boolean 
                    atLeastOneOrdinalParameter;
    boolean 
                    atLeastOneNamedParameter;
    String[] 
                    namedParameters;
    int 
                    parameterCount;
    
                    final String 
                    errMsgMixedBind;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    void OracleCallableStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    void OracleCallableStatement(PhysicalConnection, String, int, int, int, int) 
                    throws java.sql.SQLException;
    void 
                    registerOutParameterInternal(int, int, int, int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    registerOutParameter(int, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerOutParameterBytes(int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerOutParameterChars(int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerOutParameter(int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerOutParameter(String, int, int, int) 
                    throws java.sql.SQLException;
    void 
                    resetBatch();
    
                    public 
                    synchronized void 
                    setExecuteBatch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    sendBatch() 
                    throws java.sql.SQLException;
    
                    public void 
                    registerOutParameter(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    registerOutParameter(int, int, int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BFILE 
                    getBFILE(int) 
                    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 byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    privateGetBytes(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    getDate(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 java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getAnyDataEmbeddedObject(int) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    clearParameters() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.sql.Ref 
                    getRef(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.Array 
                    getArray(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.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public void 
                    addBatch() 
                    throws java.sql.SQLException;
    
                    protected void 
                    alwaysOnClose() 
                    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 
                    setBinaryFloat(String, float) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryFloat(String, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDouble(String, double) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryDouble(String, double) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryDouble(String, oracle.sql.BINARY_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 
                    setStringForClob(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStringForClob(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytes(String, byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytesForBlob(String, byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytesForBlob(int, 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 
                    synchronized void 
                    registerIndexTableOutParameter(int, int, int, int) 
                    throws java.sql.SQLException;
    PlsqlIndexTableAccessor 
                    allocateIndexTableAccessor(int, int, int, int, short, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getPlsqlIndexTable(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getPlsqlIndexTable(int, Class) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum[] 
                    getOraclePlsqlIndexTable(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    execute() 
                    throws java.sql.SQLException;
    
                    public int 
                    executeUpdate() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setNull(int, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setNull(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBoolean(int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setByte(int, byte) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setShort(int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setInt(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setLong(int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFloat(int, float) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryFloat(int, float) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryFloat(int, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryDouble(int, double) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryDouble(int, oracle.sql.BINARY_DOUBLE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDouble(int, double) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBigDecimal(int, java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setString(int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFixedCHAR(int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCursor(int, java.sql.ResultSet) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setROWID(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setRAW(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCHAR(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDATE(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setNUMBER(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBLOB(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBlob(int, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCLOB(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setClob(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBFILE(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBfile(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBytes(int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setInternalBytes(int, byte[], int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDate(int, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTime(int, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTimestamp(int, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setINTERVALYM(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setINTERVALDS(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTIMESTAMP(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTIMESTAMPTZ(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTIMESTAMPLTZ(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setAsciiStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setBinaryStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setUnicodeStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCharacterStream(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setDate(int, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTime(int, java.sql.Time, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setTimestamp(int, java.sql.Timestamp, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setURL(int, java.net.URL) 
                    throws java.sql.SQLException;
    
                    public void 
                    setArray(int, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    setARRAY(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOPAQUE(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStructDescriptor(int, oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public void 
                    setSTRUCT(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCustomDatum(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public void 
                    setORAData(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRefType(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRef(int, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public void 
                    setREF(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOracleObject(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setPlsqlIndexTable(int, Object, int, int, int, int) 
                    throws java.sql.SQLException;
    int 
                    addNamedPara(String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/DatabaseError.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class DatabaseError {
    
                    private 
                    static boolean 
                    loadedMessages;
    
                    private 
                    static Message 
                    message;
    
                    private 
                    static String 
                    msgClassName;
    
                    static 
                    final oracle.jdbc.util.SQLStateMapping[] 
                    mappings;
    
                    static 
                    final oracle.jdbc.util.SQLStateRange[] 
                    ranges;
    
                    public 
                    static 
                    final int 
                    JDBC_ERROR_BASE = 17000;
    
                    public 
                    static 
                    final int 
                    JDBC_MAX_ERRORS = 500;
    
                    public 
                    static 
                    final int 
                    EOJ_SUCCESS = 0;
    
                    public 
                    static 
                    final int 
                    EOJ_ERROR = 1;
    
                    public 
                    static 
                    final int 
                    EOJ_IOEXCEPTION = 2;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_COLUMN_INDEX = 3;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_COLUMN_TYPE = 4;
    
                    public 
                    static 
                    final int 
                    EOJ_UNSUPPORTED_COLUMN_TYPE = 5;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_COLUMN_NAME = 6;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_DYNAMIC_COLUMN = 7;
    
                    public 
                    static 
                    final int 
                    EOJ_CLOSED_CONNECTION = 8;
    
                    public 
                    static 
                    final int 
                    EOJ_CLOSED_STATEMENT = 9;
    
                    public 
                    static 
                    final int 
                    EOJ_CLOSED_RESULTSET = 10;
    
                    public 
                    static 
                    final int 
                    EOJ_EXHAUSTED_RESULTSET = 11;
    
                    public 
                    static 
                    final int 
                    EOJ_TYPE_CONFLICT = 12;
    
                    public 
                    static 
                    final int 
                    EOJ_WAS_NULL = 13;
    
                    public 
                    static 
                    final int 
                    EOJ_RESULTSET_BEFORE_FIRST_ROW = 14;
    
                    public 
                    static 
                    final int 
                    EOJ_STATEMENT_WAS_CANCELLED = 15;
    
                    public 
                    static 
                    final int 
                    EOJ_STATEMENT_TIMED_OUT = 16;
    
                    public 
                    static 
                    final int 
                    EOJ_CURSOR_ALREADY_INITIALIZED = 17;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_CURSOR = 18;
    
                    public 
                    static 
                    final int 
                    EOJ_CAN_ONLY_DESCRIBE_A_QUERY = 19;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_ROW_PREFETCH = 20;
    
                    public 
                    static 
                    final int 
                    EOJ_MISSING_DEFINES = 21;
    
                    public 
                    static 
                    final int 
                    EOJ_MISSING_DEFINES_AT_INDEX = 22;
    
                    public 
                    static 
                    final int 
                    EOJ_UNSUPPORTED_FEATURE = 23;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_DATA_READ = 24;
    
                    public 
                    static 
                    final int 
                    EOJ_IS_DEFINES_NULL_ERROR = 25;
    
                    public 
                    static 
                    final int 
                    EOJ_NUMERIC_OVERFLOW = 26;
    
                    public 
                    static 
                    final int 
                    EOJ_STREAM_CLOSED = 27;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_NEW_DEFINE_IF_RESULT_SET_NOT_CLOSED = 28;
    
                    public 
                    static 
                    final int 
                    EOJ_READ_ONLY = 29;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_TRANSLEVEL = 30;
    
                    public 
                    static 
                    final int 
                    EOJ_AUTO_CLOSE_ONLY = 31;
    
                    public 
                    static 
                    final int 
                    EOJ_ROW_PREFETCH_NOT_ZERO = 32;
    
                    public 
                    static 
                    final int 
                    EOJ_MALFORMED_SQL92 = 33;
    
                    public 
                    static 
                    final int 
                    EOJ_NON_SUPPORTED_SQL92_TOKEN = 34;
    
                    public 
                    static 
                    final int 
                    EOJ_NON_SUPPORTED_CHAR_SET = 35;
    
                    public 
                    static 
                    final int 
                    EOJ_ORACLE_NUMBER_EXCEPTION = 36;
    
                    public 
                    static 
                    final int 
                    EOJ_FAIL_CONVERSION_UTF8_TO_UCS2 = 37;
    
                    public 
                    static 
                    final int 
                    EOJ_CONVERSION_BYTE_ARRAY_ERROR = 38;
    
                    public 
                    static 
                    final int 
                    EOJ_CONVERSION_CHAR_ARRAY_ERROR = 39;
    
                    public 
                    static 
                    final int 
                    EOJ_SUB_SUB_PROTOCOL_ERROR = 40;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_IN_OUT_BINDS = 41;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_BATCH_VALUE = 42;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_STREAM_SIZE = 43;
    
                    public 
                    static 
                    final int 
                    EOJ_DATASET_ITEMS_NOT_ALLOCATED = 44;
    
                    public 
                    static 
                    final int 
                    EOJ_BEYOND_BINDS_BATCH = 45;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_RANK = 46;
    
                    public 
                    static 
                    final int 
                    EOJ_TDS_FORMAT_ERROR = 47;
    
                    public 
                    static 
                    final int 
                    EOJ_UNDEFINED_TYPE = 48;
    
                    public 
                    static 
                    final int 
                    EOJ_INCONSISTENT_ADT = 49;
    
                    public 
                    static 
                    final int 
                    EOJ_NOSUCHELEMENT = 50;
    
                    public 
                    static 
                    final int 
                    EOJ_NOT_AN_OBJECT_TYPE = 51;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_REF = 52;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_SIZE = 53;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_LOB_LOCATOR = 54;
    
                    public 
                    static 
                    final int 
                    EOJ_FAIL_CONVERSION_CHARACTER = 55;
    
                    public 
                    static 
                    final int 
                    EOJ_UNSUPPORTED_CHARSET = 56;
    
                    public 
                    static 
                    final int 
                    EOJ_CLOSED_LOB = 57;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_NLS_RATIO = 58;
    
                    public 
                    static 
                    final int 
                    EOJ_CONVERSION_JAVA_ERROR = 59;
    
                    public 
                    static 
                    final int 
                    EOJ_FAIL_CREATE_DESC = 60;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_DESCRIPTOR = 61;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_REF_CURSOR = 62;
    
                    public 
                    static 
                    final int 
                    EOJ_NOT_IN_A_TRANSACTION = 63;
    
                    public 
                    static 
                    final int 
                    EOJ_DATABASE_IS_NULL = 64;
    
                    public 
                    static 
                    final int 
                    EOJ_CONV_WAS_NULL = 65;
    
                    public 
                    static 
                    final int 
                    EOJ_ACCESS_SPECIFIC_IMPL = 66;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_URL = 67;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_ARGUMENTS = 68;
    
                    public 
                    static 
                    final int 
                    EOJ_USE_XA_EXPLICIT = 69;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_DATASIZE_LENGTH = 70;
    
                    public 
                    static 
                    final int 
                    EOJ_EXCEEDED_VARRAY_LENGTH = 71;
    
                    public 
                    static 
                    final int 
                    EOJ_VALUE_TOO_BIG = 72;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_NAME_PATTERN = 74;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_FORWARD_RSET_OP = 75;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_READONLY_RSET_OP = 76;
    
                    public 
                    static 
                    final int 
                    EOJ_FAIL_REF_SETVALUE = 77;
    
                    public 
                    static 
                    final int 
                    EOJ_CONNECTIONS_ALREADY_EXIST = 78;
    
                    public 
                    static 
                    final int 
                    EOJ_USER_CREDENTIALS_FAIL = 79;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_BATCH_COMMAND = 80;
    
                    public 
                    static 
                    final int 
                    EOJ_BATCH_ERROR = 81;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_CURRENT_ROW = 82;
    
                    public 
                    static 
                    final int 
                    EOJ_NOT_ON_INSERT_ROW = 83;
    
                    public 
                    static 
                    final int 
                    EOJ_ON_INSERT_ROW = 84;
    
                    public 
                    static 
                    final int 
                    EOJ_UPDATE_CONFLICTS = 85;
    
                    public 
                    static 
                    final int 
                    EOJ_NULL_INSERET_ROW_VALUE = 86;
    
                    public 
                    static 
                    final int 
                    WARN_IGNORE_FETCH_DIRECTION = 87;
    
                    public 
                    static 
                    final int 
                    EOJ_UNSUPPORTED_SYNTAX = 88;
    
                    public 
                    static 
                    final int 
                    EOJ_INTERNAL_ERROR = 89;
    
                    public 
                    static 
                    final int 
                    EOJ_OPER_NOT_ALLOWED = 90;
    
                    public 
                    static 
                    final int 
                    WARN_ALTERNATE_RSET_TYPE = 91;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_JDBC_AT_END_OF_CALL = 92;
    
                    public 
                    static 
                    final int 
                    EOJ_WARN_SUCCESS_WITH_INFO = 93;
    
                    public 
                    static 
                    final int 
                    EOJ_VERSION_MISMATCH = 94;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_STMT_CACHE_SIZE = 95;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_ELEMENT_TYPE = 97;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_EMPTYLOB_OP = 98;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_INDEXTABLE_ARRAY_LENGTH = 99;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_JAVA_OBJECT = 100;
    
                    public 
                    static 
                    final int 
                    EOJ_CONNECTIONPOOL_INVALID_PROPERTIES = 101;
    
                    public 
                    static 
                    final int 
                    EOJ_BFILE_IS_READONLY = 102;
    
                    public 
                    static 
                    final int 
                    EOJ_WRONG_CONNECTION_TYPE_FOR_METHOD = 103;
    
                    public 
                    static 
                    final int 
                    EOJ_NULL_SQL_STRING = 104;
    
                    public 
                    static 
                    final int 
                    EOJ_SESSION_TZ_NOT_SET = 105;
    
                    public 
                    static 
                    final int 
                    EOJ_CONNECTIONPOOL_INVALID_CONFIG = 106;
    
                    public 
                    static 
                    final int 
                    EOJ_CONNECTIONPOOL_INVALID_PROXY_TYPE = 107;
    
                    public 
                    static 
                    final int 
                    WARN_DEFINE_COLUMN_TYPE = 108;
    
                    public 
                    static 
                    final int 
                    EOJ_STANDARD_ENCODING_NOT_FOUND = 109;
    
                    public 
                    static 
                    final int 
                    EOJ_THIN_WARNING = 110;
    
                    public 
                    static 
                    final int 
                    EOJ_WARN_CONN_CACHE_TIMEOUT = 111;
    
                    public 
                    static 
                    final int 
                    EOJ_WARN_THREAD_TIMEOUT_INTERVAL = 112;
    
                    public 
                    static 
                    final int 
                    EOJ_WARN_THREAD_INTERVAL_TOO_BIG = 113;
    
                    public 
                    static 
                    final int 
                    EOJ_LOCAL_COMMIT_IN_GLOBAL_TXN = 114;
    
                    public 
                    static 
                    final int 
                    EOJ_LOCAL_ROLLBACK_IN_GLOBAL_TXN = 115;
    
                    public 
                    static 
                    final int 
                    EOJ_AUTOCOMMIT_IN_GLOBAL_TXN = 116;
    
                    public 
                    static 
                    final int 
                    EOJ_SETSVPT_IN_GLOBAL_TXN = 117;
    
                    public 
                    static 
                    final int 
                    EOJ_GETID_FOR_NAMED_SVPT = 118;
    
                    public 
                    static 
                    final int 
                    EOJ_GETNAME_FOR_UNNAMED_SVPT = 119;
    
                    public 
                    static 
                    final int 
                    EOJ_SETSVPT_WITH_AUTOCOMMIT = 120;
    
                    public 
                    static 
                    final int 
                    EOJ_ROLLBACK_WITH_AUTOCOMMIT = 121;
    
                    public 
                    static 
                    final int 
                    EOJ_ROLLBACK_TO_SVPT_IN_GLOBAL_TXN = 122;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_STMT_CACHE_SIZE = 123;
    
                    public 
                    static 
                    final int 
                    EOJ_WARN_CACHE_INACTIVITY_TIMEOUT = 124;
    
                    public 
                    static 
                    final int 
                    EOJ_IMPROPER_STATEMENT_TYPE = 125;
    
                    public 
                    static 
                    final int 
                    EOJ_FIXED_WAIT_TIMEOUT = 126;
    
                    public 
                    static 
                    final int 
                    EOJ_WARN_CACHE_FIXEDWAIT_TIMEOUT = 127;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_QUERY_STRING = 128;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_DML_STRING = 129;
    
                    public 
                    static 
                    final int 
                    EOJ_QUERY_TIMEOUT_CLASS_NOT_FOUND = 130;
    
                    public 
                    static 
                    final int 
                    EOJ_QUERY_TIMEOUT_INVALID_STATE = 131;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_OBJECT_TO_CONVERT = 132;
    
                    public 
                    static 
                    final int 
                    EOJ_PARAMETER_NAME_TOO_LONG = 134;
    
                    public 
                    static 
                    final int 
                    EOJ_PARAMETER_NAME_APPEARS_MORE_THAN_ONCE = 135;
    
                    public 
                    static 
                    final int 
                    EOJ_MALFORMED_DLNK_URL = 136;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_CACHE_ENABLED_DATASOURCE = 137;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_CONNECTION_CACHE_NAME = 138;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_CONNECTION_CACHE_PROPERTIES = 139;
    
                    public 
                    static 
                    final int 
                    EOJ_CONNECTION_CACHE_ALREADY_EXISTS = 140;
    
                    public 
                    static 
                    final int 
                    EOJ_CONNECTION_CACHE_DOESNOT_EXIST = 141;
    
                    public 
                    static 
                    final int 
                    EOJ_CONNECTION_CACHE_DISABLED = 142;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_CACHED_CONNECTION = 143;
    
                    public 
                    static 
                    final int 
                    EOJ_STMT_NOT_EXECUTED = 144;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_ONS_EVENT = 145;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_ONS_EVENT_VERSION = 146;
    
                    public 
                    static 
                    final int 
                    EOJ_UNKNOWN_PARAMETER_NAME = 147;
    
                    public 
                    static 
                    final int 
                    EOJ_T4C_ONLY = 148;
    
                    public 
                    static 
                    final int 
                    EOJ_ALREADY_PROXY = 149;
    
                    public 
                    static 
                    final int 
                    EOJ_PROXY_WRONG_ARG = 150;
    
                    public 
                    static 
                    final int 
                    EOJ_CLOB_TOO_LARGE = 151;
    
                    public 
                    static 
                    final int 
                    EOJ_METHOD_FOR_LOGICAL_CONNECTION_ONLY = 152;
    
                    public 
                    static 
                    final int 
                    EOJ_METHOD_FOR_PHYSICAL_CONNECTION_ONLY = 153;
    
                    public 
                    static 
                    final int 
                    EOJ_EX_MAP_ORACLE_TO_UCS = 154;
    
                    public 
                    static 
                    final int 
                    EOJ_EX_MAP_UCS_TO_ORACLE = 155;
    
                    public 
                    static 
                    final int 
                    EOJ_E2E_METRIC_ARRAY_SIZE = 156;
    
                    public 
                    static 
                    final int 
                    EOJ_SETSTRING_LIMIT = 157;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_DURATION = 158;
    
                    public 
                    static 
                    final int 
                    EOJ_E2E_METRIC_TOO_LONG = 159;
    
                    public 
                    static 
                    final int 
                    EOJ_E2E_SEQUENCE_NUMBER_OUT_OF_RANGE = 160;
    
                    public 
                    static 
                    final int 
                    EOJ_INVALID_TXN_MODE = 161;
    
                    public 
                    static 
                    final int 
                    EOJ_UNSUPPORTED_HOLDABILITY = 162;
    
                    public 
                    static 
                    final int 
                    EOJ_GETXACONN_WHEN_CACHE_ENABLED = 163;
    
                    public 
                    static 
                    final int 
                    EOJ_GETXARESOURCE_FROM_PHYSICAL_CONN = 164;
    
                    public 
                    static 
                    final int 
                    EOJ_DBMS_JDBC_NOT_PRESENT = 165;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_FETCH_ON_PLSQL = 166;
    
                    public 
                    static 
                    final int 
                    EOJ_ORACLEPKI_JAR_NOT_FOUND = 167;
    
                    public 
                    static 
                    final int 
                    EOJ_PKI_WALLET_ERROR = 168;
    
                    public 
                    static 
                    final int 
                    EOJ_NO_STREAM_BIND_ALLOWED = 169;
    
                    public 
                    static 
                    final int 
                    EOJ_APP_CTXT_NULL_NAMESPACE = 170;
    
                    public 
                    static 
                    final int 
                    EOJ_APP_CTXT_ATTR_TOO_LONG = 171;
    
                    public 
                    static 
                    final int 
                    EOJ_APP_CTXT_VAL_TOO_LONG = 172;
    
                    public 
                    static 
                    final int 
                    EOJ_DML_RETURNING_PARAM_NOT_REGISTERED = 173;
    
                    public 
                    static 
                    final int 
                    EOJ_APP_CTXT_INVALID_NAMESPACE = 174;
    
                    public 
                    static 
                    final int 
                    EOJ_REMOTE_ONS_CONFIG_ERROR = 175;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_GET_UTF_OPENSTR = 200;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_GET_UTF_CLOSESTR = 201;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_GET_UTF_RMNAME = 202;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_JHANDLE_SIZE = 203;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_ARRAY_TOO_SHORT = 204;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_SVCCTX_HANDLE = 205;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_ENV_HANDLE = 206;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_NULL_TNSENTRY = 207;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_OPEN_RMERR = 213;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_OPEN_INVAL = 215;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_OPEN_PROTO = 216;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_CLOSE_RMERR = 233;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_CLOSE_INVAL = 235;
    
                    public 
                    static 
                    final int 
                    EOJ_HETEROXA_CLOSE_PROTO = 236;
    
                    public 
                    static 
                    final int 
                    TTC_ERR_BASE = 400;
    
                    public 
                    static 
                    final int 
                    TTC0000 = 401;
    
                    public 
                    static 
                    final int 
                    TTC0001 = 402;
    
                    public 
                    static 
                    final int 
                    TTC0002 = 403;
    
                    public 
                    static 
                    final int 
                    TTC0003 = 404;
    
                    public 
                    static 
                    final int 
                    TTC0004 = 405;
    
                    public 
                    static 
                    final int 
                    TTC0005 = 406;
    
                    public 
                    static 
                    final int 
                    TTC0100 = 407;
    
                    public 
                    static 
                    final int 
                    TTC0101 = 408;
    
                    public 
                    static 
                    final int 
                    TTC0102 = 409;
    
                    public 
                    static 
                    final int 
                    TTC0103 = 410;
    
                    public 
                    static 
                    final int 
                    TTC0104 = 411;
    
                    public 
                    static 
                    final int 
                    TTC0105 = 412;
    
                    public 
                    static 
                    final int 
                    TTC0106 = 413;
    
                    public 
                    static 
                    final int 
                    TTC0107 = 414;
    
                    public 
                    static 
                    final int 
                    TTC0108 = 415;
    
                    public 
                    static 
                    final int 
                    TTC0109 = 416;
    
                    public 
                    static 
                    final int 
                    TTC0110 = 417;
    
                    public 
                    static 
                    final int 
                    TTC0111 = 418;
    
                    public 
                    static 
                    final int 
                    TTC0112 = 419;
    
                    public 
                    static 
                    final int 
                    TTC0113 = 420;
    
                    public 
                    static 
                    final int 
                    TTC0114 = 421;
    
                    public 
                    static 
                    final int 
                    TTC0115 = 422;
    
                    public 
                    static 
                    final int 
                    TTC0116 = 423;
    
                    public 
                    static 
                    final int 
                    TTC0117 = 424;
    
                    public 
                    static 
                    final int 
                    TTC0118 = 425;
    
                    public 
                    static 
                    final int 
                    TTC0119 = 426;
    
                    public 
                    static 
                    final int 
                    TTC0120 = 427;
    
                    public 
                    static 
                    final int 
                    TTC0200 = 428;
    
                    public 
                    static 
                    final int 
                    TTC0201 = 429;
    
                    public 
                    static 
                    final int 
                    TTC0202 = 430;
    
                    public 
                    static 
                    final int 
                    TTC0203 = 431;
    
                    public 
                    static 
                    final int 
                    TTC0204 = 432;
    
                    public 
                    static 
                    final int 
                    TTC0205 = 433;
    
                    public 
                    static 
                    final int 
                    TTC0206 = 434;
    
                    public 
                    static 
                    final int 
                    TTC0207 = 435;
    
                    public 
                    static 
                    final int 
                    TTC0208 = 436;
    
                    public 
                    static 
                    final int 
                    TTC0209 = 437;
    
                    public 
                    static 
                    final int 
                    TTC0210 = 438;
    
                    public 
                    static 
                    final int 
                    TTC0211 = 439;
    
                    public 
                    static 
                    final int 
                    TTC0212 = 440;
    
                    public 
                    static 
                    final int 
                    TTC0213 = 441;
    
                    public 
                    static 
                    final int 
                    TTC0214 = 442;
    
                    public 
                    static 
                    final int 
                    TTC0216 = 443;
    
                    public 
                    static 
                    final int 
                    TTC0217 = 444;
    
                    public 
                    static 
                    final int 
                    TTC0218 = 445;
    
                    public 
                    static 
                    final int 
                    TTC0219 = 446;
    
                    public 
                    static 
                    final int 
                    TTC0220 = 447;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void DatabaseError();
    
                    public 
                    static java.sql.SQLException 
                    newSqlException(int, Object);
    
                    public 
                    static java.sql.SQLException 
                    newSqlException(int);
    
                    public 
                    static void 
                    throwSqlException(String, String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    throwSqlException(int, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    throwSqlException(java.sql.SQLException, int, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    throwSqlException(int) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    throwSqlException(java.io.IOException) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    addSqlException(java.sql.SQLException, String, String, int);
    
                    public 
                    static void 
                    throwBatchUpdateException(java.sql.SQLException, int, int[]) 
                    throws java.sql.BatchUpdateException;
    
                    public 
                    static void 
                    throwBatchUpdateException(String, String, int, int, int[]) 
                    throws java.sql.BatchUpdateException;
    
                    public 
                    static void 
                    throwBatchUpdateException(int, Object, int, int[]) 
                    throws java.sql.BatchUpdateException;
    
                    public 
                    static void 
                    throwBatchUpdateException(int, int, int[]) 
                    throws java.sql.BatchUpdateException;
    
                    public 
                    static void 
                    throwUnsupportedFeatureSqlException() 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    SQLToIOException(java.sql.SQLException) 
                    throws java.io.IOException;
    
                    static String 
                    findMessage(int, Object);
    
                    public 
                    static java.sql.SQLWarning 
                    newSqlWarning(String, String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.SQLWarning 
                    newSqlWarning(int, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.SQLWarning 
                    newSqlWarning(int) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.SQLWarning 
                    addSqlWarning(java.sql.SQLWarning, String, String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.SQLWarning 
                    addSqlWarning(java.sql.SQLWarning, java.sql.SQLWarning) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.SQLWarning 
                    addSqlWarning(java.sql.SQLWarning, int, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static java.sql.SQLWarning 
                    addSqlWarning(java.sql.SQLWarning, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    ErrorToSQLState(int);
    
                    public 
                    static int 
                    getVendorCode(int);
    
                    static String 
                    getMsgKey(int);
    
                    public 
                    static void 
                    test();
    
                    public 
                    static void 
                    printSqlException(java.sql.SQLException);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/Message.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    interface Message {
    
                    public 
                    abstract String 
                    msg(String, Object);
}

                

oracle/jdbc/driver/OracleLog$1.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleLog$1 
                    implements java.security.PrivilegedAction {
    void OracleLog$1(java.util.logging.StreamHandler);
    
                    public Object 
                    run();
}

                

oracle/jdbc/driver/OracleLog$2.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleLog$2 
                    implements java.security.PrivilegedAction {
    void OracleLog$2(java.util.logging.StreamHandler);
    
                    public Object 
                    run();
}

                

oracle/jdbc/driver/OracleLog$3.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleLog$3 
                    implements java.security.PrivilegedAction {
    void OracleLog$3(java.util.logging.Level);
    
                    public Object 
                    run();
}

                

oracle/jdbc/driver/OracleLog$4.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleLog$4 
                    implements java.security.PrivilegedAction {
    void OracleLog$4(int, java.util.logging.Level, java.util.logging.Level);
    
                    public Object 
                    run();
}

                

oracle/jdbc/driver/Const.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class Const 
                    extends oracle.jdbc.Const {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void Const();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleLog$5.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleLog$5 
                    implements java.security.PrivilegedAction {
    void OracleLog$5(String[], String, String);
    
                    public Object 
                    run();
}

                

oracle/jdbc/driver/OracleLog.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleLog {
    
                    private 
                    static java.util.logging.StreamHandler 
                    printHandler;
    
                    public 
                    static java.util.logging.Logger 
                    rootLogger;
    
                    public 
                    static java.util.logging.Logger 
                    driverLogger;
    
                    public 
                    static java.util.logging.Logger 
                    poolLogger;
    
                    public 
                    static java.util.logging.Logger 
                    conversionLogger;
    
                    public 
                    static java.util.logging.Logger 
                    adtLogger;
    
                    public 
                    static java.util.logging.Logger 
                    thinLogger;
    
                    public 
                    static java.util.logging.Logger 
                    datumLogger;
    
                    public 
                    static java.util.logging.Logger 
                    kprbLogger;
    
                    public 
                    static java.util.logging.Logger 
                    xaLogger;
    
                    public 
                    static java.util.logging.Logger 
                    sqljLogger;
    
                    public 
                    static java.util.logging.Logger 
                    ociLogger;
    
                    public 
                    static java.util.logging.Logger 
                    jpubLogger;
    
                    public 
                    static 
                    final int 
                    MASK_ALL_SET = 268435455;
    
                    public 
                    static 
                    final int 
                    MAX_VECTOR_BITS = 32;
    
                    public 
                    static 
                    final int 
                    MAX_MODULES = 32;
    
                    public 
                    static 
                    final int 
                    MODULE_ALL = 268435455;
    
                    public 
                    static 
                    final int 
                    MODULE_DRIVER = 1;
    
                    public 
                    static 
                    final int 
                    MODULE_POOL = 2;
    
                    public 
                    static 
                    final int 
                    MODULE_DBCONV = 4;
    
                    public 
                    static 
                    final int 
                    MODULE_unused2 = 8;
    
                    public 
                    static 
                    final int 
                    MODULE_PICKLE = 16;
    
                    public 
                    static 
                    final int 
                    MODULE_JTTC = 32;
    
                    public 
                    static 
                    final int 
                    MODULE_DATUM = 64;
    
                    public 
                    static 
                    final int 
                    MODULE_KPRB = 128;
    
                    public 
                    static 
                    final int 
                    MODULE_XA = 256;
    
                    public 
                    static 
                    final int 
                    MODULE_SQLJ = 512;
    
                    public 
                    static 
                    final int 
                    MODULE_JOCI = 1024;
    
                    public 
                    static 
                    final int 
                    MODULE_JPUB = 2048;
    
                    public 
                    static 
                    final int 
                    MODULE_T2C = 4096;
    
                    public 
                    static 
                    final int 
                    MODULE_TOTAL = 13;
    
                    public 
                    static 
                    final String[] 
                    ModuleName;
    
                    public 
                    static 
                    final int 
                    SUBMOD_ALL = 268435455;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DEFAULT = 1;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_LOG = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_ERR = 4;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_CONN = 8;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_STMT = 16;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_RSET = 32;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_UTIL = 64;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_SQL = 128;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_RWST = 256;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_POOL = 512;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_SCCH = 1024;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DRVR_CNTR = 2048;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_DRVEXT = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_STATEMENT = 4;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_PREPSTATEMENT = 8;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_CALLSTATEMENT = 16;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_INPUTSTREAM = 32;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_CLOB = 64;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_BLOB = 128;
    
                    public 
                    static 
                    final int 
                    SUBMOD_T2C_BFILE = 256;
    
                    public 
                    static 
                    final int 
                    SUBMOD_DBAC_DATA = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_INIT = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_TYPE = 4;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_PCKL = 8;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_UNPK = 16;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_CONV = 32;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_DESC = 64;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_PARS = 128;
    
                    public 
                    static 
                    final int 
                    SUBMOD_PCKL_SERL = 256;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_BASE = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_TX = 4;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_RX = 8;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_MARS = 16;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_UNMA = 32;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_CONN = 64;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_COMM = 128;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_STMT = 256;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_LOBS = 512;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_ADTS = 1024;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JTTC_ACCE = 2048;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_ERR = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_CONN = 4;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_STMT = 8;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_RSET = 16;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_UTIL = 32;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_SQL = 64;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_DATA = 128;
    
                    public 
                    static 
                    final int 
                    SUBMOD_KPRB_CONV = 256;
    
                    public 
                    static 
                    final int 
                    SUBMOD_POOL_ALL = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_DSRC = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_CONN = 4;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_RSRC = 8;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_ARGS = 16;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_EXC = 32;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_XID = 64;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_HCON = 128;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_HCCB = 256;
    
                    public 
                    static 
                    final int 
                    SUBMOD_XA_HRSC = 512;
    
                    public 
                    static 
                    final int 
                    SUBMOD_SQLJ_RUN = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JOCI_ACCS = 2;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JOCI_DSET = 4;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JOCI_ITEM = 8;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JOCI_STMT = 16;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JOCI_TYPE = 32;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JOCI_ENV = 64;
    
                    public 
                    static 
                    final int 
                    SUBMOD_JPUB_RUNTIME = 2;
    
                    public 
                    static 
                    final int 
                    CATEGORY_ALL = 268435455;
    
                    public 
                    static 
                    final int 
                    USER_OPER = 1;
    
                    public 
                    static 
                    final int 
                    PROG_ERROR = 2;
    
                    public 
                    static 
                    final int 
                    ERROR = 4;
    
                    public 
                    static 
                    final int 
                    WARNING = 8;
    
                    public 
                    static 
                    final int 
                    FUNCTION = 16;
    
                    public 
                    static 
                    final int 
                    DEBUG1 = 32;
    
                    public 
                    static 
                    final int 
                    DEBUG2 = 64;
    
                    public 
                    static 
                    final int 
                    SQL_STR = 128;
    
                    public 
                    static 
                    final int 
                    CATEGORY_TOTAL = 8;
    
                    public 
                    static 
                    final String[] 
                    CategoryName;
    
                    public 
                    static 
                    final int 
                    CATEGORY_LOW_VOL = 142;
    
                    public 
                    static 
                    final int 
                    CATEGORY_MED_VOL = 143;
    
                    public 
                    static 
                    final int 
                    CATEGORY_HIGH_VOL = 268435455;
    
                    public 
                    static 
                    final int 
                    FIELD_NONE = 0;
    
                    public 
                    static 
                    final int 
                    FIELD_ALL = 268435455;
    
                    public 
                    static 
                    final int 
                    FIELD_NUMBER = 1;
    
                    public 
                    static 
                    final int 
                    FIELD_TIME = 2;
    
                    public 
                    static 
                    final int 
                    FIELD_MODULE = 4;
    
                    public 
                    static 
                    final int 
                    FIELD_SUBMOD = 8;
    
                    public 
                    static 
                    final int 
                    FIELD_CATEGORY = 16;
    
                    public 
                    static 
                    final int 
                    FIELD_OBJECT = 32;
    
                    public 
                    static 
                    final int 
                    FIELD_THREAD = 64;
    
                    public 
                    static 
                    final int 
                    FIELD_DEFAULT = 20;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    private 
                    static java.io.PrintWriter 
                    logWriter;
    
                    private 
                    static java.io.PrintStream 
                    logStream;
    
                    private 
                    static int 
                    printMask;
    
                    private 
                    static int 
                    moduleMask;
    
                    private 
                    static int[] 
                    submodMasks;
    
                    private 
                    static int 
                    categoryMask;
    
                    private 
                    static int 
                    maxPrintBytes;
    
                    private 
                    static boolean 
                    warningEnabled;
    
                    private 
                    static int 
                    msgNumber;
    
                    static boolean 
                    securityExceptionWhileGettingSystemProperties;
    
                    public void OracleLog();
    
                    public 
                    static boolean 
                    isDebugZip();
    
                    public 
                    static boolean 
                    isPrivateLogAvailable();
    
                    public 
                    static boolean 
                    isEnabled();
    
                    public 
                    static void 
                    setLogWriter(java.io.PrintWriter);
    
                    public 
                    static java.io.PrintWriter 
                    getLogWriter();
    
                    private 
                    static void 
                    initLoggers();
    
                    public 
                    static void 
                    setLogStream(java.io.PrintStream);
    
                    public 
                    static java.io.PrintStream 
                    getLogStream();
    
                    public 
                    static void 
                    enableWarning(boolean);
    
                    public 
                    static void 
                    setLogVolume(int);
    
                    public 
                    static void 
                    startLogging();
    
                    public 
                    static void 
                    stopLogging();
    
                    public 
                    static void 
                    config(int, int, int);
    
                    static void 
                    configForJavaUtilLogging(int, int);
    
                    public 
                    static void 
                    setSubmodMask(int, int);
    
                    public 
                    static void 
                    setMaxPrintBytes(int);
    
                    public 
                    static boolean 
                    registerClassNameAndGetCurrentTraceSetting(Class);
    
                    public 
                    static boolean 
                    registerClassNameAndGetCurrentPrivateTraceSetting(Class);
    
                    public 
                    static void 
                    setTrace(boolean);
    
                    public 
                    static void 
                    setPrivateTrace(boolean);
    
                    private 
                    static void 
                    initialize();
    
                    private 
                    static void 
                    internalCodeChecks();
    
                    public 
                    static void 
                    setupFromSystemProperties();
    
                    private 
                    static String 
                    getSystemProperty(String);
    
                    private 
                    static String 
                    getSystemProperty(String, String);
    
                    public 
                    static void 
                    print(Object, int, int, int, String);
    
                    public 
                    static void 
                    print(Object, int, int, int, String, Exception);
    
                    public 
                    static void 
                    print(Object, int, int, String);
    
                    public 
                    static String 
                    info();
    
                    public 
                    static String 
                    getModuleName(int);
    
                    public 
                    static String 
                    getCategoryName(int);
    
                    private 
                    static String 
                    getMessageNumber();
    
                    private 
                    static String 
                    getCurrTimeStr();
    
                    public 
                    static String 
                    getMaskHexStr(int);
    
                    public 
                    static int 
                    getBitNumFromVector(int);
    
                    public 
                    static String 
                    byteToHexString(byte);
    
                    public 
                    static String 
                    bytesToPrintableForm(String, byte[]);
    
                    public 
                    static String 
                    bytesToPrintableForm(String, byte[], int);
    
                    public 
                    static String 
                    bytesToFormattedStr(byte[], int, String);
    
                    public 
                    static byte[] 
                    strToUcs2Bytes(String);
    
                    public 
                    static byte[] 
                    charsToUcs2Bytes(char[]);
    
                    public 
                    static byte[] 
                    charsToUcs2Bytes(char[], int);
    
                    public 
                    static byte[] 
                    charsToUcs2Bytes(char[], int, int);
    
                    public 
                    static String 
                    toPrintableStr(String, int);
    
                    public 
                    static String 
                    toHex(long, int);
    
                    public 
                    static String 
                    toHex(byte);
    
                    public 
                    static String 
                    toHex(short);
    
                    public 
                    static String 
                    toHex(int);
    
                    public 
                    static String 
                    toHex(byte[], int);
    
                    public 
                    static String 
                    toHex(byte[]);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleTypes.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleTypes 
                    extends oracle.jdbc.internal.OracleTypes {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleTypes();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleSqlReadOnly.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleSqlReadOnly {
    
                    private 
                    static 
                    final int 
                    BASE = 0;
    
                    private 
                    static 
                    final int 
                    BASE_1 = 1;
    
                    private 
                    static 
                    final int 
                    BASE_2 = 2;
    
                    private 
                    static 
                    final int 
                    B_STRING = 3;
    
                    private 
                    static 
                    final int 
                    B_NAME = 4;
    
                    private 
                    static 
                    final int 
                    B_C_COMMENT = 5;
    
                    private 
                    static 
                    final int 
                    B_C_COMMENT_1 = 6;
    
                    private 
                    static 
                    final int 
                    B_COMMENT = 7;
    
                    private 
                    static 
                    final int 
                    PARAMETER = 8;
    
                    private 
                    static 
                    final int 
                    TOKEN = 9;
    
                    private 
                    static 
                    final int 
                    B_EGIN = 10;
    
                    private 
                    static 
                    final int 
                    BE_GIN = 11;
    
                    private 
                    static 
                    final int 
                    BEG_IN = 12;
    
                    private 
                    static 
                    final int 
                    BEGI_N = 13;
    
                    private 
                    static 
                    final int 
                    BEGIN_ = 14;
    
                    private 
                    static 
                    final int 
                    C_ALL = 15;
    
                    private 
                    static 
                    final int 
                    CA_LL = 16;
    
                    private 
                    static 
                    final int 
                    CAL_L = 17;
    
                    private 
                    static 
                    final int 
                    CALL_ = 18;
    
                    private 
                    static 
                    final int 
                    D_Eetc = 19;
    
                    private 
                    static 
                    final int 
                    DE_etc = 20;
    
                    private 
                    static 
                    final int 
                    DEC_LARE = 21;
    
                    private 
                    static 
                    final int 
                    DECL_ARE = 22;
    
                    private 
                    static 
                    final int 
                    DECLA_RE = 23;
    
                    private 
                    static 
                    final int 
                    DECLAR_E = 24;
    
                    private 
                    static 
                    final int 
                    DECLARE_ = 25;
    
                    private 
                    static 
                    final int 
                    DEL_ETE = 26;
    
                    private 
                    static 
                    final int 
                    DELE_TE = 27;
    
                    private 
                    static 
                    final int 
                    DELET_E = 28;
    
                    private 
                    static 
                    final int 
                    DELETE_ = 29;
    
                    private 
                    static 
                    final int 
                    I_NSERT = 30;
    
                    private 
                    static 
                    final int 
                    IN_SERT = 31;
    
                    private 
                    static 
                    final int 
                    INS_ERT = 32;
    
                    private 
                    static 
                    final int 
                    INSE_RT = 33;
    
                    private 
                    static 
                    final int 
                    INSER_T = 34;
    
                    private 
                    static 
                    final int 
                    INSERT_ = 35;
    
                    private 
                    static 
                    final int 
                    S_ELECT = 36;
    
                    private 
                    static 
                    final int 
                    SE_LECT = 37;
    
                    private 
                    static 
                    final int 
                    SEL_ECT = 38;
    
                    private 
                    static 
                    final int 
                    SELE_CT = 39;
    
                    private 
                    static 
                    final int 
                    SELEC_T = 40;
    
                    private 
                    static 
                    final int 
                    SELECT_ = 41;
    
                    private 
                    static 
                    final int 
                    U_PDATE = 42;
    
                    private 
                    static 
                    final int 
                    UP_DATE = 43;
    
                    private 
                    static 
                    final int 
                    UPD_ATE = 44;
    
                    private 
                    static 
                    final int 
                    UPDA_TE = 45;
    
                    private 
                    static 
                    final int 
                    UPDAT_E = 46;
    
                    private 
                    static 
                    final int 
                    UPDATE_ = 47;
    
                    private 
                    static 
                    final int 
                    M_ERGE = 48;
    
                    private 
                    static 
                    final int 
                    ME_RGE = 49;
    
                    private 
                    static 
                    final int 
                    MER_GE = 50;
    
                    private 
                    static 
                    final int 
                    MERG_E = 51;
    
                    private 
                    static 
                    final int 
                    MERGE_ = 52;
    
                    private 
                    static 
                    final int 
                    W_ITH = 53;
    
                    private 
                    static 
                    final int 
                    WI_TH = 54;
    
                    private 
                    static 
                    final int 
                    WIT_H = 55;
    
                    private 
                    static 
                    final int 
                    WITH_ = 56;
    
                    private 
                    static 
                    final int 
                    KNOW_KIND = 57;
    
                    private 
                    static 
                    final int 
                    KNOW_KIND_1 = 58;
    
                    private 
                    static 
                    final int 
                    KNOW_KIND_2 = 59;
    
                    private 
                    static 
                    final int 
                    K_STRING = 60;
    
                    private 
                    static 
                    final int 
                    K_NAME = 61;
    
                    private 
                    static 
                    final int 
                    K_C_COMMENT = 62;
    
                    private 
                    static 
                    final int 
                    K_C_COMMENT_1 = 63;
    
                    private 
                    static 
                    final int 
                    K_COMMENT = 64;
    
                    private 
                    static 
                    final int 
                    K_PARAMETER = 65;
    
                    private 
                    static 
                    final int 
                    TOKEN_KK = 66;
    
                    private 
                    static 
                    final int 
                    W_HERE = 67;
    
                    private 
                    static 
                    final int 
                    WH_ERE = 68;
    
                    private 
                    static 
                    final int 
                    WHE_RE = 69;
    
                    private 
                    static 
                    final int 
                    WHER_E = 70;
    
                    private 
                    static 
                    final int 
                    WHERE_ = 71;
    
                    private 
                    static 
                    final int 
                    O_RDER_BY = 72;
    
                    private 
                    static 
                    final int 
                    OR_DER_BY = 73;
    
                    private 
                    static 
                    final int 
                    ORD_ER_BY = 74;
    
                    private 
                    static 
                    final int 
                    ORDE_R_BY = 75;
    
                    private 
                    static 
                    final int 
                    ORDER__BY = 76;
    
                    private 
                    static 
                    final int 
                    ORDER_xBY = 77;
    
                    private 
                    static 
                    final int 
                    ORDER_B_Y = 78;
    
                    private 
                    static 
                    final int 
                    ORDER_BY_ = 79;
    
                    private 
                    static 
                    final int 
                    ORDER_xBY_CC_1 = 80;
    
                    private 
                    static 
                    final int 
                    ORDER_xBY_CC_2 = 81;
    
                    private 
                    static 
                    final int 
                    ORDER_xBY_CC_3 = 82;
    
                    private 
                    static 
                    final int 
                    ORDER_xBY_C_1 = 83;
    
                    private 
                    static 
                    final int 
                    ORDER_xBY_C_2 = 84;
    
                    private 
                    static 
                    final int 
                    F_OR_UPDATE = 84;
    
                    private 
                    static 
                    final int 
                    FO_R_UPDATE = 85;
    
                    private 
                    static 
                    final int 
                    FOR__UPDATE = 86;
    
                    private 
                    static 
                    final int 
                    FOR_xUPDATE = 87;
    
                    private 
                    static 
                    final int 
                    FOR_U_PDATE = 88;
    
                    private 
                    static 
                    final int 
                    FOR_UP_DATE = 89;
    
                    private 
                    static 
                    final int 
                    FOR_UPD_ATE = 90;
    
                    private 
                    static 
                    final int 
                    FOR_UPDA_TE = 91;
    
                    private 
                    static 
                    final int 
                    FOR_UPDAT_E = 92;
    
                    private 
                    static 
                    final int 
                    FOR_UPDATE_ = 93;
    
                    private 
                    static 
                    final int 
                    FOR_xUPDATE_CC_1 = 94;
    
                    private 
                    static 
                    final int 
                    FOR_xUPDATE_CC_2 = 95;
    
                    private 
                    static 
                    final int 
                    FOR_xUPDATE_CC_3 = 96;
    
                    private 
                    static 
                    final int 
                    FOR_xUPDATE_C_1 = 97;
    
                    private 
                    static 
                    final int 
                    FOR_xUPDATE_C_2 = 98;
    
                    private 
                    static 
                    final int 
                    B_N_tick = 99;
    
                    private 
                    static 
                    final int 
                    B_NCHAR = 100;
    
                    private 
                    static 
                    final int 
                    K_N_tick = 101;
    
                    private 
                    static 
                    final int 
                    K_NCHAR = 102;
    
                    private 
                    static 
                    final int 
                    LAST_STATE = 103;
    
                    static 
                    final int[][] 
                    TRANSITION;
    
                    static 
                    final int 
                    NO_ACTION = 0;
    
                    static 
                    final int 
                    DML_ACTION = 1;
    
                    static 
                    final int 
                    PLSQL_ACTION = 2;
    
                    static 
                    final int 
                    CALL_ACTION = 3;
    
                    static 
                    final int 
                    SELECT_ACTION = 4;
    
                    static 
                    final int 
                    OTHER_ACTION = 5;
    
                    static 
                    final int 
                    WHERE_ACTION = 6;
    
                    static 
                    final int 
                    ORDER_ACTION = 7;
    
                    static 
                    final int 
                    ORDER_BY_ACTION = 8;
    
                    static 
                    final int 
                    FOR_ACTION = 9;
    
                    static 
                    final int 
                    FOR_UPDATE_ACTION = 10;
    
                    static 
                    final int 
                    QUESTION_ACTION = 11;
    
                    static 
                    final int 
                    PARAMETER_ACTION = 12;
    
                    static 
                    final int 
                    END_PARAMETER_ACTION = 13;
    
                    static 
                    final int 
                    START_NCHAR_LITERAL_ACTION = 14;
    
                    static 
                    final int 
                    END_NCHAR_LITERAL_ACTION = 15;
    
                    static 
                    final int[][] 
                    ACTION;
    
                    static 
                    final int 
                    cMax = 127;
    
                    private 
                    static 
                    final int 
                    cMaxLength = 128;
    void OracleSqlReadOnly();
    
                    private 
                    static 
                    final int[] 
                    copy(int[]);
    
                    private 
                    static 
                    final int[] 
                    newArray(int, int);
    
                    private 
                    static 
                    final int[] 
                    copyReplacing(int[], int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OraclePreparedStatementReadOnly.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OraclePreparedStatementReadOnly {
    
                    static Binder 
                    theStaticVarnumCopyingBinder;
    
                    static Binder 
                    theStaticVarnumNullBinder;
    
                    static Binder 
                    theStaticBooleanBinder;
    
                    static Binder 
                    theStaticByteBinder;
    
                    static Binder 
                    theStaticShortBinder;
    
                    static Binder 
                    theStaticIntBinder;
    
                    static Binder 
                    theStaticLongBinder;
    
                    static Binder 
                    theStaticFloatBinder;
    
                    static Binder 
                    theStaticDoubleBinder;
    
                    static Binder 
                    theStaticBigDecimalBinder;
    
                    static Binder 
                    theStaticVarcharCopyingBinder;
    
                    static Binder 
                    theStaticVarcharNullBinder;
    
                    static Binder 
                    theStaticStringBinder;
    
                    static Binder 
                    theStaticSetCHARCopyingBinder;
    
                    static Binder 
                    theStaticSetCHARBinder;
    
                    static Binder 
                    theStaticLittleEndianSetCHARBinder;
    
                    static Binder 
                    theStaticSetCHARNullBinder;
    
                    static Binder 
                    theStaticFixedCHARCopyingBinder;
    
                    static Binder 
                    theStaticFixedCHARBinder;
    
                    static Binder 
                    theStaticFixedCHARNullBinder;
    
                    static Binder 
                    theStaticDateCopyingBinder;
    
                    static Binder 
                    theStaticDateBinder;
    
                    static Binder 
                    theStaticDateNullBinder;
    
                    static Binder 
                    theStaticTimeCopyingBinder;
    
                    static Binder 
                    theStaticTimeBinder;
    
                    static Binder 
                    theStaticTimestampCopyingBinder;
    
                    static Binder 
                    theStaticTimestampBinder;
    
                    static Binder 
                    theStaticTimestampNullBinder;
    
                    static Binder 
                    theStaticOracleNumberBinder;
    
                    static Binder 
                    theStaticOracleDateBinder;
    
                    static Binder 
                    theStaticOracleTimestampBinder;
    
                    static Binder 
                    theStaticTSTZCopyingBinder;
    
                    static Binder 
                    theStaticTSTZBinder;
    
                    static Binder 
                    theStaticTSTZNullBinder;
    
                    static Binder 
                    theStaticTSLTZCopyingBinder;
    
                    static Binder 
                    theStaticTSLTZBinder;
    
                    static Binder 
                    theStaticTSLTZNullBinder;
    
                    static Binder 
                    theStaticRowidCopyingBinder;
    
                    static Binder 
                    theStaticRowidBinder;
    
                    static Binder 
                    theStaticLittleEndianRowidBinder;
    
                    static Binder 
                    theStaticRowidNullBinder;
    
                    static Binder 
                    theStaticIntervalDSCopyingBinder;
    
                    static Binder 
                    theStaticIntervalDSBinder;
    
                    static Binder 
                    theStaticIntervalDSNullBinder;
    
                    static Binder 
                    theStaticIntervalYMCopyingBinder;
    
                    static Binder 
                    theStaticIntervalYMBinder;
    
                    static Binder 
                    theStaticIntervalYMNullBinder;
    
                    static Binder 
                    theStaticBfileCopyingBinder;
    
                    static Binder 
                    theStaticBfileBinder;
    
                    static Binder 
                    theStaticBfileNullBinder;
    
                    static Binder 
                    theStaticBlobCopyingBinder;
    
                    static Binder 
                    theStaticBlobBinder;
    
                    static Binder 
                    theStaticBlobNullBinder;
    
                    static Binder 
                    theStaticClobCopyingBinder;
    
                    static Binder 
                    theStaticClobBinder;
    
                    static Binder 
                    theStaticClobNullBinder;
    
                    static Binder 
                    theStaticRawCopyingBinder;
    
                    static Binder 
                    theStaticRawBinder;
    
                    static Binder 
                    theStaticRawNullBinder;
    
                    static Binder 
                    theStaticPlsqlRawCopyingBinder;
    
                    static Binder 
                    theStaticPlsqlRawBinder;
    
                    static Binder 
                    theStaticBinaryFloatCopyingBinder;
    
                    static Binder 
                    theStaticBinaryFloatBinder;
    
                    static Binder 
                    theStaticBinaryFloatNullBinder;
    
                    static Binder 
                    theStaticBinaryDoubleCopyingBinder;
    
                    static Binder 
                    theStaticBinaryDoubleBinder;
    
                    static Binder 
                    theStaticBinaryDoubleNullBinder;
    
                    static Binder 
                    theStaticBINARY_FLOATCopyingBinder;
    
                    static Binder 
                    theStaticBINARY_FLOATBinder;
    
                    static Binder 
                    theStaticBINARY_FLOATNullBinder;
    
                    static Binder 
                    theStaticBINARY_DOUBLECopyingBinder;
    
                    static Binder 
                    theStaticBINARY_DOUBLEBinder;
    
                    static Binder 
                    theStaticBINARY_DOUBLENullBinder;
    
                    static Binder 
                    theStaticLongStreamBinder;
    
                    static Binder 
                    theStaticLongRawStreamBinder;
    
                    static Binder 
                    theStaticNamedTypeCopyingBinder;
    
                    static Binder 
                    theStaticNamedTypeBinder;
    
                    static Binder 
                    theStaticNamedTypeNullBinder;
    
                    static Binder 
                    theStaticRefTypeCopyingBinder;
    
                    static Binder 
                    theStaticRefTypeBinder;
    
                    static Binder 
                    theStaticRefTypeNullBinder;
    
                    static Binder 
                    theStaticPlsqlIbtCopyingBinder;
    
                    static Binder 
                    theStaticPlsqlIbtBinder;
    
                    static Binder 
                    theStaticPlsqlIbtNullBinder;
    
                    static Binder 
                    theStaticOutBinder;
    
                    static Binder 
                    theStaticReturnParamBinder;
    
                    static Binder 
                    theStaticT4CRowidCopyingBinder;
    
                    static Binder 
                    theStaticT4CRowidBinder;
    
                    static Binder 
                    theStaticT4CRowidNullBinder;
    void OraclePreparedStatementReadOnly();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/CopiedNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class CopiedNullBinder 
                    extends Binder {
    void CopiedNullBinder(short, int);
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/CopiedByteBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class CopiedByteBinder 
                    extends Binder {
    byte[] 
                    value;
    short 
                    len;
    void CopiedByteBinder(short, int, byte[], short);
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/CopiedCharBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class CopiedCharBinder 
                    extends Binder {
    char[] 
                    value;
    short 
                    len;
    void CopiedCharBinder(short, char[], short);
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/ByteCopyingBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class ByteCopyingBinder 
                    extends Binder {
    void ByteCopyingBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/VarnumCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class VarnumCopyingBinder 
                    extends ByteCopyingBinder {
    void VarnumCopyingBinder();
}

                

oracle/jdbc/driver/VarnumBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class VarnumBinder 
                    extends Binder {
    
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    static 
                    final boolean 
                    SLOW_CONVERSIONS = 1;
    Binder 
                    theVarnumCopyingBinder;
    
                    static 
                    final int 
                    LNXSGNBT = 128;
    
                    static 
                    final byte 
                    LNXDIGS = 20;
    
                    static 
                    final byte 
                    LNXEXPBS = 64;
    
                    static 
                    final int 
                    LNXEXPMX = 127;
    
                    static 
                    final double[] 
                    factorTable;
    
                    static 
                    final int 
                    MANTISSA_SIZE = 53;
    
                    static 
                    final int 
                    expShift = 52;
    
                    static 
                    final long 
                    fractHOB = 4503599627370496;
    
                    static 
                    final long 
                    fractMask = 4503599627370495;
    
                    static 
                    final int 
                    expBias = 1023;
    
                    static 
                    final int 
                    maxSmallBinExp = 62;
    
                    static 
                    final int 
                    minSmallBinExp = -21;
    
                    static 
                    final long 
                    expOne = 4607182418800017408;
    
                    static 
                    final long 
                    highbyte = -72057594037927936;
    
                    static 
                    final long 
                    highbit = -9223372036854775808;
    
                    static 
                    final long 
                    lowbytes = 72057594037927935;
    
                    static 
                    final int[] 
                    small5pow;
    
                    static 
                    final long[] 
                    long5pow;
    
                    static 
                    final int[] 
                    n5bits;
    
                    static FDBigInt[] 
                    b5p;
    
                    static void 
                    init(Binder);
    void VarnumBinder();
    Binder 
                    copyingBinder();
    
                    static int 
                    setLongInternal(byte[], int, long);
    
                    static int 
                    countBits(long);
    boolean 
                    roundup(char[], int);
    
                    static 
                    synchronized FDBigInt 
                    big5pow(int);
    
                    static FDBigInt 
                    multPow52(FDBigInt, int, int);
    
                    static FDBigInt 
                    constructPow52(int, int);
    int 
                    dtoa(byte[], int, double, boolean, boolean, char[], int, long, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/FDBigInt.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class FDBigInt {
    int 
                    nWords;
    int[] 
                    data;
    void FDBigInt(int);
    void FDBigInt(long);
    void FDBigInt(FDBigInt);
    void FDBigInt(int[], int);
    void 
                    lshiftMe(int) 
                    throws IllegalArgumentException;
    int 
                    normalizeMe() 
                    throws IllegalArgumentException;
    FDBigInt 
                    mult(int);
    FDBigInt 
                    mult(FDBigInt);
    FDBigInt 
                    add(FDBigInt);
    int 
                    cmp(FDBigInt);
    int 
                    quoRemIteration(FDBigInt) 
                    throws IllegalArgumentException;
}

                

oracle/jdbc/driver/VarnumNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class VarnumNullBinder 
                    extends VarnumBinder {
    void VarnumNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BooleanBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BooleanBinder 
                    extends VarnumBinder {
    void BooleanBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/ByteBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ByteBinder 
                    extends VarnumBinder {
    void ByteBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/ShortBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ShortBinder 
                    extends VarnumBinder {
    void ShortBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/IntBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntBinder 
                    extends VarnumBinder {
    void IntBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/LongBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LongBinder 
                    extends VarnumBinder {
    void LongBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/FloatBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class FloatBinder 
                    extends VarnumBinder {
    void FloatBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/DoubleBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class DoubleBinder 
                    extends VarnumBinder {
    char[] 
                    digits;
    void DoubleBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/BigDecimalBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BigDecimalBinder 
                    extends VarnumBinder {
    void BigDecimalBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/BinaryFloatBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryFloatBinder 
                    extends Binder {
    Binder 
                    theBinaryFloatCopyingBinder;
    
                    static void 
                    init(Binder);
    void BinaryFloatBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/BinaryFloatNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryFloatNullBinder 
                    extends BinaryFloatBinder {
    void BinaryFloatNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BinaryFloatCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryFloatCopyingBinder 
                    extends BinaryFloatBinder {
    void BinaryFloatCopyingBinder();
}

                

oracle/jdbc/driver/BinaryDoubleBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryDoubleBinder 
                    extends Binder {
    Binder 
                    theBinaryDoubleCopyingBinder;
    
                    static void 
                    init(Binder);
    void BinaryDoubleBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/BinaryDoubleNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryDoubleNullBinder 
                    extends BinaryDoubleBinder {
    void BinaryDoubleNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BinaryDoubleCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryDoubleCopyingBinder 
                    extends BinaryDoubleBinder {
    void BinaryDoubleCopyingBinder();
}

                

oracle/jdbc/driver/CharCopyingBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class CharCopyingBinder 
                    extends Binder {
    void CharCopyingBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/VarcharCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class VarcharCopyingBinder 
                    extends CharCopyingBinder {
    void VarcharCopyingBinder();
}

                

oracle/jdbc/driver/VarcharBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class VarcharBinder 
                    extends Binder {
    Binder 
                    theVarcharCopyingBinder;
    
                    static void 
                    init(Binder);
    void VarcharBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/VarcharNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class VarcharNullBinder 
                    extends VarcharBinder {
    void VarcharNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/StringBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class StringBinder 
                    extends VarcharBinder {
    void StringBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/SetCHARCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class SetCHARCopyingBinder 
                    extends CharCopyingBinder {
    void SetCHARCopyingBinder();
}

                

oracle/jdbc/driver/SetCHARBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class SetCHARBinder 
                    extends Binder {
    Binder 
                    theSetCHARCopyingBinder;
    
                    static void 
                    init(Binder);
    void SetCHARBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/LittleEndianSetCHARBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LittleEndianSetCHARBinder 
                    extends SetCHARBinder {
    void LittleEndianSetCHARBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/SetCHARNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class SetCHARNullBinder 
                    extends SetCHARBinder {
    void SetCHARNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/FixedCHARCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class FixedCHARCopyingBinder 
                    extends CharCopyingBinder {
    void FixedCHARCopyingBinder();
}

                

oracle/jdbc/driver/FixedCHARBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class FixedCHARBinder 
                    extends Binder {
    Binder 
                    theFixedCHARCopyingBinder;
    
                    static void 
                    init(Binder);
    void FixedCHARBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/FixedCHARNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class FixedCHARNullBinder 
                    extends FixedCHARBinder {
    void FixedCHARNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/DateCommonBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class DateCommonBinder 
                    extends Binder {
    
                    static 
                    final int 
                    GREGORIAN_CUTOVER_YEAR = 1582;
    
                    static 
                    final long 
                    GREGORIAN_CUTOVER = -12219292800000;
    
                    static 
                    final int 
                    JAN_1_1_JULIAN_DAY = 1721426;
    
                    static 
                    final int 
                    EPOCH_JULIAN_DAY = 2440588;
    
                    static 
                    final int 
                    ONE_SECOND = 1000;
    
                    static 
                    final int 
                    ONE_MINUTE = 60000;
    
                    static 
                    final int 
                    ONE_HOUR = 3600000;
    
                    static 
                    final long 
                    ONE_DAY = 86400000;
    
                    static 
                    final int[] 
                    NUM_DAYS;
    
                    static 
                    final int[] 
                    LEAP_NUM_DAYS;
    
                    static 
                    final int[] 
                    MONTH_LENGTH;
    
                    static 
                    final int[] 
                    LEAP_MONTH_LENGTH;
    
                    static 
                    final int 
                    ORACLE_DATE_CENTURY = 0;
    
                    static 
                    final int 
                    ORACLE_DATE_YEAR = 1;
    
                    static 
                    final int 
                    ORACLE_DATE_MONTH = 2;
    
                    static 
                    final int 
                    ORACLE_DATE_DAY = 3;
    
                    static 
                    final int 
                    ORACLE_DATE_HOUR = 4;
    
                    static 
                    final int 
                    ORACLE_DATE_MIN = 5;
    
                    static 
                    final int 
                    ORACLE_DATE_SEC = 6;
    
                    static 
                    final int 
                    ORACLE_DATE_NANO1 = 7;
    
                    static 
                    final int 
                    ORACLE_DATE_NANO2 = 8;
    
                    static 
                    final int 
                    ORACLE_DATE_NANO3 = 9;
    
                    static 
                    final int 
                    ORACLE_DATE_NANO4 = 10;
    void DateCommonBinder();
    
                    static 
                    final long 
                    floorDivide(long, long);
    
                    static 
                    final int 
                    floorDivide(int, int);
    
                    static 
                    final int 
                    floorDivide(int, int, int[]);
    
                    static 
                    final int 
                    floorDivide(long, int, int[]);
    
                    static 
                    final long 
                    zoneOffset(java.util.TimeZone, int, int, int, int, int);
    
                    static void 
                    setOracleNanos(long, byte[], int);
    
                    static void 
                    setOracleHMS(int, byte[], int);
    
                    static int 
                    setOracleCYMD(long, byte[], int, OraclePreparedStatement);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/DateBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class DateBinder 
                    extends DateCommonBinder {
    Binder 
                    theDateCopyingBinder;
    
                    static void 
                    init(Binder);
    void DateBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/DateNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class DateNullBinder 
                    extends DateBinder {
    void DateNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/DateCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class DateCopyingBinder 
                    extends ByteCopyingBinder {
    void DateCopyingBinder();
}

                

oracle/jdbc/driver/TimeBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimeBinder 
                    extends DateCommonBinder {
    Binder 
                    theTimeCopyingBinder;
    
                    static void 
                    init(Binder);
    void TimeBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/TimeCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimeCopyingBinder 
                    extends ByteCopyingBinder {
    void TimeCopyingBinder();
}

                

oracle/jdbc/driver/TimestampBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimestampBinder 
                    extends DateCommonBinder {
    Binder 
                    theTimestampCopyingBinder;
    
                    static void 
                    init(Binder);
    void TimestampBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/TimestampNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimestampNullBinder 
                    extends TimestampBinder {
    void TimestampNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/DatumBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class DatumBinder 
                    extends Binder {
    void DatumBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/TimestampCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimestampCopyingBinder 
                    extends ByteCopyingBinder {
    void TimestampCopyingBinder();
}

                

oracle/jdbc/driver/BINARY_FLOATBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BINARY_FLOATBinder 
                    extends DatumBinder {
    Binder 
                    theBINARY_FLOATCopyingBinder;
    
                    static void 
                    init(Binder);
    void BINARY_FLOATBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BINARY_FLOATCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BINARY_FLOATCopyingBinder 
                    extends ByteCopyingBinder {
    void BINARY_FLOATCopyingBinder();
}

                

oracle/jdbc/driver/BINARY_FLOATNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BINARY_FLOATNullBinder 
                    extends BINARY_FLOATBinder {
    void BINARY_FLOATNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BINARY_DOUBLEBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BINARY_DOUBLEBinder 
                    extends DatumBinder {
    Binder 
                    theBINARY_DOUBLECopyingBinder;
    
                    static void 
                    init(Binder);
    void BINARY_DOUBLEBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BINARY_DOUBLECopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BINARY_DOUBLECopyingBinder 
                    extends ByteCopyingBinder {
    void BINARY_DOUBLECopyingBinder();
}

                

oracle/jdbc/driver/BINARY_DOUBLENullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BINARY_DOUBLENullBinder 
                    extends BINARY_DOUBLEBinder {
    void BINARY_DOUBLENullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/OracleNumberBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleNumberBinder 
                    extends DatumBinder {
    Binder 
                    theVarnumCopyingBinder;
    
                    static void 
                    init(Binder);
    void OracleNumberBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/OracleDateBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleDateBinder 
                    extends DatumBinder {
    Binder 
                    theDateCopyingBinder;
    
                    static void 
                    init(Binder);
    void OracleDateBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/OracleTimestampBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleTimestampBinder 
                    extends DatumBinder {
    Binder 
                    theTimestampCopyingBinder;
    
                    static void 
                    init(Binder);
    void OracleTimestampBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/TSTZBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TSTZBinder 
                    extends DatumBinder {
    Binder 
                    theTSTZCopyingBinder;
    
                    static void 
                    init(Binder);
    void TSTZBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/TSTZCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TSTZCopyingBinder 
                    extends ByteCopyingBinder {
    void TSTZCopyingBinder();
}

                

oracle/jdbc/driver/TSTZNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TSTZNullBinder 
                    extends TSTZBinder {
    void TSTZNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/TSLTZBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TSLTZBinder 
                    extends DatumBinder {
    Binder 
                    theTSLTZCopyingBinder;
    
                    static void 
                    init(Binder);
    void TSLTZBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/TSLTZCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TSLTZCopyingBinder 
                    extends ByteCopyingBinder {
    void TSLTZCopyingBinder();
}

                

oracle/jdbc/driver/TSLTZNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TSLTZNullBinder 
                    extends TSLTZBinder {
    void TSLTZNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/RowidBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RowidBinder 
                    extends Binder {
    Binder 
                    theRowidCopyingBinder;
    
                    static void 
                    init(Binder);
    void RowidBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/LittleEndianRowidBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LittleEndianRowidBinder 
                    extends RowidBinder {
    void LittleEndianRowidBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/RowidCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RowidCopyingBinder 
                    extends ByteCopyingBinder {
    void RowidCopyingBinder();
}

                

oracle/jdbc/driver/RowidNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RowidNullBinder 
                    extends RowidBinder {
    void RowidNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/IntervalDSBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervalDSBinder 
                    extends DatumBinder {
    Binder 
                    theIntervalDSCopyingBinder;
    
                    static void 
                    init(Binder);
    void IntervalDSBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/IntervalDSCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervalDSCopyingBinder 
                    extends ByteCopyingBinder {
    void IntervalDSCopyingBinder();
}

                

oracle/jdbc/driver/IntervalDSNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervalDSNullBinder 
                    extends IntervalDSBinder {
    void IntervalDSNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/IntervalYMBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervalYMBinder 
                    extends DatumBinder {
    Binder 
                    theIntervalYMCopyingBinder;
    
                    static void 
                    init(Binder);
    void IntervalYMBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/IntervalYMCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervalYMCopyingBinder 
                    extends ByteCopyingBinder {
    void IntervalYMCopyingBinder();
}

                

oracle/jdbc/driver/IntervalYMNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervalYMNullBinder 
                    extends IntervalYMBinder {
    void IntervalYMNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BfileBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BfileBinder 
                    extends DatumBinder {
    Binder 
                    theBfileCopyingBinder;
    
                    static void 
                    init(Binder);
    void BfileBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BfileCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BfileCopyingBinder 
                    extends ByteCopyingBinder {
    void BfileCopyingBinder();
}

                

oracle/jdbc/driver/BfileNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BfileNullBinder 
                    extends BfileBinder {
    void BfileNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BlobBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BlobBinder 
                    extends DatumBinder {
    Binder 
                    theBlobCopyingBinder;
    
                    static void 
                    init(Binder);
    void BlobBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/BlobCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BlobCopyingBinder 
                    extends ByteCopyingBinder {
    void BlobCopyingBinder();
}

                

oracle/jdbc/driver/BlobNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BlobNullBinder 
                    extends BlobBinder {
    void BlobNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/ClobBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ClobBinder 
                    extends DatumBinder {
    Binder 
                    theClobCopyingBinder;
    
                    static void 
                    init(Binder);
    void ClobBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/ClobCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ClobCopyingBinder 
                    extends ByteCopyingBinder {
    void ClobCopyingBinder();
}

                

oracle/jdbc/driver/ClobNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ClobNullBinder 
                    extends ClobBinder {
    void ClobNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/RawBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RawBinder 
                    extends DatumBinder {
    Binder 
                    theRawCopyingBinder;
    
                    static void 
                    init(Binder);
    void RawBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/RawCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RawCopyingBinder 
                    extends ByteCopyingBinder {
    void RawCopyingBinder();
}

                

oracle/jdbc/driver/PlsqlRawBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class PlsqlRawBinder 
                    extends DatumBinder {
    Binder 
                    thePlsqlRawCopyingBinder;
    
                    static void 
                    init(Binder);
    void PlsqlRawBinder();
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/PlsqlRawCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class PlsqlRawCopyingBinder 
                    extends ByteCopyingBinder {
    void PlsqlRawCopyingBinder();
}

                

oracle/jdbc/driver/RawNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RawNullBinder 
                    extends RawBinder {
    void RawNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/LongStreamBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LongStreamBinder 
                    extends Binder {
    void LongStreamBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/LongRawStreamBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LongRawStreamBinder 
                    extends Binder {
    void LongRawStreamBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/TypeBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class TypeBinder 
                    extends Binder {
    
                    public 
                    static 
                    final int 
                    BYTELEN = 24;
    void TypeBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/TypeCopyingBinder.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class TypeCopyingBinder 
                    extends Binder {
    void TypeCopyingBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/NamedTypeBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class NamedTypeBinder 
                    extends TypeBinder {
    Binder 
                    theNamedTypeCopyingBinder;
    void NamedTypeBinder();
    
                    static void 
                    init(Binder);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/NamedTypeCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class NamedTypeCopyingBinder 
                    extends TypeCopyingBinder {
    void NamedTypeCopyingBinder();
}

                

oracle/jdbc/driver/NamedTypeNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class NamedTypeNullBinder 
                    extends NamedTypeBinder {
    void NamedTypeNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/RefTypeBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RefTypeBinder 
                    extends TypeBinder {
    Binder 
                    theRefTypeCopyingBinder;
    void RefTypeBinder();
    
                    static void 
                    init(Binder);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/RefTypeCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RefTypeCopyingBinder 
                    extends TypeCopyingBinder {
    void RefTypeCopyingBinder();
}

                

oracle/jdbc/driver/RefTypeNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RefTypeNullBinder 
                    extends RefTypeBinder {
    void RefTypeNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/PlsqlIbtBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class PlsqlIbtBinder 
                    extends Binder {
    Binder 
                    thePlsqlIbtCopyingBinder;
    void PlsqlIbtBinder();
    
                    static void 
                    init(Binder);
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean) 
                    throws java.sql.SQLException;
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/PlsqlIbtCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class PlsqlIbtCopyingBinder 
                    extends PlsqlIbtBinder {
    void PlsqlIbtCopyingBinder();
}

                

oracle/jdbc/driver/PlsqlIbtNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class PlsqlIbtNullBinder 
                    extends PlsqlIbtBinder {
    void PlsqlIbtNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/OutBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OutBinder 
                    extends Binder {
    void OutBinder();
    Binder 
                    copyingBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/ReturnParamBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ReturnParamBinder 
                    extends Binder {
    Binder 
                    copyingBinder();
    void ReturnParamBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
}

                

oracle/jdbc/driver/T4CRowidBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CRowidBinder 
                    extends RowidBinder {
    
                    static void 
                    init(Binder);
    void T4CRowidBinder();
}

                

oracle/jdbc/driver/T4CRowidNullBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CRowidNullBinder 
                    extends T4CRowidBinder {
    void T4CRowidNullBinder();
    void 
                    bind(OraclePreparedStatement, int, int, int, byte[], char[], short[], int, int, int, int, int, int, boolean);
    Binder 
                    copyingBinder();
}

                

oracle/jdbc/driver/T4CRowidCopyingBinder.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CRowidCopyingBinder 
                    extends RowidCopyingBinder {
    void T4CRowidCopyingBinder();
}

                

oracle/jdbc/driver/DMSFactory.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class DMSFactory {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void DMSFactory();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CConnection$1.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CConnection$1 
                    implements java.security.PrivilegedAction {
    void T2CConnection$1();
    
                    public Object 
                    run();
}

                

oracle/jdbc/driver/T2CConnection.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class T2CConnection 
                    extends PhysicalConnection 
                    implements oracle.sql.BfileDBAccess, oracle.sql.BlobDBAccess, oracle.sql.ClobDBAccess {
    short[] 
                    queryMetaData1;
    byte[] 
                    queryMetaData2;
    int 
                    queryMetaData1Offset;
    int 
                    queryMetaData2Offset;
    
                    private String 
                    password;
    int 
                    fatalErrorNumber;
    String 
                    fatalErrorMessage;
    
                    static 
                    final int 
                    QMD_dbtype = 0;
    
                    static 
                    final int 
                    QMD_dbsize = 1;
    
                    static 
                    final int 
                    QMD_nullok = 2;
    
                    static 
                    final int 
                    QMD_precision = 3;
    
                    static 
                    final int 
                    QMD_scale = 4;
    
                    static 
                    final int 
                    QMD_formOfUse = 5;
    
                    static 
                    final int 
                    QMD_columnNameLength = 6;
    
                    static 
                    final int 
                    QMD_tdo0 = 7;
    
                    static 
                    final int 
                    QMD_tdo1 = 8;
    
                    static 
                    final int 
                    QMD_tdo2 = 9;
    
                    static 
                    final int 
                    QMD_tdo3 = 10;
    
                    static 
                    final int 
                    QMD_charLength = 11;
    
                    static 
                    final int 
                    QMD_typeNameLength = 12;
    
                    static 
                    final int 
                    T2C_LOCATOR_MAX_LEN = 16;
    
                    static 
                    final int 
                    T2C_LINEARIZED_LOCATOR_MAX_LEN = 4000;
    
                    static 
                    final int 
                    T2C_LINEARIZED_BFILE_LOCATOR_MAX_LEN = 530;
    
                    static 
                    final int 
                    METADATA1_INDICES_PER_COLUMN = 13;
    
                    protected 
                    static 
                    final int 
                    SIZEOF_QUERYMETADATA2 = 8;
    int 
                    queryMetaData1Size;
    int 
                    queryMetaData2Size;
    long 
                    m_nativeState;
    short 
                    m_clientCharacterSet;
    byte 
                    byteAlign;
    
                    private 
                    static 
                    final int 
                    EOJ_SUCCESS = 0;
    
                    private 
                    static 
                    final int 
                    EOJ_ERROR = -1;
    
                    private 
                    static 
                    final int 
                    EOJ_WARNING = 1;
    
                    private 
                    static 
                    final String 
                    OCILIBRARY = ocijdbc10;
    
                    private int 
                    logon_mode;
    
                    static 
                    final int 
                    LOGON_MODE_DEFAULT = 0;
    
                    static 
                    final int 
                    LOGON_MODE_SYSDBA = 2;
    
                    static 
                    final int 
                    LOGON_MODE_SYSOPER = 4;
    
                    static 
                    final int 
                    LOGON_MODE_CONNECTION_POOL = 5;
    
                    static 
                    final int 
                    LOGON_MODE_CONNPOOL_CONNECTION = 6;
    
                    static 
                    final int 
                    LOGON_MODE_CONNPOOL_PROXY_CONNECTION = 7;
    
                    static 
                    final int 
                    LOGON_MODE_CONNPOOL_ALIASED_CONNECTION = 8;
    
                    static 
                    final int 
                    T2C_PROXYTYPE_NONE = 0;
    
                    static 
                    final int 
                    T2C_PROXYTYPE_USER_NAME = 1;
    
                    static 
                    final int 
                    T2C_PROXYTYPE_DISTINGUISHED_NAME = 2;
    
                    static 
                    final int 
                    T2C_PROXYTYPE_CERTIFICATE = 3;
    
                    private 
                    static boolean 
                    isLibraryLoaded;
    oracle.jdbc.OracleOCIFailover 
                    appCallback;
    Object 
                    appCallbackObject;
    
                    private java.util.Properties 
                    nativeInfo;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    
                    protected void T2CConnection(String, String, String, String, java.util.Properties, OracleDriverExtension) 
                    throws java.sql.SQLException;
    
                    final void 
                    initializePassword(String) 
                    throws java.sql.SQLException;
    
                    protected void 
                    initialize();
    
                    private void 
                    allocQueryMetaDataBuffers();
    void 
                    reallocateQueryMetaData(int, int);
    
                    protected void 
                    logon() 
                    throws java.sql.SQLException;
    
                    protected void 
                    logoff() 
                    throws java.sql.SQLException;
    
                    public void 
                    open(OracleStatement) 
                    throws java.sql.SQLException;
    void 
                    doCancel() 
                    throws java.sql.SQLException;
    
                    native int 
                    t2cAbort(long);
    void 
                    doAbort() 
                    throws java.sql.SQLException;
    
                    protected void 
                    doSetAutoCommit(boolean) 
                    throws java.sql.SQLException;
    
                    protected void 
                    doCommit() 
                    throws java.sql.SQLException;
    
                    protected void 
                    doRollback() 
                    throws java.sql.SQLException;
    
                    protected String 
                    doGetDatabaseProductVersion() 
                    throws java.sql.SQLException;
    
                    protected short 
                    doGetVersionNumber() 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ClobDBAccess 
                    createClobDBAccess();
    
                    public oracle.sql.BlobDBAccess 
                    createBlobDBAccess();
    
                    public oracle.sql.BfileDBAccess 
                    createBfileDBAccess();
    
                    public oracle.sql.CLOB 
                    createClob(byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    createClob(byte[], short) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BLOB 
                    createBlob(byte[]) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BFILE 
                    createBfile(byte[]) 
                    throws java.sql.SQLException;
    
                    protected java.sql.SQLWarning 
                    checkError(int) 
                    throws java.sql.SQLException;
    
                    protected java.sql.SQLWarning 
                    checkError(int, java.sql.SQLWarning) 
                    throws java.sql.SQLException;
    OracleStatement 
                    RefCursorBytesToStatement(byte[], OracleStatement) 
                    throws java.sql.SQLException;
    
                    public void 
                    getForm(oracle.jdbc.oracore.OracleTypeADT, oracle.jdbc.oracore.OracleTypeCLOB, int) 
                    throws java.sql.SQLException;
    
                    public long 
                    getTdoCState(String, String) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getDBAccessProperties() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Properties 
                    getOCIHandles() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getServerSessionInfo() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getConnectionPoolInfo() 
                    throws java.sql.SQLException;
    
                    public void 
                    setConnectionPoolInfo(int, int, int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    ociPasswordChange(String, String, String) 
                    throws java.sql.SQLException;
    
                    private void 
                    processOCIConnectionPooling() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isDescriptorSharable(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    native int 
                    blobRead(long, byte[], int, long, int, byte[], int);
    
                    native int 
                    clobRead(long, byte[], int, long, int, char[], int, boolean);
    
                    native int 
                    blobWrite(long, byte[], int, long, int, byte[], int, byte[][]);
    
                    native int 
                    clobWrite(long, byte[], int, long, int, char[], int, byte[][], boolean);
    
                    native long 
                    lobGetLength(long, byte[], int);
    
                    native int 
                    bfileOpen(long, byte[], int, byte[][]);
    
                    native int 
                    bfileIsOpen(long, byte[], int, boolean[]);
    
                    native int 
                    bfileExists(long, byte[], int, boolean[]);
    
                    native String 
                    bfileGetName(long, byte[], int);
    
                    native String 
                    bfileGetDirAlias(long, byte[], int);
    
                    native int 
                    bfileClose(long, byte[], int, byte[][]);
    
                    native int 
                    lobGetChunkSize(long, byte[], int);
    
                    native int 
                    lobTrim(long, int, long, byte[], int, byte[][]);
    
                    native int 
                    lobCreateTemporary(long, int, boolean, int, short, byte[][]);
    
                    native int 
                    lobFreeTemporary(long, int, byte[], int, byte[][]);
    
                    native int 
                    lobIsTemporary(long, int, byte[], int, boolean[]);
    
                    native int 
                    lobOpen(long, int, byte[], int, int, byte[][]);
    
                    native int 
                    lobIsOpen(long, int, byte[], int, boolean[]);
    
                    native int 
                    lobClose(long, int, byte[], int, byte[][]);
    
                    private long 
                    lobLength(byte[]) 
                    throws java.sql.SQLException;
    
                    private int 
                    blobRead(byte[], long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    private int 
                    blobWrite(byte[], long, byte[], byte[][], int, int) 
                    throws java.sql.SQLException;
    
                    private int 
                    clobWrite(byte[], long, char[], byte[][], boolean, int, int) 
                    throws java.sql.SQLException;
    
                    private int 
                    lobGetChunkSize(byte[]) 
                    throws java.sql.SQLException;
    
                    public long 
                    length(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.BFILE, byte[], long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.BFILE, oracle.sql.BFILE, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    getBytes(oracle.sql.BFILE, long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public String 
                    getName(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public String 
                    getDirAlias(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    openFile(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFileOpen(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    fileExists(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    closeFile(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void 
                    open(oracle.sql.BFILE, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    close(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isOpen(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newInputStream(oracle.sql.BFILE, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newConversionInputStream(oracle.sql.BFILE, int) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    newConversionReader(oracle.sql.BFILE, int) 
                    throws java.sql.SQLException;
    
                    public long 
                    length(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.BLOB, byte[], long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.BLOB, oracle.sql.BLOB, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    getBytes(oracle.sql.BLOB, long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    putBytes(oracle.sql.BLOB, long, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getChunkSize(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    trim(oracle.sql.BLOB, long) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.BLOB 
                    createTemporaryBlob(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    freeTemporary(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTemporary(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    open(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    close(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isOpen(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newInputStream(oracle.sql.BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    newOutputStream(oracle.sql.BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newConversionInputStream(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    newConversionReader(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public long 
                    length(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.CLOB, String, long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.CLOB, oracle.sql.CLOB, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    getChars(oracle.sql.CLOB, long, int, char[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    putChars(oracle.sql.CLOB, long, char[], int, int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getChunkSize(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    trim(oracle.sql.CLOB, long) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.CLOB 
                    createTemporaryClob(java.sql.Connection, boolean, int, short) 
                    throws java.sql.SQLException;
    
                    public void 
                    freeTemporary(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTemporary(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void 
                    open(oracle.sql.CLOB, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    close(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isOpen(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newInputStream(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    newOutputStream(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    newReader(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.Writer 
                    newWriter(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerTAFCallback(oracle.jdbc.OracleOCIFailover, Object) 
                    throws java.sql.SQLException;
    
                    synchronized int 
                    callTAFCallbackMethod(int, int);
    
                    public int 
                    getHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public int 
                    getOCIEnvHeapAllocSize() 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final short 
                    getClientCharSetId();
    
                    public 
                    static short 
                    getDriverCharSetIdFromNLS_LANG(java.util.Properties) 
                    throws java.sql.SQLException;
    void 
                    doProxySession(int, java.util.Properties) 
                    throws java.sql.SQLException;
    void 
                    closeProxySession() 
                    throws java.sql.SQLException;
    
                    protected void 
                    doDescribeTable(AutoKeyInfo) 
                    throws java.sql.SQLException;
    
                    private void 
                    processDescribeTableData(int, AutoKeyInfo) 
                    throws java.sql.SQLException;
    void 
                    doSetApplicationContext(String, String, String) 
                    throws java.sql.SQLException;
    void 
                    doClearAllApplicationContext(String) 
                    throws java.sql.SQLException;
    
                    private 
                    static 
                    final void 
                    loadNativeLibrary(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private 
                    final void 
                    checkTrue(boolean, int) 
                    throws java.sql.SQLException;
    boolean 
                    useLittleEndianSetCHARBinder() 
                    throws java.sql.SQLException;
    
                    public void 
                    getPropertyForPooledConnection(oracle.jdbc.pool.OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    static 
                    final char[] 
                    getCharArray(String);
    
                    static String 
                    bytes2String(byte[], int, int, DBConversion) 
                    throws java.sql.SQLException;
    
                    static 
                    native short 
                    t2cGetServerSessionInfo(long, java.util.Properties);
    
                    static 
                    native short 
                    t2cGetDriverCharSetFromNlsLang();
    
                    native int 
                    t2cDescribeError(long, T2CError, byte[]);
    
                    native int 
                    t2cCreateState(byte[], int, byte[], int, byte[], int, byte[], int, short, int, short[], byte[], byte[]);
    
                    native int 
                    t2cLogon(long, byte[], int, byte[], int, byte[], int, byte[], int, int, short[], byte[], byte[]);
    
                    private 
                    native int 
                    t2cLogoff(long);
    
                    private 
                    native int 
                    t2cCancel(long);
    
                    private 
                    native int 
                    t2cCreateStatement(long, long, byte[], int, OracleStatement, boolean, int);
    
                    private 
                    native int 
                    t2cSetAutoCommit(long, boolean);
    
                    private 
                    native int 
                    t2cCommit(long);
    
                    private 
                    native int 
                    t2cRollback(long);
    
                    private 
                    native byte[] 
                    t2cGetProductionVersion(long);
    
                    private 
                    native int 
                    t2cGetVersionNumber(long);
    
                    private 
                    native int 
                    t2cGetDefaultStreamChunkSize(long);
    
                    native int 
                    t2cGetFormOfUse(long, oracle.jdbc.oracore.OracleTypeCLOB, byte[], int, int);
    
                    native long 
                    t2cGetTDO(long, byte[], int, int[]);
    
                    native int 
                    t2cCreateConnPool(byte[], int, byte[], int, byte[], int, short, int, int, int, int, int, int, int);
    
                    native int 
                    t2cConnPoolLogon(long, byte[], int, byte[], int, byte[], int, int, int, int, String[], byte[], int, byte[], int, byte[], int, byte[], int, byte[], int, short[], byte[], byte[]);
    
                    native int 
                    t2cGetConnPoolInfo(long, java.util.Properties);
    
                    native int 
                    t2cSetConnPoolInfo(long, int, int, int, int, int, int);
    
                    native int 
                    t2cPasswordChange(long, byte[], int, byte[], int, byte[], int);
    
                    protected 
                    native byte[] 
                    t2cGetConnectionId(long);
    
                    native int 
                    t2cGetHandles(long, long[]);
    
                    native int 
                    t2cUseConnection(long, long, long, long, short[]);
    
                    native boolean 
                    t2cPlatformIsLittleEndian(long);
    
                    native int 
                    t2cRegisterTAFCallback(long);
    
                    native int 
                    t2cGetHeapAllocSize(long);
    
                    native int 
                    t2cGetOciEnvHeapAllocSize(long);
    
                    native int 
                    t2cDoProxySession(long, int, byte[], int, byte[], int, byte[], int, byte[], int, int, byte[][]);
    
                    native int 
                    t2cCloseProxySession(long);
    
                    static 
                    native int 
                    t2cDescribeTable(long, byte[], int, short[], byte[], int, int, int, int);
    
                    native int 
                    t2cSetApplicationContext(long, String, String, String);
    
                    native int 
                    t2cClearAllApplicationContext(long, String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CError.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CError {
    int 
                    m_errorNumber;
    byte[] 
                    m_errorMessage;
    byte[] 
                    m_sqlState;
    void T2CError();
}

                

oracle/jdbc/driver/OracleOCIConnection.class

                    package oracle.jdbc.driver;

                    public 
                    abstract 
                    synchronized 
                    class OracleOCIConnection 
                    extends T2CConnection {
    oracle.jdbc.pool.OracleOCIConnectionPool 
                    ociConnectionPool;
    boolean 
                    isPool;
    boolean 
                    aliasing;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleOCIConnection(String, String, String, String, java.util.Properties, Object) 
                    throws java.sql.SQLException;
    void OracleOCIConnection(String, String, String, String, java.util.Properties, OracleDriverExtension) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    getConnectionId() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    passwordChange(String, String, String) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionPool(oracle.jdbc.pool.OracleOCIConnectionPool);
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int, boolean) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleTimeoutPollingThread.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleTimeoutPollingThread 
                    extends Thread {
    
                    protected 
                    static 
                    final String 
                    threadName = OracleTimeoutPollingThread;
    
                    public 
                    static 
                    final String 
                    pollIntervalProperty = oracle.jdbc.TimeoutPollInterval;
    
                    public 
                    static 
                    final String 
                    pollIntervalDefault = 1000;
    
                    private OracleTimeoutThreadPerVM[] 
                    knownTimeouts;
    
                    private int 
                    count;
    
                    private long 
                    sleepMillis;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleTimeoutPollingThread();
    
                    public 
                    synchronized void 
                    addTimeout(OracleTimeoutThreadPerVM);
    
                    public 
                    synchronized void 
                    removeTimeout(OracleTimeoutThreadPerVM);
    
                    public void 
                    run();
    
                    private void 
                    pollOnce();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleTimeoutThreadPerVM$1.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleTimeoutThreadPerVM$1 
                    implements Runnable {
    void OracleTimeoutThreadPerVM$1(OracleTimeoutThreadPerVM, OracleStatement);
    
                    public void 
                    run();
}

                

oracle/jdbc/driver/OracleTimeoutThreadPerVM.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleTimeoutThreadPerVM 
                    extends OracleTimeout {
    
                    private 
                    static 
                    final OracleTimeoutPollingThread 
                    watchdog;
    
                    private OracleStatement 
                    statement;
    
                    private long 
                    interruptAfter;
    
                    private String 
                    name;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleTimeoutThreadPerVM(String);
    void 
                    close();
    
                    synchronized void 
                    setTimeout(long, OracleStatement) 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    cancelTimeout() 
                    throws java.sql.SQLException;
    void 
                    interruptIfAppropriate(long);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/ResultSetUtil.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ResultSetUtil {
    
                    static 
                    final int[][] 
                    allRsetTypes;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void ResultSetUtil();
    
                    static OracleResultSet 
                    createScrollResultSet(ScrollRsetStatement, OracleResultSet, int) 
                    throws java.sql.SQLException;
    
                    static int 
                    getScrollType(int);
    
                    static int 
                    getUpdateConcurrency(int);
    
                    static int 
                    getRsetTypeCode(int, int) 
                    throws java.sql.SQLException;
    
                    static boolean 
                    needIdentifier(int) 
                    throws java.sql.SQLException;
    
                    static boolean 
                    needIdentifier(int, int) 
                    throws java.sql.SQLException;
    
                    static boolean 
                    needCache(int) 
                    throws java.sql.SQLException;
    
                    static boolean 
                    needCache(int, int) 
                    throws java.sql.SQLException;
    
                    static boolean 
                    supportRefreshRow(int) 
                    throws java.sql.SQLException;
    
                    static boolean 
                    supportRefreshRow(int, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleDatabaseMetaData.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleDatabaseMetaData 
                    extends oracle.jdbc.OracleDatabaseMetaData {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleDatabaseMetaData(oracle.jdbc.internal.OracleConnection);
    
                    public void OracleDatabaseMetaData(OracleConnection);
    
                    public String 
                    getTimeDateFunctions() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getColumns(String, String, String, String) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    getTypeInfo() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/ByteArrayKey.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ByteArrayKey {
    
                    private byte[] 
                    theBytes;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void ByteArrayKey(byte[]);
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleSavepoint.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleSavepoint 
                    implements oracle.jdbc.OracleSavepoint {
    
                    private 
                    static 
                    final int 
                    MAX_ID_VALUE = 65535;
    
                    private 
                    static 
                    final int 
                    INVALID_ID_VALUE = -1;
    
                    static 
                    final int 
                    NAMED_SAVEPOINT_TYPE = 2;
    
                    static 
                    final int 
                    UNNAMED_SAVEPOINT_TYPE = 1;
    
                    static 
                    final int 
                    UNKNOWN_SAVEPOINT_TYPE = 0;
    
                    private 
                    static int 
                    s_seedId;
    
                    private int 
                    m_id;
    
                    private String 
                    m_name;
    
                    private int 
                    m_type;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleSavepoint();
    void OracleSavepoint(String) 
                    throws java.sql.SQLException;
    
                    public int 
                    getSavepointId() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSavepointName() 
                    throws java.sql.SQLException;
    int 
                    getType();
    
                    private 
                    synchronized int 
                    getNextId();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/ArrayDataResultSet.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class ArrayDataResultSet 
                    extends BaseResultSet {
    oracle.sql.Datum[] 
                    data;
    java.util.Map 
                    map;
    
                    private int 
                    currentIndex;
    
                    private int 
                    lastIndex;
    boolean 
                    closed;
    PhysicalConnection 
                    connection;
    
                    private Boolean 
                    wasNull;
    
                    private 
                    static Boolean 
                    BOOLEAN_TRUE;
    
                    private 
                    static Boolean 
                    BOOLEAN_FALSE;
    
                    private int 
                    fetchSize;
    oracle.sql.ARRAY 
                    array;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void ArrayDataResultSet(OracleConnection, oracle.sql.Datum[], java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void ArrayDataResultSet(OracleConnection, oracle.sql.Datum[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void ArrayDataResultSet(OracleConnection, oracle.sql.ARRAY, long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BFILE 
                    getBfile(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized short 
                    getShort(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getInt(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    getLong(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Ref 
                    getRef(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Blob 
                    getBlob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Clob 
                    getClob(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public int 
                    getRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    setFetchSize(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getFetchSize() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/ArrayLocatorResultSet.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class ArrayLocatorResultSet 
                    extends OracleResultSetImpl {
    
                    static int 
                    COUNT_UNLIMITED;
    java.util.Map 
                    map;
    long 
                    beginIndex;
    int 
                    count;
    long 
                    currentIndex;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:33_PST_2006;
    
                    public void ArrayLocatorResultSet(OracleConnection, oracle.sql.ArrayDescriptor, byte[], java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void ArrayLocatorResultSet(OracleConnection, oracle.sql.ArrayDescriptor, byte[], long, int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/StructMetaData.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class StructMetaData 
                    implements oracle.jdbc.internal.StructMetaData {
    oracle.sql.StructDescriptor 
                    descriptor;
    oracle.jdbc.oracore.OracleTypeADT 
                    otype;
    oracle.jdbc.oracore.OracleType[] 
                    types;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    
                    public void StructMetaData(oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public int 
                    getColumnCount() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isAutoIncrement(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isSearchable(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isCurrency(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isCaseSensitive(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;
    
                    public String 
                    getOracleColumnClassName(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getLocalColumnCount() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isInherited(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    getAttributeJavaName(int) 
                    throws java.sql.SQLException;
    
                    private int 
                    getValidColumnIndex(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isNCHAR(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/Namespace.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class Namespace {
    
                    static 
                    final int 
                    ATTRIBUTE_MAX_LENGTH = 30;
    
                    static 
                    final int 
                    VALUE_MAX_LENGTH = 4000;
    String 
                    name;
    boolean 
                    clear;
    String[] 
                    keys;
    String[] 
                    values;
    int 
                    nbPairs;
    void Namespace(String);
    void 
                    clear();
    void 
                    setAttribute(String, String);
}

                

oracle/jdbc/driver/CharAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class CharAccessor 
                    extends CharCommonAccessor {
    void CharAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void CharAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/CharCommonAccessor.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class CharCommonAccessor 
                    extends Accessor {
    int 
                    internalMaxLengthNewer;
    int 
                    internalMaxLengthOlder;
    
                    static 
                    final int 
                    MAX_NB_CHAR_PLSQL = 32512;
    void CharCommonAccessor();
    void 
                    setOffsets(int);
    void 
                    init(OracleStatement, int, int, int, short, int, boolean, int, int) 
                    throws java.sql.SQLException;
    void 
                    init(OracleStatement, int, int, int, boolean, int, int, int, int, int, short, int, int) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    int 
                    getInt(int) 
                    throws java.sql.SQLException;
    boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    short 
                    getShort(int) 
                    throws java.sql.SQLException;
    byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    long 
                    getLong(int) 
                    throws java.sql.SQLException;
    float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    java.net.URL 
                    getURL(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/LongAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LongAccessor 
                    extends CharCommonAccessor {
    OracleInputStream 
                    stream;
    int 
                    columnPosition;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    void LongAccessor(OracleStatement, int, int, short, int) 
                    throws java.sql.SQLException;
    void LongAccessor(OracleStatement, int, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    OracleInputStream 
                    initForNewRow() 
                    throws java.sql.SQLException;
    void 
                    updateColumnNumber(int);
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/VarcharAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class VarcharAccessor 
                    extends CharCommonAccessor {
    void VarcharAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void VarcharAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/NumberAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class NumberAccessor 
                    extends NumberCommonAccessor {
    void NumberAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void NumberAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/NumberCommonAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class NumberCommonAccessor 
                    extends Accessor {
    
                    static 
                    final boolean 
                    GET_XXX_ROUNDS = 0;
    int[] 
                    digs;
    
                    static 
                    final int 
                    LNXSGNBT = 128;
    
                    static 
                    final byte 
                    LNXDIGS = 20;
    
                    static 
                    final byte 
                    LNXEXPBS = 64;
    
                    static 
                    final int 
                    LNXEXPMX = 127;
    
                    static 
                    final java.math.BigDecimal 
                    BIGDEC_ZERO;
    
                    static 
                    final byte 
                    MAX_LONG_EXPONENT = 9;
    
                    static 
                    final byte 
                    MIN_LONG_EXPONENT = 9;
    
                    static 
                    final byte 
                    MAX_INT_EXPONENT = 4;
    
                    static 
                    final byte 
                    MIN_INT_EXPONENT = 4;
    
                    static 
                    final byte 
                    MAX_SHORT_EXPONENT = 2;
    
                    static 
                    final byte 
                    MIN_SHORT_EXPONENT = 2;
    
                    static 
                    final byte 
                    MAX_BYTE_EXPONENT = 1;
    
                    static 
                    final byte 
                    MIN_BYTE_EXPONENT = 1;
    
                    static 
                    final int[] 
                    MAX_LONG;
    
                    static 
                    final int[] 
                    MIN_LONG;
    
                    static 
                    final int 
                    MAX_LONG_length = 11;
    
                    static 
                    final int 
                    MIN_LONG_length = 12;
    
                    static 
                    final double[] 
                    factorTable;
    
                    static 
                    final double[] 
                    small10pow;
    
                    static 
                    final int 
                    tablemax;
    
                    static 
                    final double 
                    tablemaxexponent = 127.0;
    
                    static 
                    final double 
                    tableminexponent;
    
                    static 
                    final int 
                    MANTISSA_SIZE = 53;
    
                    static 
                    final int[] 
                    expdigs0;
    
                    static 
                    final int[] 
                    expdigs1;
    
                    static 
                    final int[] 
                    expdigs2;
    
                    static 
                    final int[] 
                    expdigs3;
    
                    static 
                    final int[] 
                    expdigs4;
    
                    static 
                    final int[] 
                    expdigs5;
    
                    static 
                    final int[] 
                    expdigs6;
    
                    static 
                    final int[] 
                    expdigs7;
    
                    static 
                    final int[] 
                    expdigs8;
    
                    static 
                    final int[] 
                    expdigs9;
    
                    static 
                    final int[] 
                    expdigs10;
    
                    static 
                    final int[] 
                    expdigs11;
    
                    static 
                    final int[] 
                    expdigs12;
    
                    static 
                    final int[] 
                    expdigs13;
    
                    static 
                    final int[] 
                    expdigs14;
    
                    static 
                    final int[] 
                    expdigs15;
    
                    static 
                    final int[] 
                    expdigs16;
    
                    static 
                    final int[] 
                    expdigs17;
    
                    static 
                    final int[] 
                    expdigs18;
    
                    static 
                    final int[] 
                    expdigs19;
    
                    static 
                    final int[] 
                    expdigs20;
    
                    static 
                    final int[] 
                    expdigs21;
    
                    static 
                    final int[] 
                    expdigs22;
    
                    static 
                    final int[] 
                    expdigs23;
    
                    static 
                    final int[] 
                    expdigs24;
    
                    static 
                    final int[] 
                    expdigs25;
    
                    static 
                    final int[] 
                    expdigs26;
    
                    static 
                    final int[] 
                    expdigs27;
    
                    static 
                    final int[] 
                    expdigs28;
    
                    static 
                    final int[] 
                    expdigs29;
    
                    static 
                    final int[] 
                    expdigs30;
    
                    static 
                    final int[] 
                    expdigs31;
    
                    static 
                    final int[] 
                    expdigs32;
    
                    static 
                    final int[] 
                    expdigs33;
    
                    static 
                    final int[] 
                    expdigs34;
    
                    static 
                    final int[] 
                    expdigs35;
    
                    static 
                    final int[] 
                    expdigs36;
    
                    static 
                    final int[] 
                    expdigs37;
    
                    static 
                    final int[] 
                    expdigs38;
    
                    static 
                    final int[] 
                    expdigs39;
    
                    static 
                    final int[] 
                    expdigs40;
    
                    static 
                    final int[] 
                    expdigs41;
    
                    static 
                    final int[] 
                    expdigs42;
    
                    static 
                    final int[] 
                    expdigs43;
    
                    static 
                    final int[] 
                    expdigs44;
    
                    static 
                    final int[] 
                    expdigs45;
    
                    static 
                    final int[] 
                    expdigs46;
    
                    static 
                    final int[] 
                    expdigs47;
    
                    static 
                    final int[] 
                    expdigs48;
    
                    static 
                    final int[] 
                    expdigs49;
    
                    static 
                    final int[] 
                    expdigs50;
    
                    static 
                    final int[] 
                    expdigs51;
    
                    static 
                    final int[] 
                    expdigs52;
    
                    static 
                    final int[] 
                    expdigs53;
    
                    static 
                    final int[] 
                    expdigs54;
    
                    static 
                    final int[] 
                    expdigs55;
    
                    static 
                    final int[] 
                    expdigs56;
    
                    static 
                    final int[] 
                    expdigs57;
    
                    static 
                    final int[] 
                    expdigs58;
    
                    static 
                    final int[] 
                    expdigs59;
    
                    static 
                    final int[] 
                    expdigs60;
    
                    static 
                    final int[] 
                    expdigs61;
    
                    static 
                    final int[] 
                    expdigs62;
    
                    static 
                    final int[] 
                    expdigs63;
    
                    static 
                    final int[] 
                    expdigs64;
    
                    static 
                    final int[] 
                    expdigs65;
    
                    static 
                    final int[] 
                    expdigs66;
    
                    static 
                    final int[] 
                    expdigs67;
    
                    static 
                    final int[] 
                    expdigs68;
    
                    static 
                    final int[] 
                    expdigs69;
    
                    static 
                    final int[] 
                    expdigs70;
    
                    static 
                    final int[] 
                    expdigs71;
    
                    static 
                    final int[] 
                    expdigs72;
    
                    static 
                    final int[] 
                    expdigs73;
    
                    static 
                    final int[] 
                    expdigs74;
    
                    static 
                    final int[] 
                    expdigs75;
    
                    static 
                    final int[] 
                    expdigs76;
    
                    static 
                    final int[] 
                    expdigs77;
    
                    static 
                    final int[] 
                    expdigs78;
    
                    static 
                    final int[] 
                    expdigs79;
    
                    static 
                    final int[] 
                    expdigs80;
    
                    static 
                    final int[] 
                    expdigs81;
    
                    static 
                    final int[] 
                    expdigs82;
    
                    static 
                    final int[] 
                    expdigs83;
    
                    static 
                    final int[] 
                    expdigs84;
    
                    static 
                    final int[] 
                    expdigs85;
    
                    static 
                    final int[] 
                    expdigs86;
    
                    static 
                    final int[] 
                    expdigs87;
    
                    static 
                    final int[] 
                    expdigs88;
    
                    static 
                    final int[] 
                    expdigs89;
    
                    static 
                    final int[] 
                    expdigs90;
    
                    static 
                    final int[] 
                    expdigs91;
    
                    static 
                    final int[] 
                    expdigs92;
    
                    static 
                    final int[] 
                    expdigs93;
    
                    static 
                    final int[] 
                    expdigs94;
    
                    static 
                    final int[] 
                    expdigs95;
    
                    static 
                    final int[] 
                    expdigs96;
    
                    static 
                    final int[] 
                    expdigs97;
    
                    static 
                    final int[] 
                    expdigs98;
    
                    static 
                    final int[] 
                    expdigs99;
    
                    static 
                    final int[] 
                    expdigs100;
    
                    static 
                    final int[] 
                    expdigs101;
    
                    static 
                    final int[] 
                    expdigs102;
    
                    static 
                    final int[] 
                    expdigs103;
    
                    static 
                    final int[] 
                    expdigs104;
    
                    static 
                    final int[] 
                    expdigs105;
    
                    static 
                    final int[] 
                    expdigs106;
    
                    static 
                    final int[] 
                    expdigs107;
    
                    static 
                    final int[] 
                    expdigs108;
    
                    static 
                    final int[] 
                    expdigs109;
    
                    static 
                    final int[] 
                    expdigs110;
    
                    static 
                    final int[] 
                    expdigs111;
    
                    static 
                    final int[] 
                    expdigs112;
    
                    static 
                    final int[] 
                    expdigs113;
    
                    static 
                    final int[] 
                    expdigs114;
    
                    static 
                    final int[] 
                    expdigs115;
    
                    static 
                    final int[] 
                    expdigs116;
    
                    static 
                    final int[] 
                    expdigs117;
    
                    static 
                    final int[] 
                    expdigs118;
    
                    static 
                    final int[] 
                    expdigs119;
    
                    static 
                    final int[] 
                    expdigs120;
    
                    static 
                    final int[] 
                    expdigs121;
    
                    static 
                    final int[] 
                    expdigs122;
    
                    static 
                    final int[] 
                    expdigs123;
    
                    static 
                    final int[] 
                    expdigs124;
    
                    static 
                    final int[] 
                    expdigs125;
    
                    static 
                    final int[] 
                    expdigs126;
    
                    static 
                    final int[] 
                    expdigs127;
    
                    static 
                    final int[] 
                    expdigs128;
    
                    static 
                    final int[] 
                    expdigs129;
    
                    static 
                    final int[] 
                    expdigs130;
    
                    static 
                    final int[] 
                    expdigs131;
    
                    static 
                    final int[] 
                    expdigs132;
    
                    static 
                    final int[] 
                    expdigs133;
    
                    static 
                    final int[] 
                    expdigs134;
    
                    static 
                    final int[] 
                    expdigs135;
    
                    static 
                    final int[] 
                    expdigs136;
    
                    static 
                    final int[] 
                    expdigs137;
    
                    static 
                    final int[] 
                    expdigs138;
    
                    static 
                    final int[] 
                    expdigs139;
    
                    static 
                    final int[] 
                    expdigs140;
    
                    static 
                    final int[] 
                    expdigs141;
    
                    static 
                    final int[] 
                    expdigs142;
    
                    static 
                    final int[] 
                    expdigs143;
    
                    static 
                    final int[] 
                    expdigs144;
    
                    static 
                    final int[] 
                    expdigs145;
    
                    static 
                    final int[] 
                    expdigs146;
    
                    static 
                    final int[] 
                    expdigs147;
    
                    static 
                    final int[][] 
                    expdigstable;
    
                    static 
                    final int[] 
                    nexpdigstable;
    
                    static 
                    final int[] 
                    binexpstable;
    void NumberCommonAccessor();
    void 
                    init(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void 
                    init(OracleStatement, int, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    int 
                    getInt(int) 
                    throws java.sql.SQLException;
    boolean 
                    getBoolean(int) 
                    throws java.sql.SQLException;
    short 
                    getShort(int) 
                    throws java.sql.SQLException;
    byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    long 
                    getLong(int) 
                    throws java.sql.SQLException;
    float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    double 
                    getDoubleImprecise(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimaln(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    void 
                    throwOverflow() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/VarnumAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class VarnumAccessor 
                    extends NumberCommonAccessor {
    void VarnumAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void VarnumAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/LongRawAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class LongRawAccessor 
                    extends RawCommonAccessor {
    OracleInputStream 
                    stream;
    int 
                    columnPosition;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    void LongRawAccessor(OracleStatement, int, int, short, int) 
                    throws java.sql.SQLException;
    void LongRawAccessor(OracleStatement, int, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    OracleInputStream 
                    initForNewRow() 
                    throws java.sql.SQLException;
    void 
                    updateColumnNumber(int);
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/RawCommonAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RawCommonAccessor 
                    extends Accessor {
    void RawCommonAccessor();
    void 
                    init(OracleStatement, int, int, int, short, int) 
                    throws java.sql.SQLException;
    void 
                    init(OracleStatement, int, int, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/OutRawAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OutRawAccessor 
                    extends RawCommonAccessor {
    
                    static 
                    final int 
                    MAXLENGTH_NEW = 32767;
    
                    static 
                    final int 
                    MAXLENGTH_OLD = 32767;
    void OutRawAccessor(OracleStatement, int, short, int) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/RawAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RawAccessor 
                    extends RawCommonAccessor {
    
                    static 
                    final int 
                    MAXLENGTH_NEW = 2000;
    
                    static 
                    final int 
                    MAXLENGTH_OLD = 255;
    void RawAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void RawAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/BinaryFloatAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryFloatAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    MAXLENGTH = 4;
    void BinaryFloatAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void BinaryFloatAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    init(OracleStatement, int, int, int, short, int) 
                    throws java.sql.SQLException;
    void 
                    init(OracleStatement, int, int, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    float 
                    getFloat(int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.BINARY_FLOAT 
                    getBINARY_FLOAT(int) 
                    throws java.sql.SQLException;
    oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    java.math.BigInteger 
                    getBigInteger(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    short 
                    getShort(int) 
                    throws java.sql.SQLException;
    int 
                    getInt(int) 
                    throws java.sql.SQLException;
    long 
                    getLong(int) 
                    throws java.sql.SQLException;
    double 
                    getDouble(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/BinaryDoubleAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BinaryDoubleAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    MAXLENGTH = 8;
    void BinaryDoubleAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void BinaryDoubleAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    init(OracleStatement, int, int, int, short, int) 
                    throws java.sql.SQLException;
    void 
                    init(OracleStatement, int, int, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    double 
                    getDouble(int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.BINARY_DOUBLE 
                    getBINARY_DOUBLE(int) 
                    throws java.sql.SQLException;
    oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    java.math.BigInteger 
                    getBigInteger(int) 
                    throws java.sql.SQLException;
    java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    byte 
                    getByte(int) 
                    throws java.sql.SQLException;
    short 
                    getShort(int) 
                    throws java.sql.SQLException;
    int 
                    getInt(int) 
                    throws java.sql.SQLException;
    long 
                    getLong(int) 
                    throws java.sql.SQLException;
    float 
                    getFloat(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/RowidAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RowidAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    maxLength = 128;
    void RowidAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void RowidAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/ResultSetAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ResultSetAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    maxLength = 16;
    void ResultSetAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void ResultSetAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/DateAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class DateAccessor 
                    extends DateTimeCommonAccessor {
    
                    static 
                    final int 
                    maxLength = 7;
    void DateAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void DateAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    static String 
                    toStr(int);
}

                

oracle/jdbc/driver/DateTimeCommonAccessor.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class DateTimeCommonAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    GREGORIAN_CUTOVER_YEAR = 1582;
    
                    static 
                    final long 
                    GREGORIAN_CUTOVER = -12219292800000;
    
                    static 
                    final int 
                    JAN_1_1_JULIAN_DAY = 1721426;
    
                    static 
                    final int 
                    EPOCH_JULIAN_DAY = 2440588;
    
                    static 
                    final int 
                    ONE_SECOND = 1000;
    
                    static 
                    final int 
                    ONE_MINUTE = 60000;
    
                    static 
                    final int 
                    ONE_HOUR = 3600000;
    
                    static 
                    final long 
                    ONE_DAY = 86400000;
    
                    static 
                    final int[] 
                    NUM_DAYS;
    
                    static 
                    final int[] 
                    LEAP_NUM_DAYS;
    
                    static 
                    final int 
                    ORACLE_CENTURY = 0;
    
                    static 
                    final int 
                    ORACLE_YEAR = 1;
    
                    static 
                    final int 
                    ORACLE_MONTH = 2;
    
                    static 
                    final int 
                    ORACLE_DAY = 3;
    
                    static 
                    final int 
                    ORACLE_HOUR = 4;
    
                    static 
                    final int 
                    ORACLE_MIN = 5;
    
                    static 
                    final int 
                    ORACLE_SEC = 6;
    
                    static 
                    final int 
                    ORACLE_NANO1 = 7;
    
                    static 
                    final int 
                    ORACLE_NANO2 = 8;
    
                    static 
                    final int 
                    ORACLE_NANO3 = 9;
    
                    static 
                    final int 
                    ORACLE_NANO4 = 10;
    
                    static 
                    final int 
                    ORACLE_TZ1 = 11;
    
                    static 
                    final int 
                    ORACLE_TZ2 = 12;
    
                    static 
                    final int 
                    SIZE_DATE = 7;
    
                    static 
                    final int 
                    MAX_TIMESTAMP_LENGTH = 11;
    
                    static java.util.TimeZone 
                    epochTimeZone;
    
                    static long 
                    epochTimeZoneOffset;
    void DateTimeCommonAccessor();
    java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    final int 
                    oracleYear(int);
    
                    final int 
                    oracleMonth(int);
    
                    final int 
                    oracleDay(int);
    
                    final int 
                    oracleHour(int);
    
                    final int 
                    oracleMin(int);
    
                    final int 
                    oracleSec(int);
    
                    final int 
                    oracleTZ1(int);
    
                    final int 
                    oracleTZ2(int);
    
                    final int 
                    oracleTime(int);
    
                    final int 
                    oracleNanos(int);
    
                    static 
                    final long 
                    computeJulianDay(boolean, int, int, int);
    
                    static 
                    final long 
                    floorDivide(long, long);
    
                    static 
                    final long 
                    julianDayToMillis(long);
    
                    static 
                    final long 
                    zoneOffset(java.util.TimeZone, int, int, int, int, int);
    
                    static long 
                    getMillis(int, int, int, int, java.util.TimeZone);
    
                    static 
                    final int 
                    julianDayToDayOfWeek(long);
    
                    static long 
                    calculateEpochOffset(java.util.TimeZone);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/BlobAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BlobAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    maxLength = 4000;
    void BlobAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void BlobAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    byte[] 
                    privateGetBytes(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/ClobAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class ClobAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    maxLength = 4000;
    void ClobAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void ClobAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    byte[] 
                    privateGetBytes(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/BfileAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class BfileAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    maxLength = 530;
    void BfileAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void BfileAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    byte[] 
                    privateGetBytes(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/RefTypeAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class RefTypeAccessor 
                    extends TypeAccessor {
    void RefTypeAccessor(OracleStatement, String, short, int, boolean) 
                    throws java.sql.SQLException;
    void RefTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String) 
                    throws java.sql.SQLException;
    void RefTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String, oracle.jdbc.oracore.OracleType) 
                    throws java.sql.SQLException;
    oracle.jdbc.oracore.OracleType 
                    otypeFromName(String) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/TimestampAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimestampAccessor 
                    extends DateTimeCommonAccessor {
    void TimestampAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void TimestampAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/TimestamptzAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimestamptzAccessor 
                    extends DateTimeCommonAccessor {
    
                    static 
                    final int 
                    maxLength = 13;
    
                    static int 
                    OFFSET_HOUR;
    
                    static int 
                    OFFSET_MINUTE;
    
                    static byte 
                    REGIONIDBIT;
    void TimestamptzAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void TimestamptzAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    static int 
                    setHighOrderbits(int);
    
                    static int 
                    setLowOrderbits(int);
    
                    static int 
                    getHighOrderbits(int);
    
                    static int 
                    getLowOrderbits(int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/TimestampltzAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class TimestampltzAccessor 
                    extends DateTimeCommonAccessor {
    
                    static int 
                    INV_ZONEID;
    void TimestampltzAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void TimestampltzAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    void 
                    TimeZoneAdjust(java.util.Calendar, java.util.Calendar) 
                    throws java.sql.SQLException;
    byte 
                    getZoneOffset(java.util.Calendar, oracle.sql.OffsetDST) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/IntervalymAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervalymAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    maxLength = 5;
    void IntervalymAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void IntervalymAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/IntervaldsAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class IntervaldsAccessor 
                    extends Accessor {
    
                    static 
                    final int 
                    maxLength = 11;
    void IntervaldsAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void IntervaldsAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    void 
                    initForDataAccess(int, int, String) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/OracleConversionInputStream.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleConversionInputStream 
                    extends OracleBufferedStream {
    
                    static 
                    final int 
                    CHUNK_SIZE = 4096;
    DBConversion 
                    converter;
    int 
                    conversion;
    java.io.InputStream 
                    istream;
    java.io.Reader 
                    reader;
    byte[] 
                    convbuf;
    char[] 
                    javaChars;
    int 
                    maxSize;
    int 
                    totalSize;
    int 
                    numUnconvertedBytes;
    boolean 
                    endOfStream;
    
                    private short 
                    csform;
    int[] 
                    nbytes;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleConversionInputStream(DBConversion, java.io.InputStream, int);
    
                    public void OracleConversionInputStream(DBConversion, java.io.InputStream, int, short);
    
                    public void OracleConversionInputStream(DBConversion, java.io.InputStream, int, int);
    
                    public void OracleConversionInputStream(DBConversion, java.io.Reader, int, int, short);
    
                    public void 
                    setFormOfUse(short);
    
                    public boolean 
                    needBytes() 
                    throws java.io.IOException;
    
                    public boolean 
                    needBytesFromReader() 
                    throws java.io.IOException;
    
                    public boolean 
                    needBytesFromStream() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleConversionReader.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleConversionReader 
                    extends java.io.Reader {
    
                    static 
                    final int 
                    CHUNK_SIZE = 4096;
    DBConversion 
                    dbConversion;
    int 
                    conversion;
    java.io.InputStream 
                    istream;
    char[] 
                    buf;
    byte[] 
                    byteBuf;
    int 
                    pos;
    int 
                    count;
    int 
                    numUnconvertedBytes;
    boolean 
                    isClosed;
    boolean 
                    endOfStream;
    
                    private short 
                    csform;
    int[] 
                    nbytes;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleConversionReader(DBConversion, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setFormOfUse(short);
    
                    public int 
                    read(char[], int, int) 
                    throws java.io.IOException;
    
                    protected boolean 
                    needChars() 
                    throws java.io.IOException;
    
                    protected int 
                    writeChars(char[], int, int);
    
                    public boolean 
                    ready() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    void 
                    ensureOpen() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/SQLUtil.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class SQLUtil {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    
                    private 
                    static 
                    final int 
                    CLASS_NOT_FOUND = -1;
    
                    private 
                    static 
                    final int 
                    CLASS_STRING = 0;
    
                    private 
                    static 
                    final int 
                    CLASS_BOOLEAN = 1;
    
                    private 
                    static 
                    final int 
                    CLASS_INTEGER = 2;
    
                    private 
                    static 
                    final int 
                    CLASS_LONG = 3;
    
                    private 
                    static 
                    final int 
                    CLASS_FLOAT = 4;
    
                    private 
                    static 
                    final int 
                    CLASS_DOUBLE = 5;
    
                    private 
                    static 
                    final int 
                    CLASS_BIGDECIMAL = 6;
    
                    private 
                    static 
                    final int 
                    CLASS_DATE = 7;
    
                    private 
                    static 
                    final int 
                    CLASS_TIME = 8;
    
                    private 
                    static 
                    final int 
                    CLASS_TIMESTAMP = 9;
    
                    private 
                    static 
                    final int 
                    TOTAL_CLASSES = 10;
    
                    private 
                    static java.util.Hashtable 
                    classTable;
    
                    public void SQLUtil();
    
                    public 
                    static Object 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, byte[], int, String, Class, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.CustomDatum 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, byte[], int, String, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.ORAData 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, byte[], int, String, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    static Object 
                    SQLToJava(oracle.jdbc.internal.OracleConnection, oracle.sql.Datum, Class, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public 
                    static byte[] 
                    JavaToSQL(oracle.jdbc.internal.OracleConnection, Object, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.Datum 
                    makeDatum(oracle.jdbc.internal.OracleConnection, byte[], int, String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.Datum 
                    makeNDatum(oracle.jdbc.internal.OracleConnection, byte[], int, String, short, int) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.Datum 
                    makeDatum(oracle.jdbc.internal.OracleConnection, Object, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.Datum 
                    makeDatum(oracle.jdbc.internal.OracleConnection, Object, int, String, boolean) 
                    throws java.sql.SQLException;
    
                    private 
                    static int 
                    classNumber(Class);
    
                    public 
                    static Object 
                    getTypeDescriptor(String, oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    checkDatumType(oracle.sql.Datum, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    implementsInterface(Class, Class);
    
                    public 
                    static oracle.sql.Datum 
                    makeOracleDatum(oracle.jdbc.internal.OracleConnection, Object, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.Datum 
                    makeOracleDatum(oracle.jdbc.internal.OracleConnection, Object, int, String, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    getInternalType(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleResultSetCacheImpl.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class OracleResultSetCacheImpl 
                    implements OracleResultSetCache {
    
                    private 
                    static int 
                    DEFAULT_WIDTH;
    
                    private 
                    static int 
                    DEFAULT_SIZE;
    java.util.Vector 
                    m_rows;
    int 
                    m_width;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleResultSetCacheImpl();
    void OracleResultSetCacheImpl(int);
    
                    public void 
                    put(int, int, Object);
    
                    public Object 
                    get(int, int);
    
                    public void 
                    remove(int);
    
                    public void 
                    remove(int, int);
    
                    public void 
                    clear();
    
                    public void 
                    close();
    
                    public int 
                    getLength();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleClobWriter.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleClobWriter 
                    extends java.io.Writer {
    DBConversion 
                    dbConversion;
    oracle.sql.CLOB 
                    clob;
    long 
                    lobOffset;
    char[] 
                    charBuf;
    byte[] 
                    nativeBuf;
    int 
                    pos;
    int 
                    count;
    int 
                    chunkSize;
    boolean 
                    isClosed;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleClobWriter(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void OracleClobWriter(oracle.sql.CLOB, int) 
                    throws java.sql.SQLException;
    
                    public void OracleClobWriter(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    write(char[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    flush() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    private void 
                    flushBuffer() 
                    throws java.io.IOException;
    void 
                    ensureOpen() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleBlobOutputStream.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleBlobOutputStream 
                    extends java.io.OutputStream {
    long 
                    lobOffset;
    oracle.sql.BLOB 
                    blob;
    byte[] 
                    buf;
    int 
                    count;
    int 
                    bufSize;
    boolean 
                    isClosed;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleBlobOutputStream(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void OracleBlobOutputStream(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public void OracleBlobOutputStream(oracle.sql.BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    write(int) 
                    throws java.io.IOException;
    
                    public void 
                    write(byte[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    flush() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    private void 
                    flushBuffer() 
                    throws java.io.IOException;
    void 
                    ensureOpen() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleParameterMetaData.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleParameterMetaData 
                    implements oracle.jdbc.OracleParameterMetaData {
    int 
                    parameterCount;
    int 
                    parameterNoNulls;
    int 
                    parameterNullable;
    int 
                    parameterNullableUnknown;
    int 
                    parameterModeUnknown;
    int 
                    parameterModeIn;
    int 
                    parameterModeInOut;
    int 
                    parameterModeOut;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    void OracleParameterMetaData(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getParameterCount() 
                    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;
    
                    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;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CXAConnection.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class T4CXAConnection 
                    extends oracle.jdbc.xa.client.OracleXAConnection {
    T4CTTIOtxen 
                    otxen;
    T4CTTIOtxse 
                    otxse;
    T4CConnection 
                    physicalConnection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    
                    public void T4CXAConnection(java.sql.Connection) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    synchronized javax.transaction.xa.XAResource 
                    getXAResource();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIOtxen.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIOtxen 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    OTXCOMIT = 1;
    
                    static 
                    final int 
                    OTXABORT = 2;
    
                    static 
                    final int 
                    OTXPREPA = 3;
    
                    static 
                    final int 
                    OTXFORGT = 4;
    
                    static 
                    final int 
                    OTXRECOV = 5;
    
                    static 
                    final int 
                    OTXMLPRE = 6;
    
                    static 
                    final int 
                    K2CMDprepare = 0;
    
                    static 
                    final int 
                    K2CMDrqcommit = 1;
    
                    static 
                    final int 
                    K2CMDcommit = 2;
    
                    static 
                    final int 
                    K2CMDabort = 3;
    
                    static 
                    final int 
                    K2CMDrdonly = 4;
    
                    static 
                    final int 
                    K2CMDforget = 5;
    
                    static 
                    final int 
                    K2CMDrecovered = 7;
    
                    static 
                    final int 
                    K2CMDtimeout = 8;
    
                    static 
                    final int 
                    K2STAidle = 0;
    
                    static 
                    final int 
                    K2STAcollecting = 1;
    
                    static 
                    final int 
                    K2STAprepared = 2;
    
                    static 
                    final int 
                    K2STAcommitted = 3;
    
                    static 
                    final int 
                    K2STAhabort = 4;
    
                    static 
                    final int 
                    K2STAhcommit = 5;
    
                    static 
                    final int 
                    K2STAhdamage = 6;
    
                    static 
                    final int 
                    K2STAtimeout = 7;
    
                    static 
                    final int 
                    K2STAinactive = 9;
    
                    static 
                    final int 
                    K2STAactive = 10;
    
                    static 
                    final int 
                    K2STAptprepared = 11;
    
                    static 
                    final int 
                    K2STAptcommitted = 12;
    
                    static 
                    final int 
                    K2STAmax = 13;
    T4CConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIOtxen(T4CMAREngine, T4CTTIoer, T4CConnection) 
                    throws java.sql.SQLException;
    void 
                    marshal(int, byte[], byte[], int, int, int, int, int) 
                    throws java.io.IOException, java.sql.SQLException;
    int 
                    receive(int[]) 
                    throws java.io.IOException, java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIfun.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIfun 
                    extends T4CTTIMsg {
    
                    static 
                    final short 
                    OOPEN = 2;
    
                    static 
                    final short 
                    OEXEC = 4;
    
                    static 
                    final short 
                    OFETCH = 5;
    
                    static 
                    final short 
                    OCLOSE = 8;
    
                    static 
                    final short 
                    OLOGOFF = 9;
    
                    static 
                    final short 
                    OCOMON = 12;
    
                    static 
                    final short 
                    OCOMOFF = 13;
    
                    static 
                    final short 
                    OCOMMIT = 14;
    
                    static 
                    final short 
                    OROLLBACK = 15;
    
                    static 
                    final short 
                    OCANCEL = 20;
    
                    static 
                    final short 
                    ODSCRARR = 43;
    
                    static 
                    final short 
                    OVERSION = 59;
    
                    static 
                    final short 
                    OK2RPC = 67;
    
                    static 
                    final short 
                    OALL7 = 71;
    
                    static 
                    final short 
                    OSQL7 = 74;
    
                    static 
                    final short 
                    O3LOGON = 81;
    
                    static 
                    final short 
                    O3LOGA = 82;
    
                    static 
                    final short 
                    OKOD = 92;
    
                    static 
                    final short 
                    OALL8 = 94;
    
                    static 
                    final short 
                    OLOBOPS = 96;
    
                    static 
                    final short 
                    ODNY = 98;
    
                    static 
                    final short 
                    OTXSE = 103;
    
                    static 
                    final short 
                    OTXEN = 104;
    
                    static 
                    final short 
                    OCCA = 105;
    
                    static 
                    final short 
                    O80SES = 107;
    
                    static 
                    final short 
                    OAUTH = 115;
    
                    static 
                    final short 
                    OSESSKEY = 118;
    
                    static 
                    final short 
                    OCANA = 120;
    
                    static 
                    final short 
                    OOTCM = 127;
    
                    static 
                    final short 
                    OSCID = 135;
    
                    static 
                    final short 
                    OKPFC = 139;
    
                    static 
                    final short 
                    OKEYVAL = 154;
    short 
                    funCode;
    byte 
                    seqNumber;
    T4CTTIoer 
                    oer;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIfun(byte, int);
    void T4CTTIfun(byte, int, short);
    void 
                    setFunCode(short);
    void 
                    marshalFunHeader() 
                    throws java.io.IOException;
    void 
                    marshal() 
                    throws java.io.IOException, java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIMsg.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIMsg {
    
                    static 
                    final byte 
                    TTIPRO = 1;
    
                    static 
                    final byte 
                    TTIDTY = 2;
    
                    static 
                    final byte 
                    TTIFUN = 3;
    
                    static 
                    final byte 
                    TTIOER = 4;
    
                    static 
                    final byte 
                    TTIRXH = 6;
    
                    static 
                    final byte 
                    TTIRXD = 7;
    
                    static 
                    final byte 
                    TTIRPA = 8;
    
                    static 
                    final byte 
                    TTISTA = 9;
    
                    static 
                    final byte 
                    TTIIOV = 11;
    
                    static 
                    final byte 
                    TTIUDS = 12;
    
                    static 
                    final byte 
                    TTIOAC = 13;
    
                    static 
                    final byte 
                    TTILOBD = 14;
    
                    static 
                    final byte 
                    TTIWRN = 15;
    
                    static 
                    final byte 
                    TTIDCB = 16;
    
                    static 
                    final byte 
                    TTIPFN = 17;
    
                    static 
                    final byte 
                    TTIFOB = 19;
    
                    static 
                    final byte 
                    TTINTY = 1;
    
                    static 
                    final byte 
                    TTIBVC = 21;
    
                    static 
                    final byte 
                    OERFSPND = 1;
    
                    static 
                    final byte 
                    OERFATAL = 2;
    
                    static 
                    final byte 
                    OERFPLSW = 4;
    
                    static 
                    final byte 
                    OERFUPD = 8;
    
                    static 
                    final byte 
                    OERFEXIT = 16;
    
                    static 
                    final byte 
                    OERFNCF = 32;
    
                    static 
                    final byte 
                    OERFRDONLY = 64;
    
                    static 
                    final short 
                    OERFSBRK = 128;
    
                    static 
                    final byte 
                    OERwANY = 1;
    
                    static 
                    final byte 
                    OERwTRUN = 2;
    
                    static 
                    final byte 
                    OERwLICM = 2;
    
                    static 
                    final byte 
                    OERwNVIC = 4;
    
                    static 
                    final byte 
                    OERwITCE = 8;
    
                    static 
                    final byte 
                    OERwUDnW = 16;
    
                    static 
                    final byte 
                    OERwCPER = 32;
    
                    static 
                    final byte 
                    OERwPLEX = 64;
    
                    static 
                    final short 
                    ORACLE8_PROD_VERSION = 8030;
    
                    static 
                    final short 
                    ORACLE81_PROD_VERSION = 8100;
    
                    static 
                    final short 
                    MIN_OVERSION_SUPPORTED = 7230;
    
                    static 
                    final short 
                    MIN_TTCVER_SUPPORTED = 4;
    
                    static 
                    final short 
                    V8_TTCVER_SUPPORTED = 5;
    
                    static 
                    final short 
                    MAX_TTCVER_SUPPORTED = 6;
    
                    static 
                    final int 
                    REFCURSOR_SIZE = 5;
    T4CMAREngine 
                    meg;
    byte 
                    ttcCode;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIMsg();
    void T4CTTIMsg(byte);
    void 
                    setMarshalingEngine(T4CMAREngine);
    void 
                    marshalTTCcode() 
                    throws java.io.IOException;
    void 
                    send() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CConnection.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CConnection 
                    extends PhysicalConnection 
                    implements oracle.sql.BfileDBAccess, oracle.sql.BlobDBAccess, oracle.sql.ClobDBAccess {
    
                    static 
                    final short 
                    MIN_OVERSION_SUPPORTED = 7230;
    
                    static 
                    final short 
                    MIN_TTCVER_SUPPORTED = 4;
    
                    static 
                    final short 
                    V8_TTCVER_SUPPORTED = 5;
    
                    static 
                    final short 
                    MAX_TTCVER_SUPPORTED = 6;
    
                    static 
                    final int 
                    DEFAULT_LONG_PREFETCH_SIZE = 4080;
    
                    static 
                    final String 
                    DEFAULT_CONNECT_STRING = localhost:1521:orcl;
    
                    static 
                    final int 
                    STREAM_CHUNK_SIZE = 255;
    
                    static 
                    final int 
                    REFCURSOR_SIZE = 5;
    long 
                    LOGON_MODE;
    
                    static 
                    final long 
                    SYSDBA = 8;
    
                    static 
                    final long 
                    SYSOPER = 16;
    boolean 
                    isLoggedOn;
    
                    private String 
                    password;
    oracle.net.ns.Communication 
                    net;
    boolean 
                    readAsNonStream;
    T4CTTIoer 
                    oer;
    T4CMAREngine 
                    mare;
    T4C8TTIpro 
                    pro;
    T4C8TTIdty 
                    dty;
    T4CTTIrxd 
                    rxd;
    T4CTTIsto 
                    sto;
    T4CTTIoauthenticate 
                    auth;
    T4C7Oversion 
                    ver;
    T4C8Odscrarr 
                    describe;
    T4C8Oall 
                    all8;
    T4C8Oclose 
                    close8;
    T4C7Ocommoncall 
                    commoncall;
    T4C8TTIBfile 
                    bfileMsg;
    T4C8TTIBlob 
                    blobMsg;
    T4C8TTIClob 
                    clobMsg;
    T4CTTIoses 
                    oses;
    byte[] 
                    EMPTY_BYTE;
    T4CTTIOtxen 
                    otxen;
    T4CTTIOtxse 
                    otxse;
    T4CTTIk2rpc 
                    k2rpc;
    T4CTTIoscid 
                    oscid;
    T4CTTIokeyval 
                    okeyval;
    int[] 
                    cursorToClose;
    int 
                    cursorToCloseOffset;
    int[] 
                    queryToClose;
    int 
                    queryToCloseOffset;
    int 
                    sessionId;
    int 
                    serialNumber;
    boolean 
                    retainV9BehaviorForLong;
    java.util.Hashtable 
                    namespaces;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CConnection(String, String, String, String, java.util.Properties, OracleDriverExtension) 
                    throws java.sql.SQLException;
    
                    final void 
                    initializePassword(String) 
                    throws java.sql.SQLException;
    void 
                    logon() 
                    throws java.sql.SQLException;
    void 
                    handleIOException(java.io.IOException) 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    logoff() 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    doCommit() 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    doRollback() 
                    throws java.sql.SQLException;
    
                    synchronized void 
                    doSetAutoCommit(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    open(OracleStatement) 
                    throws java.sql.SQLException;
    
                    synchronized String 
                    doGetDatabaseProductVersion() 
                    throws java.sql.SQLException;
    
                    synchronized short 
                    doGetVersionNumber() 
                    throws java.sql.SQLException;
    OracleStatement 
                    RefCursorBytesToStatement(byte[], OracleStatement) 
                    throws java.sql.SQLException;
    void 
                    doCancel() 
                    throws java.sql.SQLException;
    void 
                    connect(String, java.util.Properties) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    sendPiggyBackedMessages() 
                    throws java.sql.SQLException, java.io.IOException;
    
                    private void 
                    sendPiggyBackedClose() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    doProxySession(int, java.util.Properties) 
                    throws java.sql.SQLException;
    void 
                    closeProxySession() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getServerSessionInfo() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BlobDBAccess 
                    createBlobDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.ClobDBAccess 
                    createClobDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BfileDBAccess 
                    createBfileDBAccess() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    length(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    position(oracle.sql.BFILE, byte[], long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.BFILE, oracle.sql.BFILE, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getBytes(oracle.sql.BFILE, long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public String 
                    getName(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public String 
                    getDirAlias(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    openFile(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isFileOpen(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    fileExists(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    closeFile(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    open(oracle.sql.BFILE, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isOpen(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newInputStream(oracle.sql.BFILE, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newConversionInputStream(oracle.sql.BFILE, int) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    newConversionReader(oracle.sql.BFILE, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    length(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.BLOB, byte[], long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.BLOB, oracle.sql.BLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getBytes(oracle.sql.BLOB, long, int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    putBytes(oracle.sql.BLOB, long, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getChunkSize(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    trim(oracle.sql.BLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.BLOB 
                    createTemporaryBlob(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    freeTemporary(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTemporary(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    open(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isOpen(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newInputStream(oracle.sql.BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    newOutputStream(oracle.sql.BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newConversionInputStream(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    newConversionReader(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized long 
                    length(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.CLOB, String, long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(oracle.sql.CLOB, oracle.sql.CLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getChars(oracle.sql.CLOB, long, int, char[]) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    putChars(oracle.sql.CLOB, long, char[], int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getChunkSize(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    trim(oracle.sql.CLOB, long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.sql.CLOB 
                    createTemporaryClob(java.sql.Connection, boolean, int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    freeTemporary(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isTemporary(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    open(oracle.sql.CLOB, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isOpen(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    newInputStream(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    newOutputStream(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    newReader(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public java.io.Writer 
                    newWriter(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    void 
                    assertLoggedOn(String) 
                    throws java.sql.SQLException;
    void 
                    assertNotNull(byte[], String) 
                    throws NullPointerException;
    void 
                    internalClose() 
                    throws java.sql.SQLException;
    void 
                    doAbort() 
                    throws java.sql.SQLException;
    
                    protected void 
                    doDescribeTable(AutoKeyInfo) 
                    throws java.sql.SQLException;
    void 
                    doSetApplicationContext(String, String, String) 
                    throws java.sql.SQLException;
    void 
                    doClearAllApplicationContext(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    getPropertyForPooledConnection(oracle.jdbc.pool.OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    final void 
                    getPasswordInternal(T4CXAResource) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIoer.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIoer 
                    extends T4CTTIMsg {
    
                    final int 
                    MAXERRBUF;
    long 
                    curRowNumber;
    int 
                    retCode;
    int 
                    arrayElemWError;
    int 
                    arrayElemErrno;
    int 
                    currCursorID;
    short 
                    errorPosition;
    short 
                    sqlType;
    byte 
                    oerFatal;
    short 
                    flags;
    short 
                    userCursorOpt;
    short 
                    upiParam;
    short 
                    warningFlag;
    int 
                    osError;
    short 
                    stmtNumber;
    short 
                    callNumber;
    int 
                    pad1;
    long 
                    successIters;
    int 
                    partitionId;
    int 
                    tableId;
    int 
                    slotNumber;
    long 
                    rba;
    long 
                    blockNumber;
    int 
                    warnLength;
    int 
                    warnFlag;
    int[] 
                    errorLength;
    byte[] 
                    errorMsg;
    T4CConnection 
                    connection;
    
                    static 
                    final int 
                    ORA1403 = 1403;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIoer(T4CMAREngine);
    void T4CTTIoer(T4CMAREngine, T4CConnection);
    void 
                    init();
    int 
                    unmarshal() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    unmarshalWarning() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    print(int, int, int) 
                    throws java.sql.SQLException;
    void 
                    processError() 
                    throws java.sql.SQLException;
    void 
                    processError(boolean) 
                    throws java.sql.SQLException;
    void 
                    processError(OracleStatement) 
                    throws java.sql.SQLException;
    void 
                    processError(boolean, OracleStatement) 
                    throws java.sql.SQLException;
    void 
                    processWarning() 
                    throws java.sql.SQLException;
    int 
                    getCurRowNumber() 
                    throws java.sql.SQLException;
    int 
                    getRetCode();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTIpro.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTIpro 
                    extends T4CTTIMsg {
    short 
                    svrCharSet;
    short 
                    svrCharSetElem;
    byte 
                    svrFlags;
    byte[] 
                    proSvrStr;
    byte 
                    proSvrVer;
    short 
                    oVersion;
    boolean 
                    svrInfoAvailable;
    byte[] 
                    proCliVerTTC8;
    byte[] 
                    proCliStrTTC8;
    short 
                    NCHAR_CHARSET;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4C8TTIpro(T4CMAREngine) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
    short 
                    getOracleVersion();
    short 
                    getCharacterSet();
    short 
                    getncharCHARSET();
    byte 
                    getFlags();
    void 
                    marshal() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    printServerInfo(int, int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTIdty.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTIdty 
                    extends T4CTTIMsg {
    short 
                    cliRIN;
    short 
                    cliROUT;
    
                    static 
                    final int 
                    TTCLXMULTI = 1;
    
                    static 
                    final int 
                    TTCLXMCONV = 2;
    
                    static 
                    final int 
                    TTCLXNOCNV = 4;
    
                    static 
                    final int 
                    TTCLXPCEFC = 8;
    
                    static 
                    final int 
                    TTCLXSCSID = 16;
    
                    static 
                    final int 
                    TTCLXSIGNCNV = 32;
    
                    static 
                    final int 
                    TTCLXRSBCF = 64;
    byte 
                    cliFlags;
    
                    final int 
                    NUMTYPES;
    
                    static 
                    final byte 
                    TTC_FLD_VSN_820 = 1;
    
                    static 
                    final byte 
                    TTC_FLD_VSN_902 = 2;
    
                    static 
                    final byte 
                    TTC_FLD_VSN_1000 = 3;
    
                    static 
                    final byte 
                    TTC_FLD_VSN_MAX = 3;
    
                    static 
                    final byte 
                    KPULMAXL = 6;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_EOCS = 1;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_PBLB = 2;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_FNTY = 4;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_INRC = 8;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_FCSC = 16;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_FBVC = 32;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_NTEC = 64;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC1_RSHP = -128;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_DTME = 1;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_NOMIP = 2;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_PDFC = 4;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_FEXF = 8;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_FSAP = 16;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_BFLTDBL = 32;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_CPSSDML = 64;
    
                    static 
                    final byte 
                    KPCCAP_CTB_OCI1_APCTX = -128;
    
                    static 
                    final byte 
                    KOLE_LOB_CAP_UB8_SIZE = 1;
    
                    static 
                    final byte 
                    KOLE_LOB_CAP_ENCS = 2;
    
                    static 
                    final byte 
                    KOLE_LOB_CAP_DIL = 4;
    
                    static 
                    final byte 
                    KOLE_LOB_CAP_TMPLOC_SZ = 8;
    
                    static 
                    final byte 
                    KOLE_LOB_CAP_ALL = 15;
    
                    static 
                    final byte 
                    KOPT_VNFT = 3;
    
                    static 
                    final byte 
                    KPCCAP_CTB_TTC2_ZLNP = 4;
    byte[] 
                    CTcap;
    byte[] 
                    RTcap;
    byte[] 
                    typeReps10;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8TTIdty(T4CMAREngine) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshalTypeReps() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshal() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    validTypeReps() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    setBasicTypes(T4CTypeRep) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIrxd.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIrxd 
                    extends T4CTTIMsg {
    
                    static 
                    final byte[] 
                    NO_BYTES;
    byte[] 
                    buffer;
    byte[] 
                    bufferCHAR;
    java.util.BitSet 
                    bvcColSent;
    int 
                    nbOfColumns;
    boolean 
                    bvcFound;
    boolean 
                    isFirstCol;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIrxd(T4CMAREngine);
    void 
                    init();
    void 
                    setNumberOfColumns(int);
    void 
                    unmarshalBVC(int) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    readBitVector(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshal(byte[], char[], short[], int, byte[], DBConversion, java.io.InputStream[], byte[][], oracle.jdbc.oracore.OracleTypeADT[], byte[], char[], short[], byte[], int, int[], boolean, int[], int[], int[][]) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshal(Accessor[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    unmarshal(Accessor[], int, int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    unmarshal(Accessor[], int, int, int) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIsto.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIsto 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    OV6STRT = 48;
    
                    static 
                    final int 
                    OV6STOP = 49;
    
                    static 
                    final int 
                    STOMFDBA = 1;
    
                    static 
                    final int 
                    STOMFACA = 2;
    
                    static 
                    final int 
                    STOMFALO = 4;
    
                    static 
                    final int 
                    STOMFSHU = 8;
    
                    static 
                    final int 
                    STOMFFRC = 16;
    
                    static 
                    final int 
                    STOMFPOL = 32;
    
                    static 
                    final int 
                    STOMFABO = 64;
    
                    static 
                    final int 
                    STOMFATX = 128;
    
                    static 
                    final int 
                    STOMFLTX = 256;
    
                    static 
                    final int 
                    STOSDONE = 1;
    
                    static 
                    final int 
                    STOSINPR = 2;
    
                    static 
                    final int 
                    STOSERR = 3;
    T4CTTIoer 
                    oer;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIsto(T4CMAREngine, T4CTTIoer) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal(int) 
                    throws java.io.IOException, java.sql.SQLException;
    int 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIoauthenticate.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIoauthenticate 
                    extends T4CTTIfun {
    byte[] 
                    user;
    String 
                    userStr;
    byte[] 
                    password;
    String 
                    passwordStr;
    byte[] 
                    terminal;
    byte[] 
                    machine;
    byte[] 
                    sysUserName;
    byte[] 
                    processID;
    byte[] 
                    programName;
    long 
                    flag;
    byte[] 
                    encryptedSK;
    byte[] 
                    internalName;
    byte[] 
                    externalName;
    byte[] 
                    alterSession;
    byte[] 
                    aclValue;
    byte[] 
                    clientname;
    String 
                    ressourceManagerId;
    T4CConnection 
                    conn;
    boolean 
                    isSessionTZ;
    java.util.Properties 
                    connectionValues;
    
                    static 
                    final int 
                    SERVER_VERSION_81 = 8100;
    
                    static 
                    final int 
                    KPZ_LOGON = 1;
    
                    static 
                    final int 
                    KPZ_CPW = 2;
    
                    static 
                    final int 
                    KPZ_SRVAUTH = 4;
    
                    static 
                    final int 
                    KPZ_ENCRYPTED_PASSWD = 256;
    
                    static 
                    final int 
                    KPZ_LOGON_MIGRATE = 16;
    
                    static 
                    final int 
                    KPZ_LOGON_SYSDBA = 32;
    
                    static 
                    final int 
                    KPZ_LOGON_SYSOPER = 64;
    
                    static 
                    final int 
                    KPZ_LOGON_PRELIMAUTH = 128;
    
                    static 
                    final int 
                    KPZ_PASSWD_ENCRYPTED = 256;
    
                    static 
                    final int 
                    KPZ_LOGON_DBCONC = 512;
    
                    static 
                    final int 
                    KPZ_PROXY_AUTH = 1024;
    
                    static 
                    final int 
                    KPZ_SESSION_CACHE = 2048;
    
                    static 
                    final int 
                    KPZ_PASSWD_IS_VFR = 4096;
    
                    static 
                    final String 
                    AUTH_TERMINAL = AUTH_TERMINAL;
    
                    static 
                    final String 
                    AUTH_PROGRAM_NM = AUTH_PROGRAM_NM;
    
                    static 
                    final String 
                    AUTH_MACHINE = AUTH_MACHINE;
    
                    static 
                    final String 
                    AUTH_PID = AUTH_PID;
    
                    static 
                    final String 
                    AUTH_SESSKEY = AUTH_SESSKEY;
    
                    static 
                    final String 
                    AUTH_VFR_DATA = AUTH_VFR_DATA;
    
                    static 
                    final String 
                    AUTH_PASSWORD = AUTH_PASSWORD;
    
                    static 
                    final String 
                    AUTH_INTERNALNAME = AUTH_INTERNALNAME_;
    
                    static 
                    final String 
                    AUTH_EXTERNALNAME = AUTH_EXTERNALNAME_;
    
                    static 
                    final String 
                    AUTH_ACL = AUTH_ACL;
    
                    static 
                    final String 
                    AUTH_ALTER_SESSION = AUTH_ALTER_SESSION;
    
                    static 
                    final String 
                    AUTH_INITIAL_CLIENT_ROLE = INITIAL_CLIENT_ROLE;
    
                    static 
                    final String 
                    AUTH_VERSION_SQL = AUTH_VERSION_SQL;
    
                    static 
                    final String 
                    AUTH_VERSION_NO = AUTH_VERSION_NO;
    
                    static 
                    final String 
                    AUTH_XACTION_TRAITS = AUTH_XACTION_TRAITS;
    
                    static 
                    final String 
                    AUTH_VERSION_STATUS = AUTH_VERSION_STATUS;
    
                    static 
                    final String 
                    AUTH_SERIAL_NUM = AUTH_SERIAL_NUM;
    
                    static 
                    final String 
                    AUTH_SESSION_ID = AUTH_SESSION_ID;
    
                    static 
                    final String 
                    AUTH_CLIENT_CERTIFICATE = AUTH_CLIENT_CERTIFICATE;
    
                    static 
                    final String 
                    AUTH_PROXY_CLIENT_NAME = PROXY_CLIENT_NAME;
    
                    static 
                    final String 
                    AUTH_CLIENT_DN = AUTH_CLIENT_DISTINGUISHED_NAME;
    
                    static 
                    final String 
                    AUTH_INSTANCENAME = AUTH_INSTANCENAME;
    
                    static 
                    final String 
                    AUTH_DBNAME = AUTH_DBNAME;
    
                    static 
                    final String 
                    AUTH_INSTANCE_NO = AUTH_INSTANCE_NO;
    
                    static 
                    final String 
                    AUTH_SC_SERVER_HOST = AUTH_SC_SERVER_HOST;
    
                    static 
                    final String 
                    AUTH_SC_INSTANCE_NAME = AUTH_SC_INSTANCE_NAME;
    
                    static 
                    final String 
                    AUTH_SC_INSTANCE_ID = AUTH_SC_INSTANCE_ID;
    
                    static 
                    final String 
                    AUTH_SC_INSTANCE_START_TIME = AUTH_SC_INSTANCE_START_TIME;
    
                    static 
                    final String 
                    AUTH_SC_DBUNIQUE_NAME = AUTH_SC_DBUNIQUE_NAME;
    
                    static 
                    final String 
                    AUTH_SC_SERVICE_NAME = AUTH_SC_SERVICE_NAME;
    
                    static 
                    final String 
                    AUTH_SC_SVC_FLAGS = AUTH_SC_SVC_FLAGS;
    
                    static 
                    final String 
                    AUTH_COPYRIGHT = AUTH_COPYRIGHT;
    
                    static 
                    final String 
                    COPYRIGHT_STR = "Oracle
Everybody follows
Speedy bits exchange
Stars await to glow"
The preceding key is copyrighted by Oracle Corporation.
Duplication of this key is not allowed without permission
from Oracle Corporation. Copyright 2003 Oracle Corporation.;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIoauthenticate(T4CMAREngine, String, String, java.util.Properties, long, String, T4CTTIoer, T4CConnection) 
                    throws java.sql.SQLException;
    void 
                    marshalOsesskey() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    receiveOsesskey() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshalOauth() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshalOauth(int, java.util.Properties, int, int) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    receiveOauth() 
                    throws java.io.IOException, java.sql.SQLException;
    int 
                    getSessionId();
    int 
                    getSerialNumber();
    void 
                    setSessionFields(java.util.Properties) 
                    throws java.sql.SQLException;
    String 
                    removeQuotes(String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C7Oversion.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C7Oversion 
                    extends T4CTTIfun {
    byte[] 
                    rdbmsVersion;
    boolean 
                    rdbmsVersionO2U;
    int 
                    bufLen;
    boolean 
                    retVerLenO2U;
    int 
                    retVerLen;
    boolean 
                    retVerNumO2U;
    long 
                    retVerNum;
    T4CConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C7Oversion(T4CMAREngine, T4CTTIoer, T4CConnection) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
    byte[] 
                    getVersion();
    short 
                    getVersionNumber();
    long 
                    getVersionNumberasIs();
    void 
                    marshal() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8Odscrarr.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8Odscrarr 
                    extends T4CTTIfun {
    byte 
                    operationflags;
    byte[] 
                    sqltext;
    long 
                    sqlparseversion;
    T4CTTIdcb 
                    dcb;
    int 
                    cursor_id;
    int 
                    numuds;
    boolean 
                    numitemsO2U;
    boolean 
                    udsarrayO2U;
    boolean 
                    numudsO2U;
    boolean 
                    colnameO2U;
    boolean 
                    lencolsO2U;
    OracleStatement 
                    statement;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8Odscrarr(T4CMAREngine, T4CTTIoer) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    init(OracleStatement, int) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal() 
                    throws java.io.IOException;
    Accessor[] 
                    receive(Accessor[]) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8Oall.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8Oall 
                    extends T4CTTIfun {
    
                    static 
                    final byte[] 
                    EMPTY_BYTES;
    
                    static 
                    final int 
                    UOPF_PRS = 1;
    
                    static 
                    final int 
                    UOPF_BND = 8;
    
                    static 
                    final int 
                    UOPF_EXE = 32;
    
                    static 
                    final int 
                    UOPF_FEX = 512;
    
                    static 
                    final int 
                    UOPF_FCH = 64;
    
                    static 
                    final int 
                    UOPF_CAN = 128;
    
                    static 
                    final int 
                    UOPF_COM = 256;
    
                    static 
                    final int 
                    UOPF_DSY = 8192;
    
                    static 
                    final int 
                    UOPF_SIO = 1024;
    
                    static 
                    final int 
                    UOPF_NPL = 32768;
    
                    static 
                    final int 
                    UOPF_DFN = 16;
    int 
                    receiveState;
    
                    static 
                    final int 
                    IDLE_RECEIVE_STATE = 0;
    
                    static 
                    final int 
                    ACTIVE_RECEIVE_STATE = 1;
    
                    static 
                    final int 
                    READROW_RECEIVE_STATE = 2;
    
                    static 
                    final int 
                    STREAM_RECEIVE_STATE = 3;
    int 
                    rowsProcessed;
    int 
                    numberOfDefinePositions;
    long 
                    options;
    int 
                    cursor;
    byte[] 
                    sqlStmt;
    
                    final long[] 
                    al8i4;
    boolean 
                    plsql;
    Accessor[] 
                    definesAccessors;
    int 
                    definesLength;
    Accessor[] 
                    outBindAccessors;
    int 
                    numberOfBindPositions;
    java.io.InputStream[][] 
                    parameterStream;
    byte[][][] 
                    parameterDatum;
    oracle.jdbc.oracore.OracleTypeADT[][] 
                    parameterOtype;
    short[] 
                    bindIndicators;
    byte[] 
                    bindBytes;
    char[] 
                    bindChars;
    int 
                    bindIndicatorSubRange;
    byte[] 
                    tmpBindsByteArray;
    DBConversion 
                    conversion;
    byte[] 
                    ibtBindBytes;
    char[] 
                    ibtBindChars;
    short[] 
                    ibtBindIndicators;
    boolean 
                    sendBindsDefinition;
    OracleStatement 
                    oracleStatement;
    short 
                    dbCharSet;
    short 
                    NCharSet;
    T4CTTIrxd 
                    rxd;
    T4C8TTIrxh 
                    rxh;
    T4CTTIoac 
                    oac;
    T4CTTIdcb 
                    dcb;
    T4CTTIofetch 
                    ofetch;
    T4CTTIoexec 
                    oexec;
    T4CTTIfob 
                    fob;
    byte 
                    typeOfStatement;
    boolean 
                    sendDefines;
    int 
                    defCols;
    int 
                    rowsToFetch;
    T4CTTIoac[] 
                    oacdefBindsSent;
    T4CTTIoac[] 
                    oacdefDefines;
    int[] 
                    definedColumnSize;
    int[] 
                    definedColumnType;
    int[] 
                    definedColumnFormOfUse;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8Oall(T4CMAREngine, T4CConnection, T4CTTIoer) 
                    throws java.io.IOException, java.sql.SQLException;
    T4CTTIoac[] 
                    marshal(boolean, boolean, boolean, boolean, byte, int, byte[], int, Accessor[], int, Accessor[], int, byte[], char[], short[], int, DBConversion, byte[], java.io.InputStream[][], byte[][][], oracle.jdbc.oracore.OracleTypeADT[][], OracleStatement, byte[], char[], short[], T4CTTIoac[], int[], int[], int[]) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    getCursorId();
    void 
                    continueReadRow(int) 
                    throws java.sql.SQLException, java.io.IOException;
    int 
                    getNumRows();
    void 
                    marshalAll() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshalPisdef() 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    initBindsDefinition(T4CTTIoac[]) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    initDefinesDefinition() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshalBindsTypes(T4CTTIoac[]) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshalBinds(int[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    setOptions(boolean, boolean, boolean) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8Oclose.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8Oclose 
                    extends T4CTTIfun {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8Oclose(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    initCloseQuery() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    initCloseStatement() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal(int[], int) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C7Ocommoncall.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C7Ocommoncall 
                    extends T4CTTIfun {
    T4CConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C7Ocommoncall(T4CMAREngine, T4CTTIoer, T4CConnection) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    init(short) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTIBfile.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTIBfile 
                    extends T4C8TTILob {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8TTIBfile(T4CMAREngine, T4CTTIoer);
    oracle.sql.Datum 
                    createTemporaryLob(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    open(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    close(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    isOpen(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    doesExist(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTILob.class

                    package oracle.jdbc.driver;

                    abstract 
                    synchronized 
                    class T4C8TTILob 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    KPLOB_READ = 2;
    
                    static 
                    final int 
                    KPLOB_WRITE = 64;
    
                    static 
                    final int 
                    KPLOB_WRITE_APPEND = 8192;
    
                    static 
                    final int 
                    KPLOB_PAGE_SIZE = 16384;
    
                    static 
                    final int 
                    KPLOB_FILE_OPEN = 256;
    
                    static 
                    final int 
                    KPLOB_FILE_ISOPEN = 1024;
    
                    static 
                    final int 
                    KPLOB_FILE_EXISTS = 2048;
    
                    static 
                    final int 
                    KPLOB_FILE_CLOSE = 512;
    
                    static 
                    final int 
                    KPLOB_OPEN = 32768;
    
                    static 
                    final int 
                    KPLOB_CLOSE = 65536;
    
                    static 
                    final int 
                    KPLOB_ISOPEN = 69632;
    
                    static 
                    final int 
                    KPLOB_TMP_CREATE = 272;
    
                    static 
                    final int 
                    KPLOB_TMP_FREE = 273;
    
                    static 
                    final int 
                    KPLOB_GET_LEN = 1;
    
                    static 
                    final int 
                    KPLOB_TRIM = 32;
    
                    static 
                    final int 
                    KOKL_ORDONLY = 1;
    
                    static 
                    final int 
                    KOKL_ORDWR = 2;
    
                    static 
                    final int 
                    KOLF_ORDONLY = 11;
    
                    static 
                    final byte 
                    KOLBLOPEN = 8;
    
                    static 
                    final byte 
                    KOLBLTMP = 1;
    
                    static 
                    final byte 
                    KOLBLRDWR = 16;
    
                    static 
                    final byte 
                    KOLBLABS = 64;
    
                    static 
                    final byte 
                    ALLFLAGS = -1;
    
                    static 
                    final byte 
                    KOLBLFLGB = 4;
    
                    static 
                    final byte 
                    KOLLFLG = 4;
    
                    static 
                    final byte 
                    KOLL3FLG = 7;
    
                    static 
                    final byte 
                    KOLBLVLE = 64;
    
                    static 
                    final int 
                    DTYCLOB = 112;
    
                    static 
                    final int 
                    DTYBLOB = 113;
    byte[] 
                    sourceLobLocator;
    byte[] 
                    destinationLobLocator;
    long 
                    sourceOffset;
    long 
                    destinationOffset;
    int 
                    destinationLength;
    short 
                    characterSet;
    long 
                    lobamt;
    boolean 
                    lobnull;
    long 
                    lobops;
    int[] 
                    lobscn;
    int 
                    lobscnl;
    boolean 
                    nullO2U;
    boolean 
                    sendLobamt;
    byte[] 
                    inBuffer;
    byte[] 
                    outBuffer;
    int 
                    rowsProcessed;
    long 
                    lobBytesRead;
    boolean 
                    varWidthChar;
    boolean 
                    littleEndianClob;
    T4C8TTILobd 
                    lobd;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4C8TTILob(T4CMAREngine, T4CTTIoer);
    long 
                    read(byte[], long, long, byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    write(byte[], long, byte[], long, long) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    getLength(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    getChunkSize(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    trim(byte[], long) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    abstract oracle.sql.Datum 
                    createTemporaryLob(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    freeTemporaryLob(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    abstract boolean 
                    open(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    _open(byte[], int, int) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    abstract boolean 
                    close(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    _close(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    abstract boolean 
                    isOpen(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    _isOpen(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    initializeLobdef();
    void 
                    marshalOlobops() 
                    throws java.io.IOException;
    void 
                    receiveReply() 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    unmarshalTTIRPA() 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTIBlob.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTIBlob 
                    extends T4C8TTILob {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8TTIBlob(T4CMAREngine, T4CTTIoer);
    oracle.sql.Datum 
                    createTemporaryLob(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    open(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    close(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    isOpen(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTIClob.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTIClob 
                    extends T4C8TTILob {
    int[] 
                    nBytes;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8TTIClob(T4CMAREngine, T4CTTIoer);
    long 
                    read(byte[], long, long, boolean, char[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    write(byte[], long, boolean, char[], long, long) 
                    throws java.sql.SQLException, java.io.IOException;
    oracle.sql.Datum 
                    createTemporaryLob(java.sql.Connection, boolean, int) 
                    throws java.sql.SQLException, java.io.IOException;
    oracle.sql.Datum 
                    createTemporaryLob(java.sql.Connection, boolean, int, short) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    open(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    close(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    boolean 
                    isOpen(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIoses.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIoses 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    OSESSWS = 1;
    
                    static 
                    final int 
                    OSESDET = 3;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIoses(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal(int, int, int) 
                    throws java.io.IOException, java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIOtxse.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIOtxse 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    OTXSTA = 1;
    
                    static 
                    final int 
                    OTXDET = 2;
    
                    static 
                    final int 
                    OCI_TRANS_NEW = 1;
    
                    static 
                    final int 
                    OCI_TRANS_JOIN = 2;
    
                    static 
                    final int 
                    OCI_TRANS_RESUME = 4;
    
                    static 
                    final int 
                    OCI_TRANS_STARTMASK = 255;
    
                    static 
                    final int 
                    OCI_TRANS_READONLY = 256;
    
                    static 
                    final int 
                    OCI_TRANS_READWRITE = 512;
    
                    static 
                    final int 
                    OCI_TRANS_SERIALIZABLE = 1024;
    
                    static 
                    final int 
                    OCI_TRANS_ISOLMASK = 65280;
    
                    static 
                    final int 
                    OCI_TRANS_LOOSE = 65536;
    
                    static 
                    final int 
                    OCI_TRANS_TIGHT = 131072;
    
                    static 
                    final int 
                    OCI_TRANS_TYPEMASK = 983040;
    
                    static 
                    final int 
                    OCI_TRANS_NOMIGRATE = 1048576;
    
                    static 
                    final int 
                    OCI_TRANS_SEPARABLE = 2097152;
    boolean 
                    sendTransactionContext;
    T4CConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIOtxse(T4CMAREngine, T4CTTIoer, T4CConnection) 
                    throws java.sql.SQLException;
    void 
                    marshal(int, byte[], byte[], int, int, int, int, int) 
                    throws java.io.IOException, java.sql.SQLException;
    byte[] 
                    receive(int[]) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIk2rpc.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIk2rpc 
                    extends T4CTTIfun {
    T4CConnection 
                    connection;
    
                    static 
                    final int 
                    K2RPClogon = 1;
    
                    static 
                    final int 
                    K2RPCbegin = 2;
    
                    static 
                    final int 
                    K2RPCend = 3;
    
                    static 
                    final int 
                    K2RPCrecover = 4;
    
                    static 
                    final int 
                    K2RPCsession = 5;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIk2rpc(T4CMAREngine, T4CTTIoer, T4CConnection) 
                    throws java.sql.SQLException;
    void 
                    marshal(int, int) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIoscid.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIoscid 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    KPDUSR_CID_RESET = 1;
    
                    static 
                    final int 
                    KPDUSR_PROXY_RESET = 2;
    
                    static 
                    final int 
                    KPDUSR_PROXY_TKTSENT = 4;
    
                    static 
                    final int 
                    KPDUSR_MODULE_RESET = 8;
    
                    static 
                    final int 
                    KPDUSR_ACTION_RESET = 16;
    
                    static 
                    final int 
                    KPDUSR_EXECID_RESET = 32;
    
                    static 
                    final int 
                    KPDUSR_EXECSQ_RESET = 64;
    
                    static 
                    final int 
                    KPDUSR_COLLCT_RESET = 128;
    
                    static 
                    final int 
                    KPDUSR_CLINFO_RESET = 256;
    void T4CTTIoscid(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal(boolean[], String[], int) 
                    throws java.io.IOException, java.sql.SQLException;
}

                

oracle/jdbc/driver/T4CTTIokeyval.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIokeyval 
                    extends T4CTTIfun {
    
                    static 
                    final byte 
                    KVASET_KPDUSR = 1;
    
                    static 
                    final byte 
                    KVACLA_KPDUSR = 2;
    
                    private byte[] 
                    namespaceByteArr;
    
                    private char[] 
                    charArr;
    
                    private byte[][] 
                    attrArr;
    
                    private int[] 
                    attrArrSize;
    
                    private byte[][] 
                    valueArr;
    
                    private int[] 
                    valueArrSize;
    
                    private byte[] 
                    kvalflg;
    void T4CTTIokeyval(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal(Namespace) 
                    throws java.io.IOException, java.sql.SQLException;
}

                

oracle/jdbc/driver/T4CXAResource.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CXAResource 
                    extends oracle.jdbc.xa.client.OracleXAResource {
    T4CConnection 
                    physicalConn;
    int[] 
                    applicationValueArr;
    boolean 
                    isTransLoose;
    byte[] 
                    context;
    int[] 
                    errorNumber;
    
                    private String 
                    password;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CXAResource(T4CConnection, oracle.jdbc.xa.OracleXAConnection, boolean) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doStart(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doEnd(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doCommit(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doPrepare(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doForget(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doRollback(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    int 
                    doTransaction(javax.transaction.xa.Xid, int, int) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    kputxrec(javax.transaction.xa.Xid, int, int) 
                    throws javax.transaction.xa.XAException;
    int 
                    kpuho2oc(int, int[]);
    
                    final void 
                    setPasswordInternal(String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIdcb.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIdcb 
                    extends T4CTTIMsg {
    T4C8TTIuds[] 
                    uds;
    int 
                    numuds;
    String[] 
                    colnames;
    int 
                    colOffset;
    byte[] 
                    ignoreBuff;
    StringBuffer 
                    colNameSB;
    OracleStatement 
                    statement;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIdcb(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    init(OracleStatement, int);
    Accessor[] 
                    receive(Accessor[]) 
                    throws java.sql.SQLException, java.io.IOException;
    Accessor[] 
                    receiveFromRefCursor(Accessor[]) 
                    throws java.sql.SQLException, java.io.IOException;
    Accessor[] 
                    receiveCommon(Accessor[], boolean) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    fillupAccessors(Accessor[], int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTIrxh.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTIrxh 
                    extends T4CTTIMsg {
    short 
                    flags;
    int 
                    numRqsts;
    int 
                    iterNum;
    int 
                    numItersThisTime;
    int 
                    uacBufLength;
    
                    static 
                    final byte 
                    FU2O = 1;
    
                    static 
                    final byte 
                    FEOR = 2;
    
                    static 
                    final byte 
                    PLSV = 4;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4C8TTIrxh(T4CMAREngine);
    void 
                    unmarshalV10(T4CTTIrxd) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    init();
    void 
                    print(int, int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIofetch.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIofetch 
                    extends T4CTTIfun {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIofetch(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal(int, int) 
                    throws java.io.IOException, java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIoexec.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIoexec 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    EXE_COMMIT_ON_SUCCESS = 1;
    
                    static 
                    final int 
                    EXE_LEAVE_CUR_MAPPED = 2;
    
                    static 
                    final int 
                    EXE_BATCH_DML_ERRORS = 4;
    
                    static 
                    final int 
                    EXE_SCROL_READ_ONLY = 8;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIoexec(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal(int, int, int) 
                    throws java.io.IOException, java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIfob.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIfob 
                    extends T4CTTIMsg {
    void T4CTTIfob(T4CMAREngine) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    marshal() 
                    throws java.io.IOException, java.sql.SQLException;
}

                

oracle/jdbc/driver/T4C8TTILobd.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTILobd 
                    extends T4CTTIMsg {
    
                    static 
                    final int 
                    LOBD_STATE0 = 0;
    
                    static 
                    final int 
                    LOBD_STATE1 = 1;
    
                    static 
                    final int 
                    LOBD_STATE2 = 2;
    
                    static 
                    final int 
                    LOBD_STATE3 = 3;
    
                    static 
                    final int 
                    LOBD_STATE_EXIT = 4;
    
                    static 
                    final short 
                    TTCG_LNG = 254;
    
                    static 
                    final short 
                    LOBDATALENGTH = 252;
    
                    static byte[] 
                    ucs2Char;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T4C8TTILobd(T4CMAREngine);
    void 
                    marshalLobData(byte[], long, long) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    marshalLobDataUB2(byte[], long, long) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    unmarshalLobData(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    long 
                    unmarshalClobUB2(byte[]) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4C8TTIuds.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4C8TTIuds 
                    extends T4CTTIMsg {
    T4CTTIoac 
                    udsoac;
    boolean 
                    udsnull;
    short 
                    udscnl;
    byte 
                    optimizeOAC;
    byte[] 
                    udscolnm;
    short 
                    udscolnl;
    byte[] 
                    udssnm;
    long 
                    udssnl;
    int[] 
                    snnumchar;
    byte[] 
                    udstnm;
    long 
                    udstnl;
    int[] 
                    tnnumchar;
    int[] 
                    numBytes;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4C8TTIuds(T4CMAREngine) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    unmarshal() 
                    throws java.io.IOException, java.sql.SQLException;
    byte[] 
                    getColumName();
    byte[] 
                    getTypeName();
    byte[] 
                    getSchemaName();
    short 
                    getTypeCharLength();
    short 
                    getColumNameByteLength();
    short 
                    getSchemaCharLength();
    void 
                    print(int, int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CStatement.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CStatement 
                    extends OracleStatement {
    T2CConnection 
                    connection;
    int 
                    userResultSetType;
    int 
                    userResultSetConcur;
    
                    static int 
                    T2C_EXTEND_BUFFER;
    long[] 
                    t2cOutput;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T2CStatement(T2CConnection, int, int) 
                    throws java.sql.SQLException;
    void T2CStatement(T2CConnection, int, int, int, int) 
                    throws java.sql.SQLException;
    
                    static 
                    native int 
                    t2cParseExecuteDescribe(OracleStatement, long, int, int, int, boolean, boolean, boolean, boolean, byte[], int, byte, int, int, short[], int, byte[], char[], int, int, short[], int, int, byte[], char[], int, int, int[], short[], byte[], int, int, int, int, boolean, boolean, Accessor[], byte[][][], long[], byte[], int, char[], int, short[], int, boolean);
    
                    static 
                    native int 
                    t2cDefineExecuteFetch(OracleStatement, long, int, int, int, int, boolean, boolean, byte[], int, byte, int, int, short[], int, byte[], char[], int, int, short[], byte[], int, int, boolean, boolean, Accessor[], byte[][][], long[], byte[], int, char[], int, short[], int);
    
                    static 
                    native int 
                    t2cDescribe(long, short[], byte[], int, int, int, int);
    
                    static 
                    native int 
                    t2cDefineFetch(long, int, short[], byte[], int, int, Accessor[], byte[], int, char[], int, short[], int, long[]);
    
                    static 
                    native int 
                    t2cFetch(long, boolean, int, Accessor[], byte[], int, char[], int, short[], int, long[]);
    
                    static 
                    native int 
                    t2cCloseStatement(long);
    
                    static 
                    native int 
                    t2cEndToEndUpdate(long, byte[], int, byte[], int, byte[], int, byte[], int, int);
    
                    static 
                    native int 
                    t2cGetRowsDmlReturned(long);
    
                    static 
                    native int 
                    t2cFetchDmlReturnParams(long, Accessor[], byte[], char[], short[]);
    String 
                    bytes2String(byte[], int, int) 
                    throws java.sql.SQLException;
    void 
                    processDescribeData() 
                    throws java.sql.SQLException;
    void 
                    doDescribe(boolean) 
                    throws java.sql.SQLException;
    void 
                    executeForDescribe() 
                    throws java.sql.SQLException;
    void 
                    pushEndToEndValues() 
                    throws java.sql.SQLException;
    void 
                    executeForRows(boolean) 
                    throws java.sql.SQLException;
    void 
                    setupForDefine() 
                    throws java.sql.SQLException;
    void 
                    doDefineFetch() 
                    throws java.sql.SQLException;
    void 
                    doDefineExecuteFetch() 
                    throws java.sql.SQLException;
    void 
                    fetch() 
                    throws java.sql.SQLException;
    void 
                    doClose() 
                    throws java.sql.SQLException;
    void 
                    closeQuery() 
                    throws java.sql.SQLException;
    Accessor 
                    allocateAccessor(int, int, int, int, short, String, boolean) 
                    throws java.sql.SQLException;
    void 
                    closeUsedStreams(int) 
                    throws java.sql.SQLException;
    void 
                    fetchDmlReturnParams() 
                    throws java.sql.SQLException;
    void 
                    initializeIndicatorSubRange();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleBlobInputStream.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleBlobInputStream 
                    extends OracleBufferedStream {
    long 
                    lobOffset;
    oracle.sql.Datum 
                    lob;
    long 
                    markedByte;
    boolean 
                    endOfStream;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleBlobInputStream(oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public void OracleBlobInputStream(oracle.sql.BLOB, int) 
                    throws java.sql.SQLException;
    
                    public void OracleBlobInputStream(oracle.sql.BLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public void OracleBlobInputStream(oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public void OracleBlobInputStream(oracle.sql.BFILE, int) 
                    throws java.sql.SQLException;
    
                    public void OracleBlobInputStream(oracle.sql.BFILE, int, long) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    needBytes() 
                    throws java.io.IOException;
    void 
                    ensureOpen() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    public 
                    synchronized void 
                    mark(int);
    
                    public 
                    synchronized void 
                    reset() 
                    throws java.io.IOException;
    
                    public long 
                    skip(long) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleClobInputStream.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleClobInputStream 
                    extends OracleBufferedStream {
    
                    protected long 
                    lobOffset;
    
                    protected oracle.sql.CLOB 
                    clob;
    
                    protected long 
                    markedByte;
    
                    protected boolean 
                    endOfStream;
    
                    protected char[] 
                    charBuf;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleClobInputStream(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void OracleClobInputStream(oracle.sql.CLOB, int) 
                    throws java.sql.SQLException;
    
                    public void OracleClobInputStream(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    needBytes() 
                    throws java.io.IOException;
    
                    protected void 
                    ensureOpen() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    public 
                    synchronized void 
                    mark(int);
    
                    public 
                    synchronized void 
                    reset() 
                    throws java.io.IOException;
    
                    public long 
                    skip(long) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleClobOutputStream.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleClobOutputStream 
                    extends java.io.OutputStream {
    long 
                    lobOffset;
    oracle.sql.CLOB 
                    clob;
    byte[] 
                    buf;
    int 
                    count;
    int 
                    bufSize;
    boolean 
                    isClosed;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleClobOutputStream(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void OracleClobOutputStream(oracle.sql.CLOB, int) 
                    throws java.sql.SQLException;
    
                    public void OracleClobOutputStream(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    write(int) 
                    throws java.io.IOException;
    
                    public void 
                    write(byte[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    flush() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    private void 
                    flushBuffer() 
                    throws java.io.IOException;
    void 
                    ensureOpen() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleClobReader.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleClobReader 
                    extends java.io.Reader {
    oracle.sql.CLOB 
                    clob;
    DBConversion 
                    dbConversion;
    long 
                    lobOffset;
    long 
                    markedChar;
    char[] 
                    buf;
    int 
                    pos;
    int 
                    count;
    int 
                    chunkSize;
    boolean 
                    isClosed;
    boolean 
                    endOfStream;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void OracleClobReader(oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public void OracleClobReader(oracle.sql.CLOB, int) 
                    throws java.sql.SQLException;
    
                    public void OracleClobReader(oracle.sql.CLOB, int, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    read(char[], int, int) 
                    throws java.io.IOException;
    
                    protected boolean 
                    needChars() 
                    throws java.io.IOException;
    
                    protected int 
                    writeChars(char[], int, int);
    
                    public boolean 
                    ready() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    void 
                    ensureOpen() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    public void 
                    mark(int) 
                    throws java.io.IOException;
    
                    public void 
                    reset() 
                    throws java.io.IOException;
    
                    public long 
                    skip(long) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/SensitiveScrollableResultSet.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class SensitiveScrollableResultSet 
                    extends ScrollableResultSet {
    int 
                    beginLastFetchedIndex;
    int 
                    endLastFetchedIndex;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void SensitiveScrollableResultSet(ScrollRsetStatement, OracleResultSetImpl, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    first() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    last() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    relative(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    refreshRow() 
                    throws java.sql.SQLException;
    
                    synchronized int 
                    removeRowInCache(int) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    handle_refetch() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CStatement.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CStatement 
                    extends OracleStatement {
    
                    static 
                    final byte[][][] 
                    parameterDatum;
    
                    static 
                    final oracle.jdbc.oracore.OracleTypeADT[][] 
                    parameterOtype;
    
                    static 
                    final byte[] 
                    EMPTY_BYTE;
    T4CConnection 
                    t4Connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void 
                    doOall8(boolean, boolean, boolean, boolean) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    allocateTmpByteArray();
    void 
                    allocateRowidAccessor() 
                    throws java.sql.SQLException;
    void 
                    reparseOnRedefineIfNeeded() 
                    throws java.sql.SQLException;
    
                    protected void 
                    defineColumnTypeInternal(int, int, int, short, boolean, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    clearDefines() 
                    throws java.sql.SQLException;
    void 
                    saveDefineBuffersIfRequired(char[], byte[], short[], boolean) 
                    throws java.sql.SQLException;
    Accessor 
                    allocateAccessor(int, int, int, int, short, String, boolean) 
                    throws java.sql.SQLException;
    void 
                    doDescribe(boolean) 
                    throws java.sql.SQLException;
    void 
                    executeForDescribe() 
                    throws java.sql.SQLException;
    void 
                    executeMaybeDescribe() 
                    throws java.sql.SQLException;
    void 
                    executeForRows(boolean) 
                    throws java.sql.SQLException;
    void 
                    fetch() 
                    throws java.sql.SQLException;
    void 
                    continueReadRow(int) 
                    throws java.sql.SQLException;
    void 
                    doClose() 
                    throws java.sql.SQLException;
    void 
                    closeQuery() 
                    throws java.sql.SQLException;
    void T4CStatement(PhysicalConnection, int, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIiov.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIiov 
                    extends T4CTTIMsg {
    T4C8TTIrxh 
                    rxh;
    T4CTTIrxd 
                    rxd;
    byte 
                    bindtype;
    byte[] 
                    iovector;
    int 
                    bindcnt;
    int 
                    inbinds;
    int 
                    outbinds;
    
                    static 
                    final byte 
                    BV_IN_V = 32;
    
                    static 
                    final byte 
                    BV_OUT_V = 16;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTTIiov(T4CMAREngine, T4C8TTIrxh, T4CTTIrxd) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    init() 
                    throws java.sql.SQLException, java.io.IOException;
    Accessor[] 
                    processRXD(Accessor[], int, byte[], char[], short[], int, DBConversion, byte[], byte[], java.io.InputStream[][], byte[][][], oracle.jdbc.oracore.OracleTypeADT[][], OracleStatement, byte[], char[], short[]) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    unmarshalV10() 
                    throws java.io.IOException, java.sql.SQLException;
    byte[] 
                    getIOVector();
    boolean 
                    isIOVectorEmpty();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CRowidAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CRowidAccessor 
                    extends RowidAccessor {
    T4CMAREngine 
                    mare;
    
                    static 
                    final int 
                    maxLength = 128;
    
                    final int[] 
                    meta;
    
                    static 
                    final int 
                    KGRD_EXTENDED_OBJECT = 6;
    
                    static 
                    final int 
                    KGRD_EXTENDED_BLOCK = 6;
    
                    static 
                    final int 
                    KGRD_EXTENDED_FILE = 3;
    
                    static 
                    final int 
                    KGRD_EXTENDED_SLOT = 3;
    
                    static 
                    final int 
                    kd4_ubridtype_physicall = 1;
    
                    static 
                    final int 
                    kd4_ubridtype_logical = 2;
    
                    static 
                    final int 
                    kd4_ubridtype_remote = 3;
    
                    static 
                    final int 
                    kd4_ubridtype_exttab = 4;
    
                    static 
                    final int 
                    kd4_ubridlen_typeind = 1;
    
                    static 
                    final byte[] 
                    kgrd_indbyte_char;
    
                    static 
                    final byte[] 
                    kgrd_basis_64;
    
                    static 
                    final byte[] 
                    kgrd_index_64;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CRowidAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CRowidAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    
                    static 
                    final byte[] 
                    rowidToString(long[]);
    
                    static 
                    final long[] 
                    rcToRowid(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    static 
                    final byte[] 
                    kgrdr2rc(long[]);
    
                    static 
                    final int 
                    lmx42h(byte[], long, int, int);
    
                    static 
                    final long[] 
                    stringToRowid(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    static 
                    final int 
                    kgrd42b(byte[], long, int, int);
    
                    static 
                    final long 
                    kgrdb42(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    static 
                    final String 
                    kgrdub2c(byte[], int, int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CLongAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CLongAccessor 
                    extends LongAccessor {
    T4CMAREngine 
                    mare;
    
                    static 
                    final int 
                    t4MaxLength = 2147483647;
    
                    static 
                    final int 
                    t4PlsqlMaxLength = 32760;
    byte[][] 
                    data;
    int[] 
                    nbBytesRead;
    int[] 
                    bytesReadSoFar;
    
                    final int[] 
                    escapeSequenceArr;
    
                    final boolean[] 
                    readHeaderArr;
    
                    final boolean[] 
                    readAsNonStreamArr;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CLongAccessor(OracleStatement, int, int, short, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CLongAccessor(OracleStatement, int, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    fetchNextColumns() 
                    throws java.sql.SQLException;
    int 
                    readStream(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    protected 
                    static 
                    final int 
                    readStreamFromWire(byte[], int, int, int[], boolean[], boolean[], T4CMAREngine, T4CTTIoer) 
                    throws java.sql.SQLException, java.io.IOException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CRefTypeAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CRefTypeAccessor 
                    extends RefTypeAccessor {
    
                    static 
                    final int 
                    maxLength = 4000;
    T4CMAREngine 
                    mare;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CRefTypeAccessor(OracleStatement, String, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CRefTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CVarcharAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CVarcharAccessor 
                    extends VarcharAccessor {
    T4CMAREngine 
                    mare;
    
                    static 
                    final int 
                    t4MaxLength = 4000;
    
                    static 
                    final int 
                    t4CallMaxLength = 4001;
    
                    static 
                    final int 
                    t4PlsqlMaxLength = 32512;
    boolean 
                    underlyingLong;
    
                    final int[] 
                    meta;
    
                    final int[] 
                    tmp;
    
                    final int[] 
                    escapeSequenceArr;
    
                    final boolean[] 
                    readHeaderArr;
    
                    final boolean[] 
                    readAsNonStreamArr;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CVarcharAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CVarcharAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    void 
                    calculateSizeTmpByteArray();
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CCharAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CCharAccessor 
                    extends CharAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLong;
    
                    final int[] 
                    meta;
    
                    final int[] 
                    tmp;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CCharAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CCharAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    void 
                    calculateSizeTmpByteArray();
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CNumberAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CNumberAccessor 
                    extends NumberAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CNumberAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CNumberAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CVarnumAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CVarnumAccessor 
                    extends VarnumAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CVarnumAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CVarnumAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CBinaryFloatAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CBinaryFloatAccessor 
                    extends BinaryFloatAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CBinaryFloatAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CBinaryFloatAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CBinaryDoubleAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CBinaryDoubleAccessor 
                    extends BinaryDoubleAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CBinaryDoubleAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CBinaryDoubleAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CRawAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CRawAccessor 
                    extends RawAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    final int[] 
                    escapeSequenceArr;
    
                    final boolean[] 
                    readHeaderArr;
    
                    final boolean[] 
                    readAsNonStreamArr;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CRawAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CRawAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CLongRawAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CLongRawAccessor 
                    extends LongRawAccessor {
    T4CMAREngine 
                    mare;
    byte[][] 
                    data;
    int[] 
                    nbBytesRead;
    int[] 
                    bytesReadSoFar;
    
                    final int[] 
                    escapeSequenceArr;
    
                    final boolean[] 
                    readHeaderArr;
    
                    final boolean[] 
                    readAsNonStreamArr;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CLongRawAccessor(OracleStatement, int, int, short, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CLongRawAccessor(OracleStatement, int, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    fetchNextColumns() 
                    throws java.sql.SQLException;
    int 
                    readStream(byte[], int) 
                    throws java.sql.SQLException, java.io.IOException;
    
                    protected 
                    static 
                    final int 
                    readStreamFromWire(byte[], int, int, int[], boolean[], boolean[], T4CMAREngine, T4CTTIoer) 
                    throws java.sql.SQLException, java.io.IOException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CResultSetAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CResultSetAccessor 
                    extends ResultSetAccessor {
    T4CMAREngine 
                    mare;
    OracleStatement[] 
                    newstmt;
    byte[] 
                    empty;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CResultSetAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CResultSetAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CDateAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CDateAccessor 
                    extends DateAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CDateAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CDateAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CBlobAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CBlobAccessor 
                    extends BlobAccessor {
    T4CMAREngine 
                    mare;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CBlobAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CBlobAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CClobAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CClobAccessor 
                    extends ClobAccessor {
    T4CMAREngine 
                    mare;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CClobAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CClobAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CBfileAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CBfileAccessor 
                    extends BfileAccessor {
    
                    static 
                    final int 
                    maxLength = 530;
    T4CMAREngine 
                    mare;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CBfileAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CBfileAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CNamedTypeAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CNamedTypeAccessor 
                    extends NamedTypeAccessor {
    
                    static 
                    final int 
                    maxLength = 2147483647;
    
                    final int[] 
                    meta;
    T4CMAREngine 
                    mare;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    void T4CNamedTypeAccessor(OracleStatement, String, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CNamedTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTimestampAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTimestampAccessor 
                    extends TimestampAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTimestampAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CTimestampAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTimestamptzAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTimestamptzAccessor 
                    extends TimestamptzAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTimestamptzAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CTimestamptzAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTimestampltzAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTimestampltzAccessor 
                    extends TimestampltzAccessor {
    T4CMAREngine 
                    mare;
    boolean 
                    underlyingLongRaw;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:38_PST_2006;
    void T4CTimestampltzAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CTimestampltzAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CIntervalymAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CIntervalymAccessor 
                    extends IntervalymAccessor {
    T4CMAREngine 
                    mare;
    
                    static int 
                    maxLength;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CIntervalymAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CIntervalymAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CIntervaldsAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CIntervaldsAccessor 
                    extends IntervaldsAccessor {
    T4CMAREngine 
                    mare;
    
                    static int 
                    maxLength;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CIntervaldsAccessor(OracleStatement, int, short, int, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void T4CIntervaldsAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, int, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CResultSetAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CResultSetAccessor 
                    extends ResultSetAccessor {
    void T2CResultSetAccessor(OracleStatement, int, short, int, boolean) 
                    throws java.sql.SQLException;
    void T2CResultSetAccessor(OracleStatement, int, boolean, int, int, int, int, int, short) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/driver/T2CNamedTypeAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CNamedTypeAccessor 
                    extends NamedTypeAccessor {
    int 
                    columnNumber;
    void T2CNamedTypeAccessor(OracleStatement, String, short, int, boolean, int) 
                    throws java.sql.SQLException;
    void T2CNamedTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String) 
                    throws java.sql.SQLException;
    void T2CNamedTypeAccessor(OracleStatement, int, boolean, int, int, int, int, int, short, String, oracle.jdbc.oracore.OracleType) 
                    throws java.sql.SQLException;
    oracle.jdbc.oracore.OracleType 
                    otypeFromName(String) 
                    throws java.sql.SQLException;
    Object 
                    getAnyDataEmbeddedObject(int) 
                    throws java.sql.SQLException;
    
                    native String 
                    getAllAnydataTypeInfo(long, int, int, int[]);
}

                

oracle/jdbc/driver/T4COutRawAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4COutRawAccessor 
                    extends OutRawAccessor {
    T4CMAREngine 
                    mare;
    
                    final int[] 
                    meta;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4COutRawAccessor(OracleStatement, int, short, int, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    copyRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    saveDataFromOldDefineBuffers(byte[], char[], short[], int, int) 
                    throws java.sql.SQLException;
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/Message11.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class Message11 
                    implements Message {
    
                    private 
                    static java.util.ResourceBundle 
                    bundle;
    
                    private 
                    static 
                    final String 
                    messageFile = oracle.jdbc.driver.Messages;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:34_PST_2006;
    
                    public void Message11();
    
                    public String 
                    msg(String, Object);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/OracleSQLException.class

                    package oracle.jdbc.driver;

                    public 
                    synchronized 
                    class OracleSQLException 
                    extends java.sql.SQLException {
    
                    private Object[] 
                    m_parameters;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:35_PST_2006;
    
                    public void OracleSQLException();
    
                    public void OracleSQLException(String);
    
                    public void OracleSQLException(String, String);
    
                    public void OracleSQLException(String, String, int);
    
                    public void OracleSQLException(String, String, int, Object[]);
    
                    public Object[] 
                    getParameters();
    
                    public int 
                    getNumParameters();
    
                    public void 
                    setParameters(Object[]);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CCallableStatement.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CCallableStatement 
                    extends OracleCallableStatement {
    T2CConnection 
                    connection;
    int 
                    userResultSetType;
    int 
                    userResultSetConcur;
    
                    static int 
                    T2C_EXTEND_BUFFER;
    long[] 
                    t2cOutput;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T2CCallableStatement(T2CConnection, String, int, int, int, int) 
                    throws java.sql.SQLException;
    String 
                    bytes2String(byte[], int, int) 
                    throws java.sql.SQLException;
    void 
                    processDescribeData() 
                    throws java.sql.SQLException;
    void 
                    doDescribe(boolean) 
                    throws java.sql.SQLException;
    void 
                    executeForDescribe() 
                    throws java.sql.SQLException;
    void 
                    pushEndToEndValues() 
                    throws java.sql.SQLException;
    void 
                    executeForRows(boolean) 
                    throws java.sql.SQLException;
    void 
                    setupForDefine() 
                    throws java.sql.SQLException;
    void 
                    doDefineFetch() 
                    throws java.sql.SQLException;
    void 
                    doDefineExecuteFetch() 
                    throws java.sql.SQLException;
    void 
                    fetch() 
                    throws java.sql.SQLException;
    void 
                    doClose() 
                    throws java.sql.SQLException;
    void 
                    closeQuery() 
                    throws java.sql.SQLException;
    Accessor 
                    allocateAccessor(int, int, int, int, short, String, boolean) 
                    throws java.sql.SQLException;
    void 
                    closeUsedStreams(int) 
                    throws java.sql.SQLException;
    void 
                    fetchDmlReturnParams() 
                    throws java.sql.SQLException;
    void 
                    initializeIndicatorSubRange();
    void 
                    prepareBindPreambles(int, int);
    void 
                    registerOutParameterInternal(int, int, int, int, String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CDriverExtension.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CDriverExtension 
                    extends OracleDriverExtension {
    
                    static 
                    final int 
                    T2C_DEFAULT_BATCHSIZE = 1;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T2CDriverExtension();
    java.sql.Connection 
                    getConnection(String, String, String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    OracleStatement 
                    allocateStatement(PhysicalConnection, int, int) 
                    throws java.sql.SQLException;
    OraclePreparedStatement 
                    allocatePreparedStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    OracleCallableStatement 
                    allocateCallableStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    OracleInputStream 
                    createInputStream(OracleStatement, int, Accessor) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CPreparedStatement.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CPreparedStatement 
                    extends OraclePreparedStatement {
    T2CConnection 
                    connection;
    int 
                    userResultSetType;
    int 
                    userResultSetConcur;
    
                    static int 
                    T2C_EXTEND_BUFFER;
    long[] 
                    t2cOutput;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    void T2CPreparedStatement(T2CConnection, String, int, int, int, int) 
                    throws java.sql.SQLException;
    String 
                    bytes2String(byte[], int, int) 
                    throws java.sql.SQLException;
    void 
                    processDescribeData() 
                    throws java.sql.SQLException;
    void 
                    doDescribe(boolean) 
                    throws java.sql.SQLException;
    void 
                    executeForDescribe() 
                    throws java.sql.SQLException;
    void 
                    pushEndToEndValues() 
                    throws java.sql.SQLException;
    void 
                    executeForRows(boolean) 
                    throws java.sql.SQLException;
    void 
                    setupForDefine() 
                    throws java.sql.SQLException;
    void 
                    doDefineFetch() 
                    throws java.sql.SQLException;
    void 
                    doDefineExecuteFetch() 
                    throws java.sql.SQLException;
    void 
                    fetch() 
                    throws java.sql.SQLException;
    void 
                    doClose() 
                    throws java.sql.SQLException;
    void 
                    closeQuery() 
                    throws java.sql.SQLException;
    Accessor 
                    allocateAccessor(int, int, int, int, short, String, boolean) 
                    throws java.sql.SQLException;
    void 
                    closeUsedStreams(int) 
                    throws java.sql.SQLException;
    void 
                    fetchDmlReturnParams() 
                    throws java.sql.SQLException;
    void 
                    initializeIndicatorSubRange();
    void 
                    prepareBindPreambles(int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T2CInputStream.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T2CInputStream 
                    extends OracleInputStream {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:36_PST_2006;
    
                    native int 
                    t2cGetBytes(long, int, byte[], int, Accessor[], byte[], int, char[], int, short[], int);
    void T2CInputStream(OracleStatement, int, Accessor);
    void T2CInputStream(int);
    
                    public int 
                    getBytes() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CCallableStatement.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CCallableStatement 
                    extends OracleCallableStatement {
    
                    static 
                    final byte[] 
                    EMPTY_BYTE;
    T4CConnection 
                    t4Connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CCallableStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    void 
                    doOall8(boolean, boolean, boolean, boolean) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    allocateTmpByteArray();
    void 
                    allocateRowidAccessor() 
                    throws java.sql.SQLException;
    void 
                    reparseOnRedefineIfNeeded() 
                    throws java.sql.SQLException;
    
                    protected void 
                    defineColumnTypeInternal(int, int, int, short, boolean, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    clearDefines() 
                    throws java.sql.SQLException;
    void 
                    saveDefineBuffersIfRequired(char[], byte[], short[], boolean) 
                    throws java.sql.SQLException;
    Accessor 
                    allocateAccessor(int, int, int, int, short, String, boolean) 
                    throws java.sql.SQLException;
    void 
                    doDescribe(boolean) 
                    throws java.sql.SQLException;
    void 
                    executeForDescribe() 
                    throws java.sql.SQLException;
    void 
                    executeMaybeDescribe() 
                    throws java.sql.SQLException;
    void 
                    executeForRows(boolean) 
                    throws java.sql.SQLException;
    void 
                    fetch() 
                    throws java.sql.SQLException;
    void 
                    continueReadRow(int) 
                    throws java.sql.SQLException;
    void 
                    doClose() 
                    throws java.sql.SQLException;
    void 
                    closeQuery() 
                    throws java.sql.SQLException;
    PlsqlIndexTableAccessor 
                    allocateIndexTableAccessor(int, int, int, int, short, boolean) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CPlsqlIndexTableAccessor.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CPlsqlIndexTableAccessor 
                    extends PlsqlIndexTableAccessor {
    T4CMAREngine 
                    mare;
    
                    final int[] 
                    meta;
    
                    final int[] 
                    tmp;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CPlsqlIndexTableAccessor(OracleStatement, int, int, int, int, short, boolean, T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    processIndicator(int) 
                    throws java.io.IOException, java.sql.SQLException;
    boolean 
                    unmarshalOneRow() 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    calculateSizeTmpByteArray();
    String 
                    getString(int) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CDriverExtension.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CDriverExtension 
                    extends OracleDriverExtension {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CDriverExtension();
    java.sql.Connection 
                    getConnection(String, String, String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    OracleStatement 
                    allocateStatement(PhysicalConnection, int, int) 
                    throws java.sql.SQLException;
    OraclePreparedStatement 
                    allocatePreparedStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    OracleCallableStatement 
                    allocateCallableStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    OracleInputStream 
                    createInputStream(OracleStatement, int, Accessor) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CPreparedStatement.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CPreparedStatement 
                    extends OraclePreparedStatement {
    
                    static 
                    final byte[] 
                    EMPTY_BYTE;
    T4CConnection 
                    t4Connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CPreparedStatement(PhysicalConnection, String, int, int) 
                    throws java.sql.SQLException;
    void 
                    doOall8(boolean, boolean, boolean, boolean) 
                    throws java.sql.SQLException, java.io.IOException;
    void 
                    allocateTmpByteArray();
    void 
                    allocateRowidAccessor() 
                    throws java.sql.SQLException;
    void 
                    reparseOnRedefineIfNeeded() 
                    throws java.sql.SQLException;
    
                    protected void 
                    defineColumnTypeInternal(int, int, int, short, boolean, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    clearDefines() 
                    throws java.sql.SQLException;
    void 
                    saveDefineBuffersIfRequired(char[], byte[], short[], boolean) 
                    throws java.sql.SQLException;
    Accessor 
                    allocateAccessor(int, int, int, int, short, String, boolean) 
                    throws java.sql.SQLException;
    void 
                    doDescribe(boolean) 
                    throws java.sql.SQLException;
    void 
                    executeForDescribe() 
                    throws java.sql.SQLException;
    void 
                    executeMaybeDescribe() 
                    throws java.sql.SQLException;
    void 
                    executeForRows(boolean) 
                    throws java.sql.SQLException;
    void 
                    fetch() 
                    throws java.sql.SQLException;
    void 
                    continueReadRow(int) 
                    throws java.sql.SQLException;
    void 
                    doClose() 
                    throws java.sql.SQLException;
    void 
                    closeQuery() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CInputStream.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CInputStream 
                    extends OracleInputStream {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:37_PST_2006;
    void T4CInputStream(OracleStatement, int, Accessor);
    
                    public boolean 
                    isNull() 
                    throws java.io.IOException;
    
                    public int 
                    getBytes() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/driver/T4CTTIOkpfc.class

                    package oracle.jdbc.driver;

                    synchronized 
                    class T4CTTIOkpfc 
                    extends T4CTTIfun {
    
                    static 
                    final int 
                    KPFCI_CONNECT = 1;
    
                    static 
                    final int 
                    KPFCI_REVERT = 2;
    
                    static 
                    final int 
                    KPFCI_TEST = 4;
    
                    static 
                    final int 
                    KPFCI_STRM = 8;
    
                    static 
                    final int 
                    KPFCI_PING = 16;
    
                    static 
                    final int 
                    KPFCI_TCPCONNECT = 32;
    
                    static 
                    final int 
                    KPFCI_TCPREVERT = 64;
    
                    static 
                    final int 
                    KPFCV_VENDOR = 0;
    
                    static 
                    final int 
                    KPFCV_PROTO = 1;
    
                    static 
                    final int 
                    KPFCV_MAJOR = 2;
    
                    static 
                    final int 
                    KPFCV_MINOR = 3;
    
                    static 
                    final int 
                    KPFCO_CONNECT = 1;
    
                    static 
                    final int 
                    KPFCO_REVERT = 2;
    
                    static 
                    final int 
                    KPFCO_TCPCONNECT = 4;
    
                    static 
                    final int 
                    KPFCO_TCPREVERT = 8;
    void T4CTTIOkpfc(T4CMAREngine) 
                    throws java.sql.SQLException;
    void 
                    marshal(int) 
                    throws java.io.IOException, java.sql.SQLException;
    void 
                    receive() 
                    throws java.sql.SQLException, java.io.IOException;
}

                

oracle/jdbc/driver/Messages_ar.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A ORA-17002=\u0627\u0633\u062A\u062B\u0646\u0627\u0621 \u0645\u062F\u062E\u0644\u0627\u062A/\u0645\u062E\u0631\u062C\u0627\u062A ORA-17003=\u0641\u0647\u0631\u0633 \u0639\u0645\u0648\u062F \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17004=\u0646\u0648\u0639 \u0639\u0645\u0648\u062F \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17005=\u0646\u0648\u0639 \u0639\u0645\u0648\u062F \u063A\u064A\u0631 \u0645\u062F\u0639\u0645 ORA-17006=\u0627\u0633\u0645 \u0639\u0645\u0648\u062F \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17007=\u0639\u0645\u0648\u062F \u062F\u064A\u0646\u0627\u0645\u064A\u0643\u064A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17008=\u0627\u062A\u0635\u0627\u0644 \u0645\u063A\u0644\u0642 ORA-17009=\u062C\u0645\u0644\u0629 \u0645\u063A\u0644\u0642\u0629 ORA-17010=\u0645\u062C\u0645\u0648\u0639\u0629 \u0646\u062A\u0627\u0626\u062C \u0645\u063A\u0644\u0642\u0629 ORA-17011=\u0645\u062C\u0645\u0648\u0639\u0629 \u0646\u062A\u0627\u0626\u062C \u0646\u0627\u0641\u062F\u0629 ORA-17012=\u062A\u0636\u0627\u0631\u0628 \u0646\u0648\u0639 \u0627\u0644\u0645\u0639\u0627\u0645\u0644 ORA-17014=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0633\u062A\u062F\u0639\u0627\u0621 ResultSet.next ORA-17015=\u062A\u0645 \u0625\u0644\u063A\u0627\u0621 \u0627\u0644\u062C\u0645\u0644\u0629 ORA-17016=\u0627\u0646\u062A\u0647\u0649 \u0648\u0642\u062A \u0627\u0644\u062C\u0645\u0644\u0629 ORA-17017=\u062A\u0645\u062A \u062A\u0647\u064A\u0626\u0629 \u0627\u0644\u0645\u0624\u0634\u0631 \u0645\u0646 \u0642\u0628\u0644 ORA-17018=\u0645\u0624\u0634\u0631 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17019=\u064A\u0645\u0643\u0646 \u0641\u0642\u0637 \u0648\u0635\u0641 \u0627\u0633\u062A\u0639\u0644\u0627\u0645 ORA-17020=\u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0633\u062D\u0628 \u0645\u0633\u0628\u0642 \u0644\u0644\u0635\u0641 ORA-17021=\u062A\u0639\u0631\u064A\u0641\u0627\u062A \u0645\u0641\u0642\u0648\u062F\u0629 ORA-17022=\u062A\u0639\u0631\u064A\u0641\u0627\u062A \u0645\u0641\u0642\u0648\u062F\u0629 \u0641\u064A \u0627\u0644\u0641\u0647\u0631\u0633 ORA-17023=\u062E\u0627\u0635\u064A\u0629 \u063A\u064A\u0631 \u0645\u062F\u0639\u0645\u0629 ORA-17024=\u0644\u0645 \u062A\u062A\u0645 \u0642\u0631\u0627\u0621\u0629 \u0628\u064A\u0627\u0646\u0627\u062A ORA-17025=\u062E\u0637\u0623 \u0641\u064A defines.isNull () ORA-17026=\u062A\u062C\u0627\u0648\u0632 \u0627\u0644\u062D\u062F \u0631\u0642\u0645\u064A ORA-17027=\u062A\u0645 \u0628\u0627\u0644\u0641\u0639\u0644 \u0625\u063A\u0644\u0627\u0642 \u0627\u0644\u062A\u062F\u0641\u0642 ORA-17028=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0639\u0645\u0644 \u062A\u0639\u0631\u064A\u0641\u0627\u062A \u062C\u062F\u064A\u062F\u0629 \u062D\u062A\u0649 \u064A\u062A\u0645 \u0625\u063A\u0644\u0627\u0642 ResultSet \u0627\u0644\u062D\u0627\u0644\u064A\u0629 ORA-17029=setReadOnly: \u0627\u062A\u0635\u0627\u0644\u0627\u062A \u0627\u0644\u0642\u0631\u0627\u0621\u0629 \u0641\u0642\u0637 \u063A\u064A\u0631 \u0645\u062F\u0639\u0645\u0629 ORA-17030=READ_COMMITTED \u0648 SERIALIZABLE \u0647\u064A \u0641\u0642\u0637 \u0645\u0633\u062A\u0648\u064A\u0627\u062A \u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A \u0627\u0644\u0635\u0627\u0644\u062D\u0629 ORA-17031=setAutoClose: \u0627\u0644\u062F\u0639\u0645 \u0641\u0642\u0637 \u0644\u0648\u0636\u0639 \u0627\u0644\u063A\u0644\u0642 \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A ORA-17032=\u0644\u0627 \u064A\u0645\u0643\u0646 \u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0633\u062D\u0628 \u0627\u0644\u0645\u0633\u0628\u0642 \u0625\u0644\u0649 \u0635\u0641\u0631 ORA-17033=\u0633\u0644\u0633\u0644\u0629 Malformed SQL92 \u0641\u064A \u0627\u0644\u0645\u0631\u0643\u0632 ORA-17034=\u0645\u0642\u0637\u0639 SQL92 \u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645 \u0641\u064A \u0627\u0644\u0645\u0631\u0643\u0632 ORA-17035=\u0645\u062C\u0645\u0648\u0639\u0629 \u0627\u0644\u062D\u0631\u0648\u0641 \u063A\u064A\u0631 \u0645\u062F\u0639\u0645\u0629 !! ORA-17036=\u0627\u0633\u062A\u062B\u0646\u0627\u0621 \u0641\u064A OracleNumber ORA-17037=\u0641\u0634\u0644 \u0627\u0644\u062A\u062D\u0648\u064A\u0644 \u0628\u064A\u0646 UTF8 \u0648 UCS2 ORA-17038=\u0645\u0635\u0641\u0648\u0641\u0629 \u0627\u0644\u0628\u0627\u064A\u062A \u0644\u064A\u0633\u062A \u0637\u0648\u064A\u0644\u0629 \u0628\u0627\u0644\u0642\u062F\u0631 \u0627\u0644\u0643\u0627\u0641\u064A ORA-17039=\u0645\u0635\u0641\u0648\u0641\u0629 char \u0644\u064A\u0633\u062A \u0637\u0648\u064A\u0644\u0629 \u0628\u0627\u0644\u0642\u062F\u0631 \u0627\u0644\u0643\u0627\u0641\u064A ORA-17040=\u064A\u062C\u0628 \u062A\u062D\u062F\u064A\u062F \u0627\u0644\u0628\u0631\u0648\u062A\u0648\u0643\u0648\u0644 \u0627\u0644\u0641\u0631\u0639\u064A \u0641\u064A \u0627\u062A\u0635\u0627\u0644 URL ORA-17041=\u0645\u0639\u0627\u0645\u0644 IN \u0623\u0648 OUT \u0645\u0641\u0642\u0648\u062F \u0641\u064A \u0627\u0644\u0641\u0647\u0631\u0633: ORA-17042=\u0642\u064A\u0645\u0629 \u0627\u0644\u062F\u0641\u0639\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 ORA-17043=\u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u062D\u062C\u0645 \u0627\u0644\u062A\u062F\u0641\u0642 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17044=\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A: \u0645\u0635\u0641\u0648\u0641\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u063A\u064A\u0631 \u0645\u062E\u0635\u0635\u0629 ORA-17045=\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A: \u0645\u062D\u0627\u0648\u0644\u0629 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0642\u064A\u0645 \u0631\u0628\u0637 \u0648\u0631\u0627\u0621 \u0642\u064A\u0645\u0629 \u0627\u0644\u062F\u0641\u0639\u0629 ORA-17046=\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A: \u0641\u0647\u0631\u0633 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A ORA-17047=\u062E\u0637\u0623 \u0641\u064A \u0627\u0644\u062A\u062D\u0644\u064A\u0644 \u0627\u0644\u0644\u063A\u0648\u064A \u0644\u0648\u0627\u0635\u0641 \u0627\u0644\u0646\u0648\u0639 ORA-17048=\u0646\u0648\u0639 \u063A\u064A\u0631 \u0645\u062D\u062F\u062F ORA-17049=\u0623\u0646\u0648\u0627\u0639 \u0643\u0627\u0626\u0646 sql \u0648\u062C\u0627\u0641\u0627 \u063A\u064A\u0631 \u0645\u062A\u0646\u0627\u0633\u0642\u0629 ORA-17050=\u0644\u0627 \u064A\u0648\u062C\u062F \u0645\u062B\u0644 \u0647\u0630\u0627 \u0627\u0644\u0639\u0646\u0635\u0631 \u0641\u064A \u0627\u0644\u0645\u0648\u062C\u0651\u064E\u0647 ORA-17051=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 API \u0647\u0630\u0627 \u0644\u0623\u0646\u0648\u0627\u0639 non-UDT ORA-17052=\u0647\u0630\u0627 ref \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17053=\u0627\u0644\u062D\u062C\u0645 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17054=\u0645\u062D\u062F\u062F \u0627\u0644\u0645\u0648\u0627\u0642\u0639 LOB \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17055=\u062A\u0645\u062A \u0645\u0635\u0627\u062F\u0641\u0629 \u062D\u0631\u0641 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0641\u064A ORA-17056=\u0645\u062C\u0645\u0648\u0639\u0629 \u0623\u062D\u0631\u0641 \u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645\u0629 (\u0623\u0636\u0641 orai18n.jar \u0641\u064A \u0645\u0633\u0627\u0631 \u0627\u0644\u0637\u0628\u0642\u0629) ORA-17057=LOB \u0645\u063A\u0644\u0642 ORA-17058=\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A: \u0646\u0633\u0628\u0629 \u062A\u062D\u0648\u064A\u0644 NLS \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 ORA-17059=\u0641\u0634\u0644 \u0627\u0644\u062A\u062D\u0648\u064A\u0644 \u0625\u0644\u0649 \u0627\u0644\u062A\u0645\u062B\u064A\u0644 \u0627\u0644\u062F\u0627\u062E\u0644\u064A ORA-17060=\u0641\u0634\u0644 \u062A\u0643\u0648\u064A\u0646 \u0627\u0644\u0648\u0627\u0635\u0641 ORA-17061=\u0648\u0627\u0635\u0641 \u0645\u0641\u0642\u0648\u062F ORA-17062=\u0645\u0624\u0634\u0631 Ref \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 ORA-17063=\u0644\u064A\u0633 \u0636\u0645\u0646 \u0639\u0645\u0644\u064A\u0629 ORA-17064=\u0635\u064A\u0627\u063A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0623\u0648 \u0623\u0646 \u0627\u0633\u0645 \u0642\u0627\u0639\u062F\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u062E\u0627\u0644\u064A ORA-17065=\u0637\u0628\u0642\u0629 \u0627\u0644\u062A\u062D\u0648\u064A\u0644 \u062E\u0627\u0644\u064A\u0629 ORA-17066=\u0645\u0637\u0644\u0648\u0628 \u062A\u0646\u0641\u064A\u0630 \u0645\u0639\u064A\u0646 \u0644\u0637\u0628\u0642\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 ORA-17067=\u062A\u0645 \u062A\u0639\u064A\u064A\u0646 URL \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0644\u0623\u0648\u0631\u0627\u0643\u0644 ORA-17068=\u0648\u0633\u064A\u0637\u0629 (\u0648\u0633\u0627\u0626\u0637) \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0641\u064A \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621 ORA-17069=\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0633\u062A\u062F\u0639\u0627\u0621 XA \u0627\u0644\u0636\u0645\u0646\u064A ORA-17070=\u062D\u062C\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u062D\u062C\u0645 \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 ORA-17071=\u062A\u0645 \u062A\u062C\u0627\u0648\u0632 \u062D\u062F VARRAY \u0627\u0644\u0623\u0642\u0635\u0649 ORA-17072=\u062A\u0645 \u0625\u0636\u0627\u0641\u0629 \u0642\u064A\u0645\u0629 \u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u0639\u0645\u0648\u062F \u0628\u0643\u062B\u064A\u0631 ORA-17074=\u0646\u0645\u0637 \u0627\u0644\u0627\u0633\u0645 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17075=\u0639\u0645\u0644\u064A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0644\u0645\u062C\u0645\u0648\u0639\u0629 \u0646\u062A\u0627\u0626\u062C \u0627\u0644\u062A\u0648\u062C\u064A\u0647 \u0641\u0642\u0637 ORA-17076=\u0639\u0645\u0644\u064A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0644\u0645\u062C\u0645\u0648\u0639\u0629 \u0646\u062A\u0627\u0626\u062C \u0627\u0644\u0642\u0631\u0627\u0621\u0629 \u0641\u0642\u0637 ORA-17077=\u0641\u0634\u0644 \u062A\u0639\u064A\u064A\u0646 \u0642\u064A\u0645\u0629 REF ORA-17078=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0625\u062C\u0631\u0627\u0621 \u0627\u0644\u0639\u0645\u0644\u064A\u0629 \u0644\u0623\u0646 \u0627\u0644\u0627\u062A\u0635\u0627\u0644\u0627\u062A \u0645\u0641\u062A\u0648\u062D\u0629 \u0628\u0627\u0644\u0641\u0639\u0644 ORA-17079=\u0635\u0644\u0627\u062D\u064A\u0627\u062A \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u063A\u064A\u0631 \u0645\u062A\u0637\u0627\u0628\u0642\u0629 \u0645\u0639 \u0627\u0644\u0635\u0644\u0627\u062D\u064A\u0627\u062A \u0627\u0644\u0645\u0648\u062C\u0648\u062F\u0629 ORA-17080=\u0623\u0645\u0631 \u062F\u0641\u0639\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17081=\u062D\u062F\u062B \u062E\u0637\u0623 \u062E\u0644\u0627\u0644 \u0625\u062C\u0631\u0627\u0621 \u0627\u0644\u062F\u0641\u0639\u0629 ORA-17082=\u0644\u0627 \u064A\u0648\u062C\u062F \u0635\u0641 \u062D\u0627\u0644\u064A ORA-17083=\u0644\u064A\u0633 \u0639\u0644\u0649 \u0635\u0641 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 ORA-17084=\u0645\u0633\u062A\u062F\u0639\u0649 \u0639\u0644\u0649 \u0635\u0641 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 ORA-17085=\u062D\u062F\u062B \u062A\u0636\u0627\u0631\u0628 \u0641\u064A \u0627\u0644\u0642\u064A\u0645 ORA-17086=\u0642\u064A\u0645\u0629 \u0639\u0645\u0648\u062F \u063A\u064A\u0631 \u0645\u0639\u0631\u0641\u0629 \u0639\u0644\u0649 \u0635\u0641 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 ORA-17087=\u062A\u062C\u0627\u0647\u0644 \u062A\u0644\u0645\u064A\u062D \u0627\u0644\u0623\u062F\u0627\u0621: setFetchDirection() ORA-17088=\u0635\u064A\u0627\u063A\u0629 \u063A\u064A\u0631 \u0645\u062F\u0639\u0645\u0629 \u0644\u0646\u0648\u0639 \u0645\u062C\u0645\u0648\u0639\u0629 \u0627\u0644\u0646\u062A\u0627\u0626\u062C \u0627\u0644\u0645\u0637\u0644\u0648\u0628 \u0648\u0645\u0633\u062A\u0648\u0649 \u0627\u0644\u062A\u0632\u0627\u0645\u0646 \u0627\u0644\u0645\u0637\u0644\u0648\u0628 ORA-17089=\u062E\u0637\u0623 \u062F\u0627\u062E\u0644\u064A ORA-17090=\u063A\u064A\u0631 \u0645\u0633\u0645\u0648\u062D \u0628\u0627\u0644\u0639\u0645\u0644\u064A\u0629 ORA-17091=\u063A\u064A\u0631 \u0642\u0627\u062F\u0631 \u0639\u0644\u0649 \u062A\u0643\u0648\u064A\u0646 \u0645\u062C\u0645\u0648\u0639\u0629 \u0627\u0644\u0646\u062A\u0627\u0626\u062C \u0641\u064A \u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u0645\u0637\u0644\u0648\u0628 \u0648/\u0623\u0648 \u0645\u0633\u062A\u0648\u0649 \u0627\u0644\u062A\u0632\u0627\u0645\u0646 \u0627\u0644\u0645\u0637\u0644\u0648\u0628 ORA-17092=\u0644\u0627 \u064A\u0645\u0643\u0646 \u062A\u0643\u0648\u064A\u0646 \u0623\u0648 \u062A\u0646\u0641\u064A\u0630 \u062C\u0645\u0644 JDBC \u0641\u064A \u0646\u0647\u0627\u064A\u0629 \u0645\u0639\u0627\u0644\u062C\u0629 \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621. ORA-17093=\u0642\u0627\u0645\u062A \u0639\u0645\u0644\u064A\u0629 \u0648\u0633\u064A\u0637 \u0627\u0633\u062A\u062F\u0639\u0627\u0621 \u0623\u0648\u0631\u0627\u0643\u0644 \u0628\u0625\u0639\u0627\u062F\u0629 OCI_SUCCESS_WITH_INFO ORA-17094=\u0625\u0635\u062F\u0627\u0631 \u0646\u0648\u0639 \u0627\u0644\u0643\u0627\u0626\u0646 \u063A\u064A\u0631 \u0645\u062A\u0637\u0627\u0628\u0642 ORA-17095=\u0644\u0645 \u064A\u062A\u0645 \u062A\u0639\u064A\u064A\u0646 \u062D\u062C\u0645 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 \u0644\u0644\u062C\u0645\u0644\u0629 ORA-17096=\u0644\u0627 \u064A\u0645\u0643\u0646 \u062A\u0645\u0643\u064A\u0646 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0648\u0633\u064A\u0637\u0629 \u0627\u0644\u062E\u0627\u0635\u0629 \u0628\u0627\u0644\u062C\u0645\u0644\u0629 \u0644\u0647\u0630\u0627 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0627\u0644\u0645\u0646\u0637\u0642\u064A. ORA-17097=\u0646\u0648\u0639 \u0639\u0646\u0635\u0631 \u062C\u062F\u0648\u0644 \u0641\u0647\u0631\u0633 PL/SQL \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17098=\u0639\u0645\u0644\u064A\u0629 lob \u0641\u0627\u0631\u063A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 ORA-17099=\u0637\u0648\u0644 \u0645\u0635\u0641\u0648\u0641\u0629 \u062C\u062F\u0648\u0644 \u0641\u0647\u0631\u0633 PL/SQL \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17100=\u0643\u0627\u0626\u0646 \u0628\u064A\u0627\u0646\u0627\u062A \u062C\u0627\u0641\u0627 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17101=\u062E\u0635\u0627\u0626\u0635 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0641\u064A \u0643\u0627\u0626\u0646 \u0645\u062C\u0645\u0639 \u0627\u062A\u0635\u0627\u0644 OCI ORA-17102=Bfile \u0644\u0644\u0642\u0631\u0627\u0621\u0629 \u0641\u0642\u0637 ORA-17103=\u062A\u0645 \u0625\u0631\u062C\u0627\u0639 \u0646\u0648\u0639 \u0627\u062A\u0635\u0627\u0644 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0628\u0648\u0627\u0633\u0637\u0629 getConnection. \u0627\u0633\u062A\u062E\u062F\u0645 getJavaSqlConnection \u0628\u062F\u0644\u0627 \u0645\u0646 \u0630\u0644\u0643 ORA-17104=\u0644\u0627 \u064A\u0645\u0643\u0646 \u062A\u0646\u0641\u064A\u0630 \u062C\u0645\u0644\u0629 SQL \u0641\u0627\u0631\u063A\u0629 \u0623\u0648 \u062E\u0627\u0644\u064A\u0629 ORA-17105=\u0644\u0645 \u064A\u062A\u0645 \u062A\u0639\u064A\u064A\u0646 \u0646\u0637\u0627\u0642 \u0627\u0644\u0648\u0642\u062A \u0644\u062C\u0644\u0633\u0629 \u0639\u0645\u0644 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 ORA-17106=\u062A\u0645 \u062A\u062D\u062F\u064A\u062F \u062A\u0643\u0648\u064A\u0646 \u0645\u062C\u0645\u0639 \u0627\u062A\u0635\u0627\u0644 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0644\u0628\u0631\u0646\u0627\u0645\u062C \u062A\u0634\u063A\u064A\u0644 JDBC-OCI ORA-17107=\u0646\u0648\u0639 \u0627\u0644\u0628\u0631\u0648\u0643\u0633\u064A \u0627\u0644\u0645\u062D\u062F\u062F \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17108=\u0644\u0645 \u064A\u062A\u0645 \u062A\u062D\u062F\u064A\u062F \u062D\u062F \u0623\u0642\u0635\u0649 \u0644\u0644\u0637\u0648\u0644 \u0641\u064A defineColumnType ORA-17109=\u062A\u0639\u0630\u0631 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u062A\u0631\u0645\u064A\u0632 \u062D\u0631\u0648\u0641 \u062C\u0627\u0641\u0627 \u0627\u0644\u0642\u064A\u0627\u0633\u064A ORA-17110=\u0627\u0643\u062A\u0645\u0644 \u0627\u0644\u062A\u0646\u0641\u064A\u0630 \u0645\u0639 \u0638\u0647\u0648\u0631 \u062A\u062D\u0630\u064A\u0631\u0627\u062A ORA-17111=\u062A\u0645 \u062A\u062D\u062F\u064A\u062F \u0648\u0642\u062A \u0627\u0646\u062A\u0647\u0627\u0621 TTL \u0644\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 \u0644\u0644\u0627\u062A\u0635\u0627\u0644 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17112=\u062A\u0645 \u062A\u062D\u062F\u064A\u062F \u0641\u0627\u0635\u0644 \u0632\u0645\u0646\u064A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0644\u0633\u0644\u0633\u0644\u0629 \u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A ORA-17113=\u0642\u064A\u0645\u0629 \u0627\u0644\u0641\u0627\u0635\u0644 \u0627\u0644\u0632\u0645\u0646\u064A \u0644\u0633\u0644\u0633\u0644\u0629 \u0627\u0644\u0639\u0645\u0644\u064A\u0627\u062A \u0623\u0643\u0628\u0631 \u0645\u0646 \u0642\u064A\u0645\u0629 \u0648\u0642\u062A \u0627\u0646\u062A\u0647\u0627\u0621 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 ORA-17114=\u062A\u0639\u0630\u0631 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u062A\u062B\u0628\u064A\u062A \u0639\u0645\u0644\u064A\u0629 \u0645\u062D\u0644\u064A\u0629 \u0641\u064A \u0639\u0645\u0644\u064A\u0629 \u0639\u0627\u0645\u0629 ORA-17115=\u062A\u0639\u0630\u0631 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0625\u0644\u063A\u0627\u0621 \u062A\u0639\u062F\u064A\u0644\u0627\u062A \u0639\u0645\u0644\u064A\u0629 \u0645\u062D\u0644\u064A\u0629 \u0641\u064A \u0639\u0645\u0644\u064A\u0629 \u0639\u0627\u0645\u0629 ORA-17116=\u062A\u0639\u0630\u0631 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u062A\u062B\u0628\u064A\u062A \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A \u0641\u064A \u0639\u0645\u0644\u064A\u0629 \u0639\u0627\u0645\u0629 \u0646\u0634\u0637\u0629 ORA-17117=\u062A\u0639\u0630\u0631 \u062A\u0639\u064A\u064A\u0646 \u0646\u0642\u0637\u0629 \u062D\u0641\u0638 \u0641\u064A \u0639\u0645\u0644\u064A\u0629 \u0639\u0627\u0645\u0629 \u0646\u0634\u0637\u0629 ORA-17118=\u062A\u0639\u0630\u0631 \u0627\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0639\u0631\u0641 \u0644\u0646\u0642\u0637\u0629 \u062D\u0641\u0638 \u0645\u0633\u0645\u0627\u0629 ORA-17119=\u062A\u0639\u0630\u0631 \u0627\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0627\u0633\u0645 \u0644\u0646\u0642\u0637\u0629 \u062D\u0641\u0638 \u063A\u064A\u0631 \u0645\u0633\u0645\u0627\u0629 ORA-17120=\u062A\u0639\u0630\u0631 \u062A\u0639\u064A\u064A\u0646 \u0646\u0642\u0637\u0629 \u062D\u0641\u0638 \u0645\u0639 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u062A\u062B\u0628\u064A\u062A \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A ORA-17121=\u062A\u0639\u0630\u0631 \u0625\u0644\u063A\u0627\u0621 \u0627\u0644\u062A\u0639\u062F\u064A\u0644\u0627\u062A \u0625\u0644\u0649 \u0646\u0642\u0637\u0629 \u062D\u0641\u0638 \u0645\u0639 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u062A\u062B\u0628\u064A\u062A \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A ORA-17122=\u062A\u0639\u0630\u0631 \u0625\u0644\u063A\u0627\u0621 \u0627\u0644\u062A\u0639\u062F\u064A\u0644\u0627\u062A \u0625\u0644\u0649 \u0646\u0642\u0637\u0629 \u062D\u0641\u0638 txn \u0645\u062D\u0644\u064A\u0629 \u0641\u064A \u0639\u0645\u0644\u064A\u0629 \u0639\u0627\u0645\u0629 ORA-17123=\u062A\u0645 \u062A\u062D\u062F\u064A\u062F \u062D\u062C\u0645 \u0630\u0627\u0643\u0631\u0629 \u0645\u062E\u0628\u0626\u064A\u0629 \u0644\u0644\u062C\u0645\u0644\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17124=\u062A\u0645 \u062A\u062D\u062F\u064A\u062F \u0648\u0642\u062A \u0627\u0646\u062A\u0647\u0627\u0621 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0644\u0639\u062F\u0645 \u0646\u0634\u0627\u0637 \u0630\u0627\u0643\u0631\u0629 \u0645\u062E\u0628\u0626\u064A\u0629 \u0644\u0644\u0627\u062A\u0635\u0627\u0644 ORA-17125=\u0623\u0631\u062C\u0639\u062A \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 \u0627\u0644\u0635\u0631\u064A\u062D\u0629 \u0646\u0648\u0639 \u062C\u0645\u0644\u0629 \u063A\u064A\u0631 \u0635\u062D\u064A\u062D ORA-17126=\u0627\u0646\u062A\u0647\u0649 \u0648\u0642\u062A \u0627\u0644\u0627\u0646\u062A\u0638\u0627\u0631 \u0627\u0644\u062B\u0627\u0628\u062A ORA-17127=\u062A\u0645 \u062A\u062D\u062F\u064A\u062F \u0648\u0642\u062A \u0627\u0646\u062A\u0647\u0627\u0621 \u062B\u0627\u0628\u062A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0644\u0644\u0627\u0646\u062A\u0638\u0627\u0631 ORA-17128=\u0633\u0644\u0633\u0644\u0629 SQL \u0644\u064A\u0633\u062A \u0627\u0633\u062A\u0639\u0644\u0627\u0645\u064B\u0627 ORA-17129=\u0633\u0644\u0633\u0644\u0629 SQL \u0644\u064A\u0633\u062A \u062C\u0645\u0644\u0629 DML ORA-17132=\u062A\u0645 \u0637\u0644\u0628 \u062A\u062D\u0648\u064A\u0644 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17133=UNUSED ORA-17134=\u0644\u0642\u062F \u062A\u062C\u0627\u0648\u0632 \u0637\u0648\u0644 \u0627\u0644\u0645\u0639\u0644\u0645\u0629 \u0627\u0644\u0645\u062D\u062F\u062F\u0629 \u0641\u064A SQL 32 \u062D\u0631\u0641\u064B\u0627 ORA-17135=\u0644\u0642\u062F \u0638\u0647\u0631 \u0627\u0633\u0645 \u0627\u0644\u0645\u0639\u0644\u0645\u0629 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u0629 \u0641\u064A setXXXStream \u0623\u0643\u062B\u0631 \u0645\u0646 \u0645\u0631\u0629 \u0641\u064A SQL ORA-17136=URL \u0627\u0644\u062E\u0627\u0635 \u0628\u0640 DATALINK \u0633\u064A\u0626 \u0627\u0644\u062A\u0643\u0648\u064A\u0646\u060C \u062C\u0631\u0651\u0650\u0628 getString() \u0643\u0628\u062F\u064A\u0644 ORA-17137=\u062A\u062E\u0632\u064A\u0646 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0641\u064A \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 \u063A\u064A\u0631 \u0645\u062A\u0627\u062D\u060C \u0623\u0648 \u0644\u064A\u0633 \u0645\u0635\u062F\u0631 \u0628\u064A\u0627\u0646\u0627\u062A \u0635\u0627\u0644\u062D \u064A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0630\u0627\u0643\u0631\u0629 \u0645\u062E\u0628\u0626\u064A\u0629 ORA-17138=\u0627\u0633\u0645 \u0630\u0627\u0643\u0631\u0629 \u0627\u062A\u0635\u0627\u0644 \u0645\u062E\u0628\u0626\u064A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D. \u064A\u062C\u0628 \u0623\u0646 \u064A\u0643\u0648\u0646 \u0639\u0628\u0627\u0631\u0629 \u0639\u0646 \u0633\u0644\u0633\u0644\u0629 \u0635\u0627\u0644\u062D\u0629 \u0648\u0641\u0631\u064A\u062F\u0629 ORA-17139=\u062E\u0635\u0627\u0626\u0635 \u0630\u0627\u0643\u0631\u0629 \u0627\u062A\u0635\u0627\u0644 \u0645\u062E\u0628\u0626\u064A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 ORA-17140=\u062A\u0648\u062C\u062F \u0630\u0627\u0643\u0631\u0629 \u0627\u062A\u0635\u0627\u0644 \u0645\u062E\u0628\u0626\u064A\u0629 \u062A\u062D\u0645\u0644 \u0647\u0630\u0627 \u0627\u0644\u0627\u0633\u0645 \u0628\u0627\u0644\u0641\u0639\u0644 ORA-17141=\u0644\u0627 \u062A\u0648\u062C\u062F \u0630\u0627\u0643\u0631\u0629 \u0627\u062A\u0635\u0627\u0644 \u0645\u062E\u0628\u0626\u064A\u0629 \u0628\u0647\u0630\u0627 \u0627\u0644\u0627\u0633\u0645 ORA-17142=\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 \u0627\u0644\u062A\u064A \u062A\u062D\u0645\u0644 \u0647\u0630\u0627 \u0627\u0644\u0627\u0633\u0645 \u0645\u0639\u0637\u0644\u0629 ORA-17143=\u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0627\u0644\u0630\u064A \u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u064A\u0647 \u0641\u064A \u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0623\u0648 \u0642\u062F\u064A\u0645 ORA-17144=\u0644\u0645 \u064A\u062A\u0645 \u062A\u0646\u0641\u064A\u0630 \u0645\u0639\u0627\u0644\u062C\u0629 \u0627\u0644\u062C\u0645\u0644\u0629 ORA-17145=\u062A\u0645 \u0627\u0633\u062A\u0644\u0627\u0645 \u062D\u062F\u062B ONS \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17146=\u062A\u0645 \u0627\u0633\u062A\u0644\u0627\u0645 \u0625\u0635\u062F\u0627\u0631 \u062D\u062F\u062B ONS \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17147=\u0623\u062C\u0631\u064A\u062A \u0645\u062D\u0627\u0648\u0644\u0629 \u0644\u062A\u0639\u064A\u064A\u0646 \u0627\u0633\u0645 \u0645\u0639\u0644\u0645\u0629 \u0644\u0627 \u064A\u0638\u0647\u0631 \u0641\u064A SQL ORA-17148=\u064A\u062A\u0645 \u062A\u0646\u0641\u064A\u0630 \u0627\u0644\u0623\u0633\u0644\u0648\u0628 \u0641\u0642\u0637 \u0641\u064A \u0627\u0644\u0637\u0628\u0642\u0629 \u0627\u0644\u062E\u0641\u064A\u0641\u0629 ORA-17149=\u0647\u0630\u0647 \u0628\u0627\u0644\u0641\u0639\u0644 \u062C\u0644\u0633\u0629 \u0639\u0645\u0644 \u0628\u0631\u0648\u0643\u0633\u064A ORA-17150=\u062A\u0645 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062E\u0637\u0623 \u0644\u062C\u0644\u0633\u0629 \u0639\u0645\u0644 \u0628\u0631\u0648\u0643\u0633\u064A ORA-17151=Clob \u0623\u0643\u0628\u0631 \u0645\u0646 \u0623\u0646 \u064A\u062A\u0645 \u062A\u062E\u0632\u064A\u0646\u0647 \u0641\u064A \u0633\u0644\u0633\u0644\u0629 \u062C\u0627\u0641\u0627 ORA-17152=\u064A\u062A\u0645 \u062A\u0646\u0641\u064A\u0630 \u0647\u0630\u0627 \u0627\u0644\u0623\u0633\u0644\u0648\u0628 \u0641\u0642\u0637 \u0641\u064A \u0627\u0644\u0627\u062A\u0635\u0627\u0644\u0627\u062A \u0627\u0644\u0645\u0646\u0637\u0642\u064A\u0629 ORA-17153=\u064A\u062A\u0645 \u062A\u0646\u0641\u064A\u0630 \u0647\u0630\u0627 \u0627\u0644\u0623\u0633\u0644\u0648\u0628 \u0641\u0642\u0637 \u0641\u064A \u0627\u0644\u0627\u062A\u0635\u0627\u0644\u0627\u062A \u0627\u0644\u062D\u0642\u064A\u0642\u064A\u0629 ORA-17154=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0646\u0633\u0628\u0629 \u0623\u062D\u0631\u0641 Oracle \u0625\u0644\u0649 Unicode ORA-17155=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0646\u0633\u0628\u0629 Unicode \u0625\u0644\u0649 \u0623\u062D\u0631\u0641 Oracle ORA-17156=\u062D\u062C\u0645 \u0645\u0635\u0641\u0648\u0641\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0644\u0642\u064A\u0645 \u0642\u064A\u0627\u0633\u0627\u062A \u0645\u0628\u0627\u0634\u0631\u0629 ORA-17157=\u064A\u0645\u0643\u0646 \u0644\u0640 setString \u0645\u0639\u0627\u0644\u062C\u0629 \u0627\u0644\u0633\u0644\u0627\u0633\u0644 \u0623\u0642\u0644 \u0645\u0646 32766 \u062D\u0631\u0641 ORA-17158=\u0627\u0644\u0645\u062F\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0644\u0647\u0630\u0647 \u0627\u0644\u0648\u0638\u064A\u0641\u0629 ORA-17159=\u0642\u064A\u0645\u0629 \u0642\u064A\u0627\u0633 \u0627\u0644\u062A\u062A\u0628\u0639 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u0637\u0648\u064A\u0644\u0629 \u062C\u062F\u064B\u0627 ORA-17160=\u0631\u0642\u0645 \u0645\u0633\u0644\u0633\u0644 \u0645\u0639\u0631\u0641 \u0633\u064A\u0627\u0642 \u0627\u0644\u062A\u0646\u0641\u064A\u0630 \u062E\u0627\u0631\u062C \u0627\u0644\u0646\u0637\u0627\u0642 ORA-17161=\u062A\u0645 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0637\u0648\u0631 \u0639\u0645\u0644\u064A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17162=\u0642\u064A\u0645\u0629 \"holdability\" \u063A\u064A\u0631 \u0645\u062F\u0639\u0645\u0629 ORA-17163=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 getXAConnection() \u0639\u0646\u062F \u062A\u0645\u0643\u064A\u0646 \u0627\u0644\u062A\u062E\u0632\u064A\u0646 \u0641\u064A \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 ORA-17164=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0627\u0633\u062A\u062F\u0639\u0627\u0621 getXAResource() \u0645\u0646 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0627\u0644\u0641\u0639\u0644\u064A \u0639\u0646\u062F \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u062A\u062E\u0632\u064A\u0646 \u0641\u064A \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062E\u0628\u0626\u064A\u0629 ORA-17165=\u0644\u0645 \u064A\u062A\u0645 \u062A\u0639\u064A\u064A\u0646 \u062D\u0632\u0645\u0629 DBMS_JDBC \u0645\u0633\u0628\u0642\u064B\u0627 \u0641\u064A \u0627\u0644\u062E\u0627\u062F\u0645 \u0644\u0647\u0630\u0627 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 ORA-17166=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0625\u062C\u0631\u0627\u0621 \u0633\u062D\u0628 \u0639\u0644\u0649 \u062C\u0645\u0644\u0629 PLSQL ORA-17167=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0637\u0628\u0642\u0627\u062A PKI. \u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0648\u0638\u064A\u0641\u0629 \"\u0627\u062A\u0635\u0627\u0644 \"\u060C \u064A\u062C\u0628 \u0623\u0646 \u064A\u0643\u0648\u0646 oraclepki.jar \u0645\u0648\u062C\u0648\u062F\u064B\u0627 \u0641\u064A \u0645\u0633\u0627\u0631 \u0627\u0644\u0637\u0628\u0642\u0629 ORA-17168=\u062A\u0645\u062A \u0645\u0635\u0627\u062F\u0641\u0629 \u0645\u0634\u0643\u0644\u0629 \u062A\u062A\u0639\u0644\u0642 \u0628\u0627\u0644\u0645\u062E\u0632\u0646 \u0627\u0644\u0633\u0631\u064A. \u0631\u0627\u062C\u0639 \u0645\u0648\u0642\u0639 \u0627\u0644\u062D\u0627\u0641\u0638\u0629 \u0644\u0644\u062A\u0623\u0643\u062F \u0645\u0646 \u0648\u062C\u0648\u062F \u062D\u0627\u0641\u0638\u0629 \u0645\u0641\u062A\u0648\u062D\u0629 (cwallet.sso) \u0648\u0636\u0645\u0627\u0646 \u0623\u0646 \u0647\u0630\u0647 \u0627\u0644\u062D\u0627\u0641\u0638\u0629 \u062A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0627\u0644\u0635\u0644\u0627\u062D\u064A\u0627\u062A \u0627\u0644\u0635\u062D\u064A\u062D\u0629 \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0628\u0631\u0646\u0627\u0645\u062C mkstore \u0627\u0644\u0645\u0633\u0627\u0639\u062F ORA-17169=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0631\u0628\u0637 \u0627\u0644\u062A\u062F\u0641\u0642 \u0625\u0644\u0649 ScrollableResultSet \u0623\u0648 UpdatableResultSet ORA-17170=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0623\u0646 \u064A\u0643\u0648\u0646 \u0627\u0633\u0645 \u0627\u0644\u0645\u062C\u0644\u062F \u0641\u0627\u0631\u063A\u064B\u0627 ORA-17171=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0623\u0646 \u064A\u0632\u064A\u062F \u0637\u0648\u0644 \u0627\u0644\u0633\u0645\u0629 \u0639\u0646 30 \u062D\u0631\u0641\u064B\u0627. ORA-17172=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0623\u0646 \u062A\u0632\u064A\u062F \u0642\u064A\u0645\u0629 \u0627\u0644\u0633\u0645\u0629 \u0639\u0646 400 \u062D\u0631\u0641 ORA-17173=\u0644\u0645 \u064A\u062A\u0645 \u062A\u0633\u062C\u064A\u0644 \u0643\u0644 \u0645\u0639\u0644\u0645\u0627\u062A \u0627\u0644\u0625\u0631\u062C\u0627\u0639 ORA-17174=\u0645\u0633\u0627\u062D\u0629 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u062F\u0639\u0648\u0645\u0629 \u0647\u064A CLIENTCONTEXT \u0641\u0642\u0637 ORA-17175=\u062D\u062F\u062B \u062E\u0637\u0623 \u0623\u062B\u0646\u0627\u0621 \u062A\u0643\u0648\u064A\u0646 ONS \u0627\u0644\u0628\u0639\u064A\u062F ORA-17200=\u063A\u064A\u0631 \u0642\u0627\u062F\u0631 \u0639\u0644\u064A \u062A\u062D\u0648\u064A\u0644 \u0633\u0644\u0633\u0644\u0629 \u0641\u062A\u062D XA \u0645\u0646 \u062C\u0627\u0641\u0627 \u0625\u0644\u064A C \u0628\u0627\u0644\u0634\u0643\u0644 \u0627\u0644\u0645\u0646\u0627\u0633\u0628 ORA-17201=\u063A\u064A\u0631 \u0642\u0627\u062F\u0631 \u0639\u0644\u0649 \u062A\u062D\u0648\u064A\u0644 \u0633\u0644\u0633\u0644\u0629 \u0625\u063A\u0644\u0627\u0642 XA \u0645\u0646 \u062C\u0627\u0641\u0627 \u0625\u0644\u064A C \u0628\u0627\u0644\u0634\u0643\u0644 \u0627\u0644\u0645\u0646\u0627\u0633\u0628 ORA-17202=\u063A\u064A\u0631 \u0642\u0627\u062F\u0631 \u0639\u0644\u064A \u062A\u062D\u0648\u064A\u0644 \u0627\u0633\u0645 RM \u0645\u0646 \u062C\u0627\u0641\u0627 \u0625\u0644\u064A C \u0628\u0627\u0644\u0634\u0643\u0644 \u0627\u0644\u0645\u0646\u0627\u0633\u0628 ORA-17203=\u062A\u0639\u0630\u0631 \u062A\u0639\u064A\u064A\u0646 \u0646\u0648\u0639 \u0627\u0644\u0645\u0624\u0634\u0631 \u0625\u0644\u064A \u0627\u0644\u0637\u0648\u0644 jlong ORA-17204=\u0645\u0635\u0641\u0648\u0641\u0629 \u0627\u0644\u0645\u062F\u062E\u0644\u0627\u062A \u0642\u0635\u064A\u0631\u0629 \u0644\u0644\u063A\u0627\u064A\u0629 \u0644\u062F\u0631\u062C\u0629 \u0644\u0627 \u064A\u0645\u0643\u0646\u0647\u0627 \u0627\u0644\u0627\u062D\u062A\u0641\u0627\u0638 \u0628\u0645\u0631\u0627\u062C\u0639 OCI ORA-17205=\u0641\u0634\u0644 \u0641\u064A \u0627\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0631\u062C\u0639 OCISvcCtx \u0645\u0646 C-XA \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 xaoSvcCtx ORA-17206=\u0641\u0634\u0644 \u0627\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u064A \u0645\u0631\u062C\u0639 OCIEnv \u0645\u0646 C-XA \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 xaoEnv ORA-17207=\u0644\u0645 \u064A\u062A\u0645 \u062A\u0639\u064A\u064A\u0646 \u062E\u0627\u0635\u064A\u0629 tnsEntry \u0641\u064A \u0645\u0635\u062F\u0631 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A ORA-17213=C-XA \u0623\u0631\u062C\u0639 XAER_RMERR \u0623\u062B\u0646\u0627\u0621 xa_open ORA-17215=C-XA \u0623\u0631\u062C\u0639 XAER_INVAL \u0623\u062B\u0646\u0627\u0621 xa_open ORA-17216=C-XA \u0623\u0631\u062C\u0639 XAER_PROTO \u0623\u062B\u0646\u0627\u0621 xa_open ORA-17233=C-XA \u0623\u0631\u062C\u0639 XAER_RMERR \u0623\u062B\u0646\u0627\u0621 xa_close ORA-17235=C-XA \u0623\u0631\u062C\u0639 XAER_INVAL \u0623\u062B\u0646\u0627\u0621 xa_close ORA-17236=C-XA \u0623\u0631\u062C\u0639 XAER_PROTO \u0623\u062B\u0646\u0627\u0621 xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u0627\u0646\u062D\u0631\u0627\u0641 \u0627\u0644\u0628\u0631\u0648\u062A\u0648\u0643\u0648\u0644 ORA-17402=\u062A\u0648\u0642\u0639 \u0631\u0633\u0627\u0644\u0629 RPA \u0648\u0627\u062D\u062F\u0629 \u0641\u0642\u0637 ORA-17403=\u062A\u0648\u0642\u0639 \u0631\u0633\u0627\u0644\u0629 RXH \u0648\u0627\u062D\u062F\u0629 \u0641\u0642\u0637 ORA-17404=\u062A\u0644\u0642\u064A RXD \u0623\u0643\u062B\u0631 \u0645\u0646 \u0627\u0644\u0645\u062A\u0648\u0642\u0639 ORA-17405=\u0637\u0648\u0644 UAC \u0644\u064A\u0633 \u0635\u0641\u0631\u0627\u064B ORA-17406=\u062A\u062C\u0627\u0648\u0632 \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0637\u0648\u0644 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0648\u0633\u064A\u0637\u0629 ORA-17407=\u0646\u0648\u0639 \u0627\u0644\u062A\u0645\u062B\u064A\u0644 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D(setRep) ORA-17408=\u062A\u0645\u062B\u064A\u0644 \u0646\u0648\u0639 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D(getRep) ORA-17409=\u0637\u0648\u0644 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0648\u0633\u064A\u0637\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17410=\u0644\u0645 \u062A\u0639\u062F \u0647\u0646\u0627\u0643 \u0628\u064A\u0627\u0646\u0627\u062A \u0644\u0644\u0642\u0631\u0627\u0621\u0629 \u0645\u0646 \u0627\u0644\u0645\u0642\u0628\u0633 ORA-17411=\u0639\u062F\u0645 \u062A\u0637\u0627\u0628\u0642 \u062A\u0645\u062B\u064A\u0644\u0627\u062A \u0646\u0648\u0639 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A ORA-17412=\u0637\u0648\u0644 \u0627\u0644\u0646\u0648\u0639 \u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u0642\u0635\u0649 ORA-17413=\u062A\u062C\u0627\u0648\u0632 \u062D\u062C\u0645 \u0627\u0644\u0645\u0641\u062A\u0627\u062D ORA-17414=\u062D\u062C\u0645 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0648\u0633\u064A\u0637\u0629 \u063A\u064A\u0631 \u0643\u0627\u0641\u064A \u0644\u062A\u062E\u0632\u064A\u0646 \u0623\u0633\u0645\u0627\u0621 \u0627\u0644\u0623\u0639\u0645\u062F\u0629 ORA-17415=\u0644\u0645 \u062A\u062A\u0645 \u0645\u0639\u0627\u0644\u062C\u0629 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 ORA-17416=FATAL ORA-17417=\u0645\u0634\u0643\u0644\u0629 NLS\u060C \u0641\u0634\u0644 \u0641\u064A \u0641\u0643 \u0634\u0641\u0631\u0629 \u0623\u0633\u0645\u0627\u0621 \u0627\u0644\u0639\u0645\u0648\u062F ORA-17418=\u062E\u0637\u0623 \u0641\u064A \u0637\u0648\u0644 \u062D\u0642\u0644 \u0627\u0644\u0647\u064A\u0643\u0644 \u0627\u0644\u062F\u0627\u062E\u0644\u064A ORA-17419=\u062A\u0645 \u0631\u062C\u0648\u0639 \u0631\u0642\u0645 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0645\u0646 \u0627\u0644\u0623\u0639\u0645\u062F\u0629 ORA-17420=\u0625\u0635\u062F\u0627\u0631 \u0623\u0648\u0631\u0627\u0643\u0644 \u063A\u064A\u0631 \u0645\u0639\u0631\u0641 ORA-17421=\u0627\u0644\u0623\u0646\u0648\u0627\u0639 \u0623\u0648 \u0627\u062A\u0635\u0627\u0644 \u063A\u064A\u0631 \u0645\u0639\u0631\u0641\u0629 ORA-17422=\u0637\u0628\u0642\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0641\u064A \u0627\u0644\u0645\u0635\u0646\u0639 ORA-17423=\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0642\u0637\u0639\u0629 PLSQL \u062F\u0648\u0646 \u062A\u0639\u0631\u064A\u0641 IOV ORA-17424=\u0645\u062D\u0627\u0648\u0644\u0629 \u0639\u0645\u0644\u064A\u0629 \u0645\u0646\u0638\u0645\u0629 \u0645\u062E\u062A\u0644\u0641\u0629 ORA-17425=\u0631\u062C\u0648\u0639 \u062A\u062F\u0641\u0642 \u0641\u064A \u0642\u0637\u0639\u0629 PLSQL ORA-17426=\u0643\u0644\u0627\u064B \u0645\u0646 \u0631\u0648\u0627\u0628\u0637 IN \u0648 OUT \u0647\u064A NULL ORA-17427=\u0627\u0633\u062A\u062E\u062F\u0627\u0645 OAC \u063A\u064A\u0631 \u0645\u0647\u064A\u0623 ORA-17428=\u064A\u062C\u0628 \u0627\u0633\u062A\u062F\u0639\u0627\u0621 \u0627\u0644\u062F\u062E\u0648\u0644 \u0628\u064E\u0639\u062F \u0627\u0644\u0627\u062A\u0635\u0627\u0644 ORA-17429=\u064A\u062C\u0628 \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0627\u0644\u0627\u062A\u0635\u0627\u0644 \u0628\u062E\u0627\u062F\u0645 ORA-17430=\u064A\u062C\u0628 \u0627\u0644\u062F\u062E\u0648\u0644 \u0625\u0644\u0649 \u062E\u0627\u062F\u0645 ORA-17431=\u0639\u0628\u0627\u0631\u0629 SQL \u0644\u0644\u062A\u062D\u0644\u064A\u0644 \u0627\u0644\u0644\u063A\u0648\u064A \u062E\u0627\u0644\u064A\u0629 ORA-17432=\u062E\u064A\u0627\u0631\u0627\u062A \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0641\u064A all7 ORA-17433=\u0648\u0633\u0627\u0626\u0637 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0641\u064A \u0627\u0644\u0627\u0633\u062A\u062F\u0639\u0627\u0621 ORA-17434=\u0644\u064A\u0633 \u0641\u064A \u0637\u0648\u0631 \u0627\u0644\u062A\u062F\u0641\u0642 ORA-17435=\u0631\u0642\u0645 in_out_binds \u063A\u064A\u0631 \u0635\u0627\u0644\u062D \u0641\u064A IOV ORA-17436=\u0639\u062F\u062F \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0627\u0644\u062E\u0627\u0631\u062C\u064A\u0629 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17437=\u062E\u0637\u0623 \u0641\u064A \u0642\u0637\u0639\u0629 PLSQL \u0648\u0633\u064A\u0637\u0629 (\u0648\u0633\u0627\u0626\u0637) IN/OUT ORA-17438=\u062F\u0627\u062E\u0644\u064A - \u0642\u064A\u0645\u0629 \u063A\u064A\u0631 \u0645\u062A\u0648\u0642\u0639\u0629 ORA-17439=\u0646\u0648\u0639 SQL \u063A\u064A\u0631 \u0635\u0627\u0644\u062D ORA-17440=DBItem/DBType \u062E\u0627\u0644\u064A ORA-17441=\u0625\u0635\u062F\u0627\u0631 \u0623\u0648\u0631\u0627\u0643\u0644 \u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645. \u0627\u0644\u062D\u062F \u0627\u0644\u0623\u062F\u0646\u0649 \u0644\u0644\u0625\u0635\u062F\u0627\u0631\u0627\u062A \u0627\u0644\u0645\u062F\u0639\u0648\u0645\u0629 \u0647\u0648 \u0627\u0644\u0625\u0635\u062F\u0627\u0631 7.2.3. ORA-17442=\u0642\u064A\u0645\u0629 Refcursor \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 ORA-17443=\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0623\u0648 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062E\u0627\u0644\u064A\u0629 \u063A\u064A\u0631 \u0645\u062F\u0639\u0645\u0629 \u0641\u064A \u0628\u0631\u0646\u0627\u0645\u062C \u062A\u0634\u063A\u064A\u0644 THIN ORA-17444=\u0625\u0635\u062F\u0627\u0631 \u0628\u0631\u0648\u062A\u0648\u0643\u0648\u0644 TTC \u0627\u0644\u0630\u064A \u062A\u0645 \u0627\u0633\u062A\u0644\u0627\u0645\u0647 \u0645\u0646 \u0627\u0644\u062E\u0627\u062F\u0645 \u063A\u064A\u0631 \u0645\u062F\u0639\u0648\u0645 ORA-17445=LOB \u0645\u0641\u062A\u0648\u062D \u0645\u0646 \u0642\u0628\u0644 \u0641\u064A \u0646\u0641\u0633 \u0627\u0644\u0639\u0645\u0644\u064A\u0629 ORA-17446=LOB \u0645\u063A\u0644\u0642 \u0645\u0646 \u0642\u0628\u0644 \u0641\u064A \u0646\u0641\u0633 \u0627\u0644\u0639\u0645\u0644\u064A\u0629 ORA-17447=OALL8 \u0641\u064A \u062D\u0627\u0644\u0629 \u063A\u064A\u0631 \u0645\u062A\u0646\u0627\u0633\u0642\u0629 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_ca.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Error intern ORA-17002=Excepci\u00F3 ES ORA-17003=\u00CDndex de columna incorrecte ORA-17004=Tipus de columna incorrecte ORA-17005=Tipus de columna no suportat ORA-17006=Nom de columna incorrecte ORA-17007=Columna din\u00E0mica no v\u00E0lida ORA-17008=Connexi\u00F3 tancada ORA-17009=Sent\u00E8ncia tancada ORA-17010=Resultset tancat ORA-17011=Resultset exhaurit ORA-17012=Conflicte en el tipus de par\u00E0metre ORA-17014=No s'ha cridat ResultSet.next ORA-17015=S'ha cancel\u00B7lat la declaraci\u00F3 ORA-17016=La declaraci\u00F3 ha superat el temps d'espera ORA-17017=Cursor ja inicialitzat ORA-17018=Cursor incorrecte ORA-17019=Nom\u00E9s es pot descriure una consulta ORA-17020=Preobtenci\u00F3 de fila incorrecta ORA-17021=Manca definici\u00F3 ORA-17022=Manca definici\u00F3 a l'\u00EDndex ORA-17023=Prestaci\u00F3 no suportada ORA-17024=No hi ha lectura de dades ORA-17025=Error a defines.isNull () ORA-17026=Sobreeiximent num\u00E8ric ORA-17027=El flux ja ha estat tancat ORA-17028=No es poden fer definicions noves fins que no es tanqui el ResultSet actual ORA-17029=setReadOnly: Connexions de nom\u00E9s lectura no suportades ORA-17030=READ_COMMITTED i SERIALIZABLE s\u00F3n els \u00FAnics nivells de transacci\u00F3 v\u00E0lids ORA-17031=setAutoClose: Nom\u00E9s suporta el mode de tancament autom\u00E0tic activat ORA-17032=no es pot fixar l'obtenci\u00F3 de fila a zero ORA-17033=Cadena SQL92 mal constru\u00EFda en la posici\u00F3 ORA-17034=Element SQL92 no suportada en la posici\u00F3 ORA-17035=Joc de car\u00E0cters no suportat !! ORA-17036=excepci\u00F3 a OracleNumber ORA-17037=Fallada en convertir entre UTF8 i UCS2 ORA-17038=Matriu de bytes no suficientment llarga ORA-17039=Matriu de car\u00E0cters no suficientment llarga ORA-17040=S'ha d'especificar el Sub Protocol en l' URL de connexi\u00F3 ORA-17041=Manca el par\u00E0metre IN o OUT en l'\u00EDndex: ORA-17042=Valor de Lot Incorrecte ORA-17043=Mida M\u00E0xima de Flux Incorrecta ORA-17044=Error intern: Matriu de dades no assignada ORA-17045=Error intern: Intent d'accedir a valors d'unificaci\u00F3 superiors al valor del lot ORA-17046=Error intern: \u00CDndex incorrecte per a l'acc\u00E9s a les dades ORA-17047=Error en l'an\u00E0lisi del Descriptor de Tipus ORA-17048=Tipus no definit ORA-17049=Tipus d'objecte java i sql no inconsistents ORA-17050=no hi ha cap element com aquest en el vector ORA-17051=Aquest API no pot \u00E9sser utilitzat per a tipus no UDT ORA-17052=Aquesta ref no \u00E9s v\u00E0lida ORA-17053=Aquesta mida no \u00E9s v\u00E0lida ORA-17054=Aquest localitzador LOB no \u00E9s v\u00E0lid ORA-17055=S'ha trobat un car\u00E0cter incorrecte a ORA-17056=Conjunt de car\u00E0cters no perm\u00E8s (afegiu orai18n.jar a la ruta d'acc\u00E9s de la classe) ORA-17057=LOB tancat ORA-17058=Error intern: Relaci\u00F3 de conversi\u00F3 NLS incorrecta ORA-17059=No es pot convertir en representaci\u00F3 interna ORA-17060=No es pot construir el descriptor ORA-17061=Manca el descriptor ORA-17062=El cursor de ref no \u00E9s v\u00E0lid ORA-17063=No en una transacci\u00F3 ORA-17064=Sintaxi incorrecta o nom de base de dades nul ORA-17065=La classe de conversi\u00F3 \u00E9s nul\u00B7la ORA-17066=Cal una implementaci\u00F3 espec\u00EDfica de l'estrat d'acc\u00E9s ORA-17067=S'ha especificat un URL Oracle incorrecte ORA-17068=Argument(s) incorrecte(s) a la trucada ORA-17069=Utilitzar trucada XA expl\u00EDcita ORA-17070=Mida de dades major a la mida m\u00E0xima per a aquest tipus ORA-17071=S'ha sobrepassat el l\u00EDmit VARRAY m\u00E0xim ORA-17072=EL valor insertat \u00E9s massa gran per la columna ORA-17074=patr\u00F3 de nom incorrecte ORA-17075=Operaci\u00F3 incorrecta en el joc de resultats de nom\u00E9s reenviament ORA-17076=Operaci\u00F3 incorrecta en el joc de resultats de nom\u00E9s lectura ORA-17077=Fallada en definir el valor REF ORA-17078=No es pot realitzar l'operaci\u00F3 perqu\u00E8 les connexions ja estan obertes ORA-17079=Les credencials d'usuari no coincideixen amb les ja existents ORA-17080=ordre de lot incorrecta ORA-17081=s'ha produ\u00EFt un error durant el processament per lots ORA-17082=No hi ha cap fila actual ORA-17083=No es troba en la fila d'inserci\u00F3 ORA-17084=S'ha cridat en la fila d'inserci\u00F3 ORA-17085=S'originen conflictes amb el valor ORA-17086=Valor de columna no definit a la fila d'inserci\u00F3 ORA-17087=Indicaci\u00F3 de rendiment ignorada: setFetchDirection() ORA-17088=Sintaxi no suportada per al tipus de resultset i el nivell de concurr\u00E8ncia sol\u00B7licitats ORA-17089=error intern ORA-17090=operaci\u00F3 no permesa ORA-17091=No es pot crear el tipus un joc de resultats en el tipus i/o nivell de concurr\u00E8ncia sol\u00B7licitats ORA-17092=No es poden crear o executar sent\u00E8ncies JDBC al final del processament de crides ORA-17093=L'operaci\u00F3 OCI ha retornat OCI_SUCCESS_WITH_INFO ORA-17094=No coincideix la versi\u00F3 del tipus d'objecte ORA-17095=No s'ha definit la mida de la cach\u00E9 de la declaraci\u00F3 ORA-17096=No es pot activar l'escriptura de sent\u00E8ncies a la cache per a aquesta connexi\u00F3 l\u00F2gica. ORA-17097=Tipus d'element no v\u00E0lid a la Taula d'\u00CDndex PL/SQL ORA-17098=Operaci\u00F3 de lob buit no v\u00E0lida ORA-17099=Longitud de vector de taula d'\u00EDndex PL/SQL no v\u00E0lida ORA-17100=Objecte Java de base de dades no v\u00E0lid ORA-17101=Propietats no v\u00E0lides a l'Objecte del Conjunt de Connexi\u00F3 OCI ORA-17102=Bfile \u00E9s de nom\u00E9s lectura ORA-17103=getConnection retornar\u00E0 un tipus de connexi\u00F3 no v\u00E0lid. En el seu lloc, utilitzeu getJavaSqlConnection ORA-17104=la sent\u00E8ncia SQL per executar no pot \u00E9sser buida o nul\u00B7la ORA-17105=no s'ha establert la zona hor\u00E0ria de la sessi\u00F3 de connexi\u00F3 ORA-17106=s'ha especificat una configuraci\u00F3 d'agrupaci\u00F3 de connexions de controlador JDBC-OCI que no \u00E9s v\u00E0lida ORA-17107=el tipus de proxy especificat no \u00E9s v\u00E0lid ORA-17108=No s'ha especificat cap longitud m\u00E0xima a defineColumnType ORA-17109=no s'ha trobat la codificaci\u00F3 de car\u00E0cters Java est\u00E0ndard ORA-17110=execuci\u00F3 completada amb av\u00EDs ORA-17111=S'ha especificat un temps d'espera de TTL de la cach\u00E9 de connexi\u00F3 incorrecte ORA-17112=S'ha especificat un interval de thread que no \u00E9s v\u00E0lid ORA-17113=El valor d'interval del thread \u00E9s m\u00E9s gran que el valor de temps d'espera de cach\u00E9 ORA-17114=no s'ha pogut utilitzar una validaci\u00F3 de transacci\u00F3 local en una transacci\u00F3 global ORA-17115=no s'ha pogut utilitzar un rollback de transacci\u00F3 local en una transacci\u00F3 global ORA-17116=no s'ha pogut activar la validaci\u00F3 autom\u00E0tica en una transacci\u00F3 global activa ORA-17117=no s'ha pogut establir el punt de restauraci\u00F3 en una transacci\u00F3 global activa ORA-17118=no s'ha obtingut cap ID per a un punt de restauraci\u00F3 amb nom ORA-17119=no s'ha obtingut cap nom per a un punt de restauraci\u00F3 sense nom ORA-17120=no s'ha pogut definir cap Punt de restauraci\u00F3 amb la validaci\u00F3 autom\u00E0tica activada ORA-17121=no s'ha pogut efectuar un rollback al Punt de recuperaci\u00F3 amb la validaci\u00F3 autom\u00E0tica activada ORA-17122=no s'ha pogut efectuar un rollback a un Punt de restauraci\u00F3 txn local en una transacci\u00F3 global ORA-17123=S'ha especificat una mida de cach\u00E9 de declaraci\u00F3 incorrecta ORA-17124=S'ha especificat un temps d'espera d'Inactivitat de la cach\u00E9 de connexi\u00F3 incorrecte ORA-17125=La cach\u00E9 expl\u00EDcita ha tornat un tipus de sent\u00E8ncia incorrecte ORA-17126=Ha transcorregut el temps d'espera fix ORA-17127=S'ha especificat un temps d'espera fix no v\u00E0lid ORA-17128=La cadena SQL no \u00E9s una Sol\u00B7licitud ORA-17129=La cadena SQL no \u00E9s una Sent\u00E8ncia DML ORA-17132=S'ha sol\u00B7licitat una conversi\u00F3 no v\u00E0lida ORA-17133=UNUSED ORA-17134=La longitud del par\u00E0metre nombrat a SQL excedeix els 32 car\u00E0cters ORA-17135=El nom del par\u00E0metre utilitzat a setXXXStream apareix m\u00E9s d'una vegada a SQL ORA-17136=URL de DATALINK mal formada. Utilitzeu getString() en el seu lloc ORA-17137=L'emmagatzematge de connexi\u00F3 no est\u00E0 activat o no hi ha un origen de dades amb emmagatzematge a cach\u00E9 que sigui v\u00E0lid ORA-17138=Nom de cach\u00E9 de connexi\u00F3 no v\u00E0lid. Cal que sigui una cadena v\u00E0lida i \u00FAnica ORA-17139=Propietats de la cach\u00E9 de connexi\u00F3 no v\u00E0lides ORA-17140=Ja existeix una cach\u00E9 de connexi\u00F3 amb aquest nom ORA-17141=No hi ha cap cach\u00E9 de connexi\u00F3 amb aquest nom ORA-17142=La cach\u00E9 de connexi\u00F3 amb aquest nom est\u00E0 desactivada ORA-17143=S'ha trobat una connexi\u00F3 no v\u00E0lida o obsoleta a la cach\u00E9 de connexi\u00F3 ORA-17144=no s'ha executat el gestor de sent\u00E8ncies ORA-17145=S'ha rebut un esdeveniment ONS no v\u00E0lid ORA-17146=S'ha rebut una versi\u00F3 de l'esdeveniment ONS no v\u00E0lida ORA-17147=S'ha intentat definir un nom de par\u00E0metre que no es produeix a l'SQL ORA-17148=M\u00E8tode que nom\u00E9s s'implementa a prim ORA-17149=Aix\u00F2 ja \u00E9s una sessi\u00F3 proxy ORA-17150=Arguments erronis per a la sessi\u00F3 proxy ORA-17151=El clob \u00E9s massa gran per emmagatzemar-lo en una cadena Java ORA-17152=Aquest m\u00E8tode nom\u00E9s s'implementa en connexions l\u00F2giques ORA-17153=Aquest m\u00E8tode nom\u00E9s s'implementa en connexions f\u00EDsiques ORA-17154=No es pot assignar un car\u00E0cter Oracle a Unicode ORA-17155=No es pot assignar Unicode a un car\u00E0cter Oracle ORA-17156=Mida de vector no v\u00E0lida per als valors de m\u00E8trica d'extrem a extrem ORA-17157=setString nom\u00E9s pot processar cadenes que tinguin menys de 32766 car\u00E0cters ORA-17158=la durada d'aquesta funci\u00F3 no \u00E9s v\u00E0lida ORA-17159=el valor de m\u00E8trica per al rastreig d'extrem a extrem \u00E9s massa llarg ORA-17160=el n\u00FAmero de seq\u00FC\u00E8ncia de l'id de context d'execuci\u00F3 est\u00E0 fora de rang ORA-17161=S''ha utilitzat un mode de transacci\u00F3 no v\u00E0lid ORA-17162=Valor de la capacitat de contenir no suportat ORA-17163=No es pot utilitzar getXAConnection() quan l''emmagatzematge de connexi\u00F3 est\u00E0 activat ORA-17164=No es pot trucar getXAResource() des d''una connexi\u00F3 f\u00EDsica amb l''emmagatzematge activat ORA-17165=El paquet DBMS_JDBC no ha estat definit pr\u00E8viament per a aquesta connexi\u00F3 ORA-17166=No es pot executar una obtenci\u00F3 en una sent\u00E8ncia PLSQL ORA-17167=No s''han trobat les classes PKI. Per utilitzar la funcionalitat ''connect /'', cal que oraclepki.jar sigui a la ruta d''acc\u00E9s de la classe ORA-17168=problema amb el Magatzem secret. Comproveu a la ubicaci\u00F3 de la cartera si hi ha una cartera oberta (cwallet.sso) i assegureu-vos mitjan\u00E7ant la utilitat mkstore que cont\u00E9 les credencials correctes ORA-17169=No es pot vincular el flux a un Conjunt de resultats despla\u00E7ables ni a un Conjunt de resultats actualitzables ORA-17170=L''espai del nom no pot estar buit ORA-17171=La longitud de l''atribut no pot ser superior a 30 car\u00E0cters ORA-17172=Aquest valor de l''atribut no pot superar els 400 car\u00E0cters ORA-17173=No s''han registrat tots els par\u00E0metres de retorn ORA-17174=L'\u00FAnic espai de nom suportat \u00E9s CLIENTCONTEXT ORA-17200=No s'ha pogut convertir b\u00E9 la cadena d'obertura XA de Java a C ORA-17201=No s'ha pogut convertir b\u00E9 la cadena de tancament XA de Java a C ORA-17202=No s'ha pogut convertir b\u00E9 el nom RM de Java a C ORA-17203=No s'ha pogut canviar el tipus d'apuntador de fusi\u00F3 per jlong ORA-17204=El vector d'entrada \u00E9s massa curt per contenir gestors OCI ORA-17205=No s'ha pogut obtenir el gestor OCISvcCtx de C-XA mitjan\u00E7ant xaoSvcCtx ORA-17206=No s'ha pogut obtenir el egstor OCIEnv de C-XA mitjan\u00E7ant xaoEnv ORA-17207=La propietat tnsEntry no ha estat establerta a l'Origen de Dades ORA-17213=C-XA ha retornat XAER_RMERR durant xa_open ORA-17215=C-XA ha retornat XAER_INVAL durant xa_open ORA-17216=C-XA ha retornat XAER_PROTO durant xa_open ORA-17233=C-XA ha retornat XAER_RMERR durant xa_close ORA-17235=C-XA ha retornat XAER_INVAL durant xa_close ORA-17236=C-XA ha retornat XAER_PROTO durant xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Violaci\u00F3 de protocol ORA-17402=Nom\u00E9s s'espera un missatge RPA ORA-17403=Nom\u00E9s s'espera un missatge RXH ORA-17404=S'han rebut m\u00E9s RXD dels esperats ORA-17405=La longitud UAC no \u00E9s zero ORA-17406=Sobrepassa la longitud m\u00E0xima del buffer ORA-17407=representaci\u00F3 incorrecta del tipus(setRep) ORA-17408=representaci\u00F3 incorrecta del tipus(getRep) ORA-17409=longitud de buffer incorrecta ORA-17410=No hi ha m\u00E9s dades per llegir al s\u00F2col ORA-17411=no coincideixen les representacions dels Tipus de Dades ORA-17412=Longitud de tipus m\u00E9s gran que la m\u00E0xima ORA-17413=Sobrepassa la mida de la clau ORA-17414=Mida de coix\u00ED insuficient per emmagatzemar els Noms de les Columnes ORA-17415=Aquest tipus no ha estat gestionat ORA-17416=FATAL ORA-17417=Problema NLS, no s'han pogut descodificar els noms de les columnes ORA-17418=Error de longitud del camp d'estructura interna ORA-17419=Nombre de columnes retornades incorrecte ORA-17420=Versi\u00F3 d'Oracle no definida ORA-17421=Tipus o Connexi\u00F3 no definits ORA-17422=Classe no v\u00E0lida a la f\u00E0brica ORA-17423=Utilitzaci\u00F3 de bloc PLSQL sense un IOV definit ORA-17424=Intentant una operaci\u00F3 de classificaci\u00F3 diferent ORA-17425=Retornant un flux en el bloc PLSQL ORA-17426=Tant el lligam IN com l'OUT s\u00F3n NULL ORA-17427=Utilitzant un OAC no inicialitzat ORA-17428=S'ha de cridar l'entrada despr\u00E9s de connectar ORA-17429=Haur\u00EDeu d'estar almenys connectat al servidor ORA-17430=Ha d'estar connectat al servidor ORA-17431=La sent\u00E8ncia SQL per analitzar \u00E9s nul\u00B7la ORA-17432=opcions no v\u00E0lides en la trucada ORA-17433=arguments no v\u00E0lids en la trucada ORA-17434=no en el mode de flux ORA-17435=nombre de in_out_binds en IOV no v\u00E0lid ORA-17436=nombre de sortides no v\u00E0lid ORA-17437=Error en el(s) argument(s) IN/OUT del bloc PLSQL ORA-17438=Intern - Valor no esperat ORA-17439=Tipus SQL no v\u00E0lid ORA-17440=DBItem/DBType \u00E9s nul ORA-17441=Versi\u00F3 d'Oracle no suportada. La versi\u00F3 m\u00EDnima suportada \u00E9s la 7.2.3. ORA-17442=El valor de cursor de ref no \u00E9s v\u00E0lid ORA-17443=Usuari o contrasenya nuls no suportats al controlador THIN ORA-17444=La versi\u00F3 de Protocol TTC rebuda del servidor no \u00E9s suportada ORA-17445=El LOB ja ha estat obert en la mateixa transacci\u00F3 ORA-17446=El LOB ja ha estat tancat en la mateixa transacci\u00F3 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Internal Error ORA-17002=Io exception ORA-17003=Invalid column index ORA-17004=Invalid column type ORA-17005=Unsupported column type ORA-17006=Invalid column name ORA-17007=Invalid dynamic column ORA-17008=Closed Connection ORA-17009=Closed Statement ORA-17010=Closed Resultset ORA-17011=Exhausted Resultset ORA-17012=Parameter Type Conflict ORA-17014=ResultSet.next was not called ORA-17015=Statement was cancelled ORA-17016=Statement timed out ORA-17017=Cursor already initialized ORA-17018=Invalid cursor ORA-17019=Can only describe a query ORA-17020=Invalid row prefetch ORA-17021=Missing defines ORA-17022=Missing defines at index ORA-17023=Unsupported feature ORA-17024=No data read ORA-17025=Error in defines.isNull () ORA-17026=Numeric Overflow ORA-17027=Stream has already been closed ORA-17028=Can not do new defines until the current ResultSet is closed ORA-17029=setReadOnly: Read-only connections not supported ORA-17030=READ_COMMITTED and SERIALIZABLE are the only valid transaction levels ORA-17031=setAutoClose: Only support auto close mode on ORA-17032=cannot set row prefetch to zero ORA-17033=Malformed SQL92 string at position ORA-17034=Non supported SQL92 token at position ORA-17035=Character Set Not Supported !! ORA-17036=exception in OracleNumber ORA-17037=Fail to convert between UTF8 and UCS2 ORA-17038=Byte array not long enough ORA-17039=Char array not long enough ORA-17040=Sub Protocol must be specified in connection URL ORA-17041=Missing IN or OUT parameter at index: ORA-17042=Invalid Batch Value ORA-17043=Invalid stream maximum size ORA-17044=Internal error: Data array not allocated ORA-17045=Internal error: Attempt to access bind values beyond the batch value ORA-17046=Internal error: Invalid index for data access ORA-17047=Error in Type Descriptor parse ORA-17048=Undefined type ORA-17049=Inconsistent java and sql object types ORA-17050=no such element in vector ORA-17051=This API cannot be be used for non-UDT types ORA-17052=This ref is not valid ORA-17053=The size is not valid ORA-17054=The LOB locator is not valid ORA-17055=Invalid character encountered in ORA-17056=Non supported character set (add orai18n.jar in your classpath) ORA-17057=Closed LOB ORA-17058=Internal error: Invalid NLS Conversion ratio ORA-17059=Fail to convert to internal representation ORA-17060=Fail to construct descriptor ORA-17061=Missing descriptor ORA-17062=Ref cursor is invalid ORA-17063=Not in a transaction ORA-17064=Invalid Sytnax or Database name is null ORA-17065=Conversion class is null ORA-17066=Access layer specific implementation needed ORA-17067=Invalid Oracle URL specified ORA-17068=Invalid argument(s) in call ORA-17069=Use explicit XA call ORA-17070=Data size bigger than max size for this type ORA-17071=Exceeded maximum VARRAY limit ORA-17072=Inserted value too large for column ORA-17074=invalid name pattern ORA-17075=Invalid operation for forward only resultset ORA-17076=Invalid operation for read only resultset ORA-17077=Fail to set REF value ORA-17078=Cannot do the operation as connections are already opened ORA-17079=User credentials doesn't match the existing ones ORA-17080=invalid batch command ORA-17081=error occurred during batching ORA-17082=No current row ORA-17083=Not on the insert row ORA-17084=Called on the insert row ORA-17085=Value conflicts occurs ORA-17086=Undefined column value on the insert row ORA-17087=Ignored performance hint: setFetchDirection() ORA-17088=Unsupported syntax for requested resultset type and concurrency level ORA-17089=internal error ORA-17090=operation not allowed ORA-17091=Unable to create resultset at the requested type and/or concurrency level ORA-17092=JDBC statements cannot be created or executed at end of call processing ORA-17093=OCI operation returned OCI_SUCCESS_WITH_INFO ORA-17094=Object type version mismatched ORA-17095=Statement cache size has not been set ORA-17096=Statement Caching cannot be enabled for this logical connection. ORA-17097=Invalid PL/SQL Index Table element type ORA-17098=Invalid empty lob operation ORA-17099=Invalid PL/SQL Index Table array length ORA-17100=Invalid database Java Object ORA-17101=Invalid properties in OCI Connection Pool Object ORA-17102=Bfile is read only ORA-17103=invalid connection type to return via getConnection. Use getJavaSqlConnection instead ORA-17104=SQL statement to execute cannot be empty or null ORA-17105=connection session time zone was not set ORA-17106=invalid JDBC-OCI driver connection pool configuration specified ORA-17107=invalid proxy type specified ORA-17108=No max length specified in defineColumnType ORA-17109=standard Java character encoding not found ORA-17110=execution completed with warning ORA-17111=Invalid connection cache TTL timeout specified ORA-17112=Invalid thread interval specified ORA-17113=Thread interval value is more than the cache timeout value ORA-17114=could not use local transaction commit in a global transaction ORA-17115=could not use local transaction rollback in a global transaction ORA-17116=could not turn on auto-commit in an active global transaction ORA-17117=could not set savepoint in an active global transaction ORA-17118=could not obtain ID for a named Savepoint ORA-17119=could not obtain name for an un-named Savepoint ORA-17120=could not set a Savepoint with auto-commit on ORA-17121=could not rollback to a Savepoint with auto-commit on ORA-17122=could not rollback to a local txn Savepoint in a global transaction ORA-17123=Invalid statement cache size specified ORA-17124=Invalid connection cache Inactivity timeout specified ORA-17125=Improper statement type returned by explicit cache ORA-17126=Fixed Wait timeout elapsed ORA-17127=Invalid Fixed Wait timeout specified ORA-17128=SQL string is not Query ORA-17129=SQL string is not a DML Statement ORA-17132=Invalid conversion requested ORA-17133=UNUSED ORA-17134=Length of named parameter in SQL exceeded 32 characters ORA-17135=Parameter name used in setXXXStream appears more than once in SQL ORA-17136=Malformed DATALINK URL, try getString() instead ORA-17137=Connection Caching Not Enabled or Not a Valid Cache Enabled DataSource ORA-17138=Invalid Connection Cache Name. Must be a valid String and Unique ORA-17139=Invalid Connection Cache Properties ORA-17140=Connection Cache with this Cache Name already exists ORA-17141=Connection Cache with this Cache Name does not exist ORA-17142=Connection Cache with this Cache Name is Disabled ORA-17143=Invalid or Stale Connection found in the Connection Cache ORA-17144=statement handle not executed ORA-17145=Invalid ONS Event received ORA-17146=Invalid ONS Event Version received ORA-17147=Attempt to set a parameter name that does not occur in the SQL ORA-17148=Method only implemented in thin ORA-17149=This is already a proxy session ORA-17150=Wrong arguments for proxy session ORA-17151=Clob is too large to be stored in a Java String ORA-17152=This method is only implemented in logical connections ORA-17153=This method is only implemented in physical connections ORA-17154=Cannot map Oracle character to Unicode ORA-17155=Cannot map Unicode to Oracle character ORA-17156=Invalid array size for End-to-End metrics values ORA-17157=setString can only process strings of less than 32766 chararacters ORA-17158=duration is invalid for this function ORA-17159=metric value for end-to-end tracing is too long ORA-17160=execution context id sequence number out of range ORA-17161=Invalid transaction mode used ORA-17162=Unsupported holdability value ORA-17163=Can not use getXAConnection() when connection caching is enabled ORA-17164=Can not call getXAResource() from physical connection with caching on ORA-17165=DBMS_JDBC package not preset in server for this connection ORA-17166=Cannot perform fetch on a PLSQL statement ORA-17167=PKI classes not found. To use 'connect /' functionality, oraclepki.jar must be in the classpath ORA-17168=encountered a problem with the Secret Store. Check the wallet location for the presence of an open wallet (cwallet.sso) and ensure that this wallet contains the correct credentials using the mkstore utility ORA-17169=Cannot bind stream to a ScrollableResultSet or UpdatableResultSet ORA-17170=The Namespace cannot be empty ORA-17171=The attribute length cannot exceed 30 chars ORA-17172=That value of the attribute cannot exceed 400 chars ORA-17173=Not all return parameters registered ORA-17174=The only supported namespace is CLIENTCONTEXT ORA-17175=Error during remote ONS configuration ORA-17200=Unable to properly convert XA open string from Java to C ORA-17201=Unable to properly convert XA close string from Java to C ORA-17202=Unable to properly convert RM name from Java to C ORA-17203=Could not casting pointer type to jlong ORA-17204=Input array too short to hold OCI handles ORA-17205=Failed to obtain OCISvcCtx handle from C-XA using xaoSvcCtx ORA-17206=Failed to obtain OCIEnv handle from C-XA using xaoEnv ORA-17207=The tnsEntry property was not set in DataSource ORA-17213=C-XA returned XAER_RMERR during xa_open ORA-17215=C-XA returned XAER_INVAL during xa_open ORA-17216=C-XA returned XAER_PROTO during xa_open ORA-17233=C-XA returned XAER_RMERR during xa_close ORA-17235=C-XA returned XAER_INVAL during xa_close ORA-17236=C-XA returned XAER_PROTO during xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Protocol violation ORA-17402=Only one RPA message is expected ORA-17403=Only one RXH message is expected ORA-17404=Received more RXDs than expected ORA-17405=UAC length is not zero ORA-17406=Exceeding maximum buffer length ORA-17407=invalid Type Representation(setRep) ORA-17408=invalid Type Representation(getRep) ORA-17409=invalid buffer length ORA-17410=No more data to read from socket ORA-17411=Data Type representations mismatch ORA-17412=Bigger type length than Maximum ORA-17413=Exceding key size ORA-17414=Insufficient Buffer size to store Columns Names ORA-17415=This type hasn't been handled ORA-17416=FATAL ORA-17417=NLS Problem, failed to decode column names ORA-17418=Internal structure's field length error ORA-17419=Invalid number of columns returned ORA-17420=Oracle Version not defined ORA-17421=Types or Connection not defined ORA-17422=Invalid class in factory ORA-17423=Using a PLSQL block without an IOV defined ORA-17424=Attempting different marshaling operation ORA-17425=Returning a stream in PLSQL block ORA-17426=Both IN and OUT binds are NULL ORA-17427=Using Uninitialized OAC ORA-17428=Logon must be called after connect ORA-17429=Must be at least connected to server ORA-17430=Must be logged on to server ORA-17431=SQL Statement to parse is null ORA-17432=invalid options in all7 ORA-17433=invalid arguments in call ORA-17434=not in streaming mode ORA-17435=invalid number of in_out_binds in IOV ORA-17436=invalid number of outbinds ORA-17437=Error in PLSQL block IN/OUT argument(s) ORA-17438=Internal - Unexpected value ORA-17439=Invalid SQL type ORA-17440=DBItem/DBType is null ORA-17441=Oracle Version not supported. Minimum supported version is 7.2.3. ORA-17442=Refcursor value is invalid ORA-17443=Null user or password not supported in THIN driver ORA-17444=TTC Protocol version received from server not supported ORA-17445=LOB already opened in the same transaction ORA-17446=LOB already closed in the same transaction ORA-17447=OALL8 is in an inconsistent state # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_cs.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Vnit\u0159n\u00ED chyba ORA-17002=V\u00FDjimka vstupu/v\u00FDstupu ORA-17003=Neplatn\u00FD index sloupce ORA-17004=Neplatn\u00FD typ sloupce ORA-17005=Nepodporovan\u00FD typ sloupce ORA-17006=Neplatn\u00FD n\u00E1zev sloupce ORA-17007=Neplatn\u00FD dynamick\u00FD sloupec ORA-17008=Ukon\u010Den\u00E9 p\u0159ipojen\u00ED ORA-17009=Uzav\u0159en\u00FD p\u0159\u00EDkaz ORA-17010=Uzav\u0159en\u00E1 mno\u017Eina v\u00FDsledk\u016F ORA-17011=Vy\u010Derpan\u00E1 mno\u017Eina v\u00FDsledk\u016F ORA-17012=Konflikt typu parametr\u016F ORA-17014=Nebyl vyvol\u00E1n ResultSet.next ORA-17015=P\u0159\u00EDkaz byl zru\u0161en ORA-17016=\u010Casov\u00FD limit pro p\u0159\u00EDkaz vypr\u0161el ORA-17017=Kurzor je ji\u017E inicializov\u00E1n ORA-17018=Neplatn\u00FD kurzor ORA-17019=Lze popsat jen dotaz ORA-17020=Neplatn\u00E9 p\u0159edb\u011B\u017En\u00E9 vyvol\u00E1n\u00ED \u0159\u00E1dku ORA-17021=Chyb\u011Bj\u00EDc\u00ED definice ORA-17022=Chyb\u011Bj\u00EDc\u00ED definice v indexu ORA-17023=Nepodporovan\u00E1 funkce ORA-17024=Nena\u010Dtena \u017E\u00E1dn\u00E1 data ORA-17025=Chyba v defines.isNull () ORA-17026=\u010C\u00EDseln\u00E9 p\u0159ete\u010Den\u00ED ORA-17027=Proud dat je ji\u017E uzav\u0159en ORA-17028=Nelze prov\u00E1d\u011Bt nov\u00E9 definice, dokud nebude uzav\u0159ena aktu\u00E1ln\u00ED mno\u017Eina v\u00FDsledk\u016F ORA-17029=setReadOnly: Spojen\u00ED Read-only nejsou podporov\u00E1na ORA-17030=READ_COMMITTED a SERIALIZABLE jsou jedin\u00E9 platn\u00E9 \u00FArovn\u011B transakc\u00ED ORA-17031=setAutoClose: Podpora jen zapnut\u00E9ho re\u017Eimu automatick\u00E9ho zav\u00EDr\u00E1n\u00ED ORA-17032=nelze nastavit p\u0159edb\u011B\u017En\u00E9 vyvol\u00E1n\u00ED \u0159\u00E1dku na nulu ORA-17033=Chybn\u011B formulovan\u00FD \u0159et\u011Bzec SQL92 na pozici ORA-17034=Nepodporovan\u00E1 lexik\u00E1ln\u00ED jednotka SQL92 na pozici ORA-17035=Nepodporovan\u00E1 znakov\u00E1 sada !! ORA-17036=v\u00FDjimka v OracleNumber ORA-17037=Selh\u00E1n\u00ED p\u0159i konverzi mezi UTF8 a UCS2 ORA-17038=Nedostate\u010Dn\u00E1 d\u00E9lka bajtov\u00E9ho pole ORA-17039=Nedostate\u010Dn\u00E1 d\u00E9lka znakov\u00E9ho pole ORA-17040=Je t\u0159eba zadat Sub Protokol v p\u0159ipojovac\u00ED URL ORA-17041=Chyb\u011Bj\u00EDc\u00ED parametr IN nebo OUT v indexu: ORA-17042=Neplatn\u00E1 hodnota d\u00E1vky ORA-17043=Neplatn\u00E1 maxim\u00E1ln\u00ED velikost toku ORA-17044=Vnit\u0159n\u00ED chyba: Nebylo alokov\u00E1no datov\u00E9 pole ORA-17045=Vnit\u0159n\u00ED chyba: Pokus o p\u0159\u00EDstup k vazebn\u00EDm hodnot\u00E1m mimo hodnotu d\u00E1vky ORA-17046=Vnit\u0159n\u00ED chyba: Neplatn\u00FD index pro p\u0159\u00EDstup k dat\u016Fm ORA-17047=Chyba v anal\u00FDze Deskriptoru typu ORA-17048=Nedefinovan\u00FD typ ORA-17049=Nekonzistentn\u00ED typy objektu java a sql ORA-17050=\u017E\u00E1dn\u00FD takov\u00FD prvek ve vektoru ORA-17051=Toto API nelze pou\u017E\u00EDt pro jin\u00FD typ ne\u017E UDT ORA-17052=Tento odkaz je neplatn\u00FD ORA-17053=Tato velikost je neplatn\u00E1 ORA-17054=Lok\u00E1tor LOB je neplatn\u00FD ORA-17055=Nalezen neplatn\u00FD znak v ORA-17056=Nepodporovan\u00E1 znakov\u00E1 sada (p\u0159idejte orai18n.jar ke sv\u00E9 cest\u011B t\u0159\u00EDdy) ORA-17057=Uzav\u0159en\u00FD LOB ORA-17058=Vnit\u0159n\u00ED chyba: Neplatn\u00FD p\u0159evodov\u00FD pom\u011Br NLS ORA-17059=Selh\u00E1n\u00ED p\u0159i p\u0159evodu na vnit\u0159n\u00ED reprezentaci ORA-17060=Selh\u00E1n\u00ED p\u0159i vytv\u00E1\u0159en\u00ED deskriptoru ORA-17061=Chyb\u011Bj\u00EDc\u00ED deskriptor ORA-17062=Kurzor odkazu je neplatn\u00FD ORA-17063=Nen\u00ED v transakci ORA-17064=Neplatn\u00E1 syntaxe nebo pr\u00E1zdn\u00FD n\u00E1zev datab\u00E1ze ORA-17065=P\u0159evodn\u00ED t\u0159\u00EDda je pr\u00E1zdn\u00E1 ORA-17066=Je t\u0159eba specifick\u00E9 zaveden\u00ED \u00FArovn\u011B p\u0159\u00EDstupu ORA-17067=Neplatn\u011B zadan\u00E1 Oracle URL ORA-17068=Vol\u00E1n\u00ED neplatn\u00E9ho argumentu(-\u016F) ORA-17069=Pou\u017Eijte z\u0159eteln\u00E9 vol\u00E1n\u00ED XA ORA-17070=Velikost dat je v\u011Bt\u0161\u00ED ne\u017E maxim\u00E1ln\u00ED velikost pro tento typ ORA-17071=P\u0159ekro\u010Den maxim\u00E1ln\u00ED limit VARRAY ORA-17072=Vlo\u017Een\u00E1 hodnota je pro sloupec p\u0159\u00EDli\u0161 velk\u00E1 ORA-17074=neplatn\u00FD vzor n\u00E1zvu ORA-17075=Neplatn\u00E1 operace pro mno\u017Einu v\u00FDsledk\u016F jen pro p\u0159ed\u00E1n\u00ED ORA-17076=Neplatn\u00E1 operace pro mno\u017Einu v\u00FDsledk\u016F jen pro \u010Dten\u00ED ORA-17077=Selhalo nastaven\u00ED hodnoty REF ORA-17078=Nelze prov\u00E9st operaci, proto\u017Ee p\u0159ipojen\u00ED je ji\u017E otev\u0159eno ORA-17079=Ov\u011B\u0159ovac\u00ED \u00FAdaje u\u017Eivatele neodpov\u00EDd\u00E1 st\u00E1vaj\u00EDc\u00EDm \u00FAdaj\u016Fm ORA-17080=neplatn\u00FD p\u0159\u00EDkaz d\u00E1vky ORA-17081=p\u0159i vytv\u00E1\u0159en\u00ED d\u00E1vky se vyskytla chyba ORA-17082=Nen\u00ED aktu\u00E1ln\u00ED \u0159\u00E1dek ORA-17083=Nen\u00ED na vlo\u017Een\u00E9m \u0159\u00E1dku ORA-17084=Vol\u00E1no na vlo\u017Een\u00E9m \u0159\u00E1dku ORA-17085=Doch\u00E1z\u00ED ke konflikt\u016Fm hodnot ORA-17086=Ve vlo\u017Een\u00E9m \u0159\u00E1dku je nedefinovan\u00E1 hodnota sloupce ORA-17087=Ignorovan\u00E9 upozorn\u011Bn\u00ED na v\u00FDkon: setFetchDirection() ORA-17088=Nepodporovan\u00E1 syntaxe pro po\u017Eadovan\u00FD typ mno\u017Einy v\u00FDsledk\u016F a \u00FArove\u0148 soub\u011B\u017En\u00E9ho zpracov\u00E1n\u00ED ORA-17089=vnit\u0159n\u00ED chyba ORA-17090=operace nen\u00ED povolena ORA-17091=Nelze vytvo\u0159it mno\u017Einu v\u00FDsledk\u016F po\u017Eadovan\u00E9ho typu nebo na soub\u011B\u017En\u00E9 \u00FArovni ORA-17092=Na konci zpracov\u00E1n\u00ED vol\u00E1n\u00ED nelze vytvo\u0159it ani prov\u00E9st p\u0159\u00EDkazy JDBC ORA-17093=Operace OCI vr\u00E1tila OCI_SUCCESS_WITH_INFO ORA-17094=Nen\u00ED shoda verze typu objektu ORA-17095=Velikost vyrovn\u00E1vac\u00ED pam\u011Bti p\u0159\u00EDkazu nebyla nastavena ORA-17096=Ukl\u00E1d\u00E1n\u00ED p\u0159\u00EDkaz\u016F do vyrovn\u00E1vac\u00ED pam\u011Bti nelze pro toto logick\u00E9 p\u0159ipojen\u00ED aktivovat ORA-17097=Neplatn\u00FD typ prvku tabulky indexu PL/SQL ORA-17098=Neplatn\u00E1 pr\u00E1zdn\u00E1 operace lob ORA-17099=Neplatn\u00E1 d\u00E9lka pole indexov\u00E9 tabulky PL/SQL ORA-17100=Neplatn\u00E1 datab\u00E1ze Java Object ORA-17101=Neplatn\u00E9 vlastnosti v OCI Connection Pool Object ORA-17102=Bfile je jen ke \u010Dten\u00ED ORA-17103=getConnection vr\u00E1til neplatn\u00FD typ spojen\u00ED. M\u00EDsto toho pou\u017Eijte getJavaSqlConnection ORA-17104=P\u0159\u00EDkaz SQL, kter\u00FD se m\u00E1 prov\u00E9st, nesm\u00ED b\u00FDt pr\u00E1zdn\u00FD nebo nab\u00FDvat hondoty null ORA-17105=nebyla nastavena \u010Dasov\u00E1 z\u00F3na pro relaci p\u0159ipojen\u00ED ORA-17106=byla specifikov\u00E1na neplatn\u00E1 konfigurace fondu p\u0159ipojen\u00ED ovlada\u010De JDBC-OCI ORA-17107=byl specifikov\u00E1n neplatn\u00FD typ proxy ORA-17108=Nebyla specifikov\u00E1na maxim\u00E1ln\u00ED d\u00E9lka v defineColumnType ORA-17109=nebylo nalezeno standardn\u00ED k\u00F3dov\u00E1n\u00ED znak\u016F Java ORA-17110=prov\u00E1d\u011Bn\u00ED k\u00F3du bylo dokon\u010Deno s varov\u00E1n\u00EDm ORA-17111=Byl specifikov\u00E1n neplatn\u00FD \u010Dasov\u00FD limit TTL pam\u011Bti cache pro p\u0159ipojen\u00ED ORA-17112=Byl specifikov\u00E1n neplatn\u00FD interval vl\u00E1kna ORA-17113=Hodnota intervalu vl\u00E1kna je v\u011Bt\u0161\u00ED ne\u017E hodnota \u010Dasov\u00E9ho limitu pam\u011Bti cache ORA-17114=nebylo mo\u017En\u00E9 pou\u017E\u00EDt potvrzen\u00ED lok\u00E1ln\u00ED transakce v glob\u00E1ln\u00ED transakci ORA-17115=nebylo mo\u017En\u00E9 pou\u017E\u00EDt n\u00E1vrat lok\u00E1ln\u00ED transakce v glob\u00E1ln\u00ED transakci ORA-17116=nebylo mo\u017En\u00E9 zapnout automatick\u00E9 potvrzen\u00ED v aktivn\u00ED glob\u00E1ln\u00ED transakci ORA-17117=nebylo mo\u017En\u00E9 nastavit bod ulo\u017Een\u00ED v aktivn\u00ED glob\u00E1ln\u00ED transakci ORA-17118=nebylo mo\u017En\u00E9 z\u00EDskat ID pro pojmenovan\u00FD bod ulo\u017Een\u00ED ORA-17119=nebylo mo\u017En\u00E9 z\u00EDskat ID pro nepojmenovan\u00FD bod ulo\u017Een\u00ED ORA-17120=nebylo mo\u017En\u00E9 nastavit bod ulo\u017Een\u00ED se zapnut\u00FDm automatick\u00FDm potvrzen\u00EDm ORA-17121=nebylo mo\u017En\u00E9 prov\u00E9st n\u00E1vrat do bodu ulo\u017Een\u00ED se zapnut\u00FDm automatick\u00FDm potvrzen\u00EDm ORA-17122=nebylo mo\u017En\u00E9 prov\u00E9st n\u00E1vrat do lok\u00E1ln\u00EDho bodu ulo\u017Een\u00ED txn v glob\u00E1ln\u00ED transakci ORA-17123=Byla specifikov\u00E1na neplatn\u00E1 velikost pam\u011Bti cache p\u0159\u00EDkazu ORA-17124=Byl specifikov\u00E1n neplatn\u00FD \u010Dasov\u00FD limit ne\u010Dinnosti pam\u011Bti cache pro p\u0159ipojen\u00ED ORA-17125=Explicitn\u00ED pam\u011Bt\u00ED cache byl vr\u00E1cen nespr\u00E1vn\u00FD typ p\u0159\u00EDkazu ORA-17126=Uplynul pevn\u00FD \u010Dekac\u00ED \u010Dasov\u00FD limit ORA-17127=Byl zad\u00E1n neplatn\u00FD pevn\u00FD \u010Dekac\u00ED \u010Dasov\u00FD limit ORA-17128=\u0158et\u011Bzec SQL nen\u00ED dotazem ORA-17129=\u0158et\u011Bzec SQL nen\u00ED p\u0159\u00EDkazem DML ORA-17132=Byla po\u017Eadov\u00E1na neplatn\u00E1 konverze ORA-17133=UNUSED ORA-17134=D\u00E9lka pojmenovan\u00E9ho parametru ve v\u00FDrazu SQL p\u0159ekro\u010Dila 32 znak\u016F ORA-17135=N\u00E1zev parametru pou\u017Eit\u00FD v setXXXStream se ve v\u00FDrazu SQL vyskytl v\u00EDce ne\u017E jednou ORA-17136=Adresa DATALINK URL je nespr\u00E1vn\u011B formulov\u00E1na, zkuste pou\u017E\u00EDt getString() ORA-17137=Nen\u00ED aktivov\u00E1no odkl\u00E1d\u00E1n\u00ED do pam\u011Bti cache pro p\u0159ipojen\u00ED nebo nejde o platn\u00FD datov\u00FD zdroj s aktivovanou pam\u011Bt\u00ED cache ORA-17138=Neplatn\u00FD n\u00E1zev pam\u011Bti cache pro p\u0159ipojen\u00ED. Must\u00ED b\u00FDt zad\u00E1n platn\u00FD a jednozna\u010Dn\u00FD \u0159et\u011Bzec ORA-17139=Neplatn\u00E9 vlastnosti pam\u011Bti cache pro p\u0159ipojen\u00ED ORA-17140=Pam\u011B\u0165 cache pro p\u0159ipojen\u00ED s t\u00EDmto n\u00E1zvem ji\u017E existuje ORA-17141=Pam\u011B\u0165 cache pro p\u0159ipojen\u00ED s t\u00EDmto n\u00E1zvem dosud neexistuje ORA-17142=Pam\u011B\u0165 cache pro p\u0159ipojen\u00ED s t\u00EDmto n\u00E1zvem je deaktivov\u00E1na ORA-17143=V pam\u011Bti cache pro p\u0159ipojen\u00ED bylo nalezeno neplatn\u00E9 nebo zastaral\u00E9 p\u0159ipojen\u00ED ORA-17144=deskriptor p\u0159\u00EDkazu nebyl proveden ORA-17145=Byla p\u0159ijata neplatn\u00E1 ud\u00E1lost ONS ORA-17146=Byla p\u0159ijata neplatn\u00E1 verze ud\u00E1losti ONS ORA-17147=Pokus o nastaven\u00ED n\u00E1zvu parametru, kter\u00FD se ve v\u00FDrazu SQL nevyskytuje ORA-17148=Metoda je implementov\u00E1na pouze v tenk\u00E9m ORA-17149=Toto ji\u017E je relace proxy ORA-17150=Nespr\u00E1vn\u00E9 argumenty pro relaci proxy ORA-17151=Typ Clob je p\u0159\u00EDli\u0161 velk\u00FD na to, aby mohl b\u00FDt ulo\u017Een jako \u0159et\u011Bzec Java ORA-17152=Tato metoda je implementov\u00E1na pouze v logick\u00FDch p\u0159ipojen\u00EDch ORA-17153=Tato metoda je implementov\u00E1na pouze ve fyzick\u00FDch p\u0159ipojen\u00EDch ORA-17154=Znak Oracle na znak Unicode nelze mapovat ORA-17155=Znak Unicode na znak Oracle nelze mapovat ORA-17156=Neplatn\u00E1 velikost pole pro hodnoty metrik typu end-to-end (konec na konec) ORA-17157=funkce setString m\u016F\u017Ee pracovat pouze s \u0159et\u011Bzci krat\u0161\u00EDmi ne\u017E 32766 znak\u016F ORA-17158=doba trv\u00E1n\u00ED je pro tuto funkci neplatn\u00E1 ORA-17159=hodnota metriky pro trasov\u00E1n\u00ED typu end-to-end (konec na konec) je p\u0159\u00EDli\u0161 dlouh\u00E1 ORA-17160=\u010D\u00EDslo sekvence ID kontextu proveden\u00ED je mimo rozsah ORA-17161=Byl pou\u017Eit neplatn\u00FD re\u017Eim transakce ORA-17162=Nepodporovan\u00E1 hodnota \"holdability\" ORA-17163=Nelze pou\u017E\u00EDt p\u0159\u00EDkaz etXAConnection(), pokud je aktivov\u00E1no ukl\u00E1d\u00E1n\u00ED do pam\u011Bti cache pro p\u0159ipojen\u00ED ORA-17164=Nelze volat p\u0159\u00EDkaz getXAResource() z fyzick\u00E9ho p\u0159ipojen\u00ED, pokud je aktivov\u00E1no ukl\u00E1d\u00E1n\u00ED do pam\u011Bti cache ORA-17165=Pro toto p\u0159ipojen\u00ED nejsou na serveru p\u0159ednastaveny programy DBMS_JDBC ORA-17166=U p\u0159\u00EDkazu PLSQL nelze prov\u00E9st na\u010Dten\u00ED ORA-17167=Nebyly nalezeny t\u0159\u00EDdy PKI. Chcete-li pou\u017E\u00EDt funkci 'connect /', mus\u00ED b\u00FDt v cest\u011B t\u0159\u00EDdy soubor oraclepki.jar ORA-17168=Byl zji\u0161t\u011Bn probl\u00E9m v z\u00F3n\u011B Secret Store. Zkontrolujte, zda v um\u00EDst\u011Bn\u00ED slu\u017Eby Wallet existuje otev\u0159en\u00FD soubor wallet (cwallet.sso) a ov\u011B\u0159te, zda obsahuje spr\u00E1vn\u00E9 ov\u011B\u0159ovac\u00ED \u00FAdaje pomoc\u00ED utility mkstore. ORA-17169=Nelze nav\u00E1zat proud dat na objekty ScrollableResultSet nebo UpdatableResultSet ORA-17170=Prostor n\u00E1zv\u016F nem\u016F\u017Ee b\u00FDt pr\u00E1zdn\u00FD ORA-17171=D\u00E9lka atributu nem\u016F\u017Ee p\u0159ekro\u010Dit 30 znak\u016F ORA-17172=Tato hodnota atributu nem\u016F\u017Ee p\u0159ekro\u010Dit 400 znak\u016F ORA-17173=Nebyly registrov\u00E1ny v\u0161echny n\u00E1vratov\u00E9 parametry ORA-17174=Jedin\u00FD podporovan\u00FD prostor n\u00E1zv\u016F je CLIENTCONTEXT ORA-17175=Chyba p\u0159i konfiguraci vzd\u00E1len\u00E9 slu\u017Eby ONS ORA-17200=Nelze spr\u00E1vn\u011B konvertovat otev\u0159en\u00FD \u0159et\u011Bzec XA z Java do C ORA-17201=Nelze spr\u00E1vn\u011B konvertovat zav\u0159en\u00FD \u0159et\u011Bzec XA z Java do C ORA-17202=Nelze spr\u00E1vn\u011B konvertovat n\u00E1zev RM z Java do C ORA-17203=Nebylo mo\u017En\u00E9 zm\u011Bnit typ ukazatele na jlong ORA-17204=Vstupn\u00ED pole je p\u0159\u00EDli\u0161 kr\u00E1tk\u00E9, aby se do n\u011Bj ve\u0161ly deskriptory OCI ORA-17205=Selhalo z\u00EDsk\u00E1n\u00ED deskriptoru OCISvcCtx z C-XA pomoc\u00ED xaoSvcCtx ORA-17206=Selhalo z\u00EDsk\u00E1n\u00ED deskriptoru OCIEnv z C-XA pomoc\u00ED xaoEnv ORA-17207=Vlastnost tnsEntry nebyla v DataSource nastavena ORA-17213=C-XA vr\u00E1til XAER_RMERR b\u011Bhem xa_open ORA-17215=C-XA vr\u00E1til XAER_INVAL b\u011Bhem xa_open ORA-17216=C-XA vr\u00E1til XAER_PROTO b\u011Bhem xa_open ORA-17233=C-XA vr\u00E1til XAER_RMERR b\u011Bhem xa_close ORA-17235=C-XA vr\u00E1til XAER_INVAL b\u011Bhem xa_close ORA-17236=C-XA vr\u00E1til XAER_PROTO b\u011Bhem xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Poru\u0161en\u00ED protokolu ORA-17402=O\u010Dek\u00E1v\u00E1 se pouze jedna zpr\u00E1va RPA ORA-17403=O\u010Dek\u00E1v\u00E1 se pouze jedna zpr\u00E1va RXH ORA-17404=P\u0159ijato v\u00EDce RXD ne\u017E bylo o\u010Dek\u00E1v\u00E1no ORA-17405=D\u00E9lka UAC nen\u00ED nulov\u00E1 ORA-17406=P\u0159ekro\u010Dena maxim\u00E1ln\u00ED d\u00E9lka vyrovn\u00E1vac\u00ED pam\u011Bti ORA-17407=Neplatn\u00E1 reprezentace typu(setRep) ORA-17408=Neplatn\u00E1 reprezentace typu(getRep) ORA-17409=neplatn\u00E1 d\u00E9lka vyrovn\u00E1vac\u00ED pam\u011Bti ORA-17410=\u017D\u00E1dn\u00E1 dal\u0161\u00ED data ke \u010Dten\u00ED ze soketu ORA-17411=Neshoda reprezentace typu dat ORA-17412=D\u00E9lka typu v\u011Bt\u0161\u00ED ne\u017E maximum ORA-17413=P\u0159ekro\u010Den\u00ED velikosti kl\u00ED\u010De ORA-17414=Nedostate\u010Dn\u00E1 velikost vyrovn\u00E1vac\u00ED pam\u011Bti pro ulo\u017Een\u00ED n\u00E1zv\u016F sloupc\u016F ORA-17415=Tento typ nebyl zpracov\u00E1v\u00E1n ORA-17416=FATAL ORA-17417=Probl\u00E9m NLS, selh\u00E1n\u00ED p\u0159i dek\u00F3dov\u00E1n\u00ED n\u00E1zv\u016F sloupc\u016F ORA-17418=Chyba v d\u00E9lce pole intern\u00ED struktury ORA-17419=Vr\u00E1cen neplatn\u00FD po\u010Det sloupc\u016F ORA-17420=Verze Oracle nen\u00ED definov\u00E1na ORA-17421=Nejsou definov\u00E1ny typy nebo p\u0159ipojen\u00ED ORA-17422=Neplatn\u00E1 t\u0159\u00EDda v producentovi ORA-17423=Pou\u017Eit\u00ED bloku PLSQL bez definov\u00E1n\u00ED IOV ORA-17424=Pokus o r\u016Fzn\u00E9 marshaling operace (konverze na line\u00E1rn\u00ED tok dat) ORA-17425=Vr\u00E1cen\u00ED proudu dat v bloku PLSQL ORA-17426=P\u0159i\u0159azen\u00ED IN i OUT je PR\u00C1ZDN\u00C9 ORA-17427=Pou\u017Eit\u00ED neinicializovan\u00E9ho OAC ORA-17428=po p\u0159ipojen\u00ED je t\u0159eba vyvolat vytvo\u0159en\u00ED spojen\u00ED ORA-17429=Mus\u00ED b\u00FDt alespo\u0148 p\u0159ipojen k serveru ORA-17430=Mus\u00ED b\u00FDt p\u0159ihl\u00E1\u0161en k serveru ORA-17431=P\u0159\u00EDkaz SQL pro odd\u011Blen\u00ED je pr\u00E1zdn\u00FD ORA-17432=neplatn\u00E9 volby v all7 ORA-17433=vol\u00E1n\u00ED neplatn\u00FDch argument\u016F ORA-17434=nen\u00ED v proudov\u00E9m re\u017Eimu ORA-17435=neplatn\u00FD po\u010Det in_out_binds v IOV ORA-17436=neplatn\u00FD po\u010Det outbinds ORA-17437=Chyba v argumentu(-ech) IN/OUT v bloku PLSQL ORA-17438=Intern\u00ED - neo\u010Dek\u00E1van\u00E1 hodnota ORA-17439=Neplatn\u00FD typ SQL ORA-17440=DBItem/DBType je pr\u00E1zdn\u00FD ORA-17441=Nepodporovan\u00E1 verze Oracle. Minim\u00E1ln\u00ED podporovan\u00E1 verze je 7.2.3. ORA-17442=Hodnota odkazov\u00E9ho kurzoru je neplatn\u00E1 ORA-17443=Pr\u00E1zdn\u00FD u\u017Eivatel nebo heslo nen\u00ED podporov\u00E1no v ovl\u00E1da\u010Di THIN ORA-17444=Nepodporovan\u00E1 verze protokolu TTC p\u0159ijat\u00E1 ze serveru ORA-17445=LOB je ji\u017E ve stejn\u00E9 transakci otev\u0159en ORA-17446=LOB je ji\u017E ve stejn\u00E9 transakci zav\u0159en ORA-17447=OALL8 je v nekonzistentn\u00EDm stavu # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_da.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Intern fejl ORA-17002=Io-undtagelse ORA-17003=Ugyldigt kolonneindeks ORA-17004=Ugyldig kolonnetype ORA-17005=Ikke-underst\u00F8ttet kolonnetype ORA-17006=Ugyldigt kolonnenavn ORA-17007=Ugyldig dynamisk kolonne ORA-17008=Lukket forbindelse ORA-17009=Lukket s\u00E6tning ORA-17010=Lukket resultats\u00E6t ORA-17011=Opbrugt resultats\u00E6t ORA-17012=Parametertypekonflikt ORA-17014=ResultSet.next blev ikke kaldt ORA-17015=S\u00E6tning blev annulleret ORA-17016=Timeout opstod for s\u00E6tning ORA-17017=Mark\u00F8r er allerede initialiseret ORA-17018=Ugyldig mark\u00F8r ORA-17019=Kan kun beskrive en foresp\u00F8rgsel ORA-17020=Ugyldig r\u00E6kke-prefetch ORA-17021=Mangler definitioner ORA-17022=Mangler definitioner ved indeks ORA-17023=Ikke-underst\u00F8ttet facilitet ORA-17024=Ingen data er l\u00E6st ORA-17025=Fejl i defines.isNull () ORA-17026=Numerisk overl\u00F8b ORA-17027=Stream er allerede lukket ORA-17028=Kan ikke oprette nye definitioner, f\u00F8r det aktuelle ResultSet er lukket ORA-17029=setReadOnly: Skrivebeskyttede forbindelser underst\u00F8ttes ikke ORA-17030=READ_COMMITTED og SERIALIZABLE er de eneste gyldige transaktionsniveauer ORA-17031=setAutoClose: Underst\u00F8t kun auto close on ORA-17032=r\u00E6kke-prefetch kan ikke s\u00E6ttes til nul ORA-17033=Ugyldig SQL92-streng p\u00E5 position ORA-17034=Ikke-underst\u00F8ttet SQL92-token p\u00E5 position ORA-17035=Tegns\u00E6t underst\u00F8ttes ikke !! ORA-17036=undtagelse i OracleNumber ORA-17037=Konvertering mellem UTF8 og UCS2 fejlede ORA-17038=Byte-array ikke lang nok ORA-17039=Tegn-array ikke lang nok ORA-17040=Underprotokol skal v\u00E6re angivet i forbindelses-URL ORA-17041=Manglende IN- eller OUT-parameter ved indeks: ORA-17042=Ugyldig batch-v\u00E6rdi ORA-17043=Ugyldig maksimal stream-st\u00F8rrelse ORA-17044=Intern fejl: Data-array ikke allokeret ORA-17045=Intern fejl: Fors\u00F8g p\u00E5 at f\u00E5 adgang til tilknytningsv\u00E6rdier, der ligger ud over batch-v\u00E6rdien ORA-17046=Intern fejl: Ugyldigt indeks for dataadgang ORA-17047=Fejl i analyse af type-descriptor ORA-17048=Ikke-defineret type ORA-17049=Inkonsistente java- og sql-objekttyper ORA-17050=dette element findes ikke i vektor ORA-17051=Dette API kan ikke bruges til ikke-UDT-typer ORA-17052=Denne reference er ugyldig ORA-17053=St\u00F8rrelsen er ugyldig ORA-17054=LOB-locator er ugyldig ORA-17055=Ugyldigt tegn m\u00F8dt i ORA-17056=Ikke underst\u00F8ttet tegn blev sat (tilf\u00F8j orai18n.jar i klassestien) ORA-17057=Lukket LOB ORA-17058=Intern fejl: Ugyldigt NLS-konverteringsforhold ORA-17059=Konvertering til intern repr\u00E6sentation fejlede ORA-17060=Konstruktion af descriptor fejlede ORA-17061=Manglende descriptor ORA-17062=Referencemark\u00F8ren er ugyldig ORA-17063=Ikke i en transaktion ORA-17064=Syntaks er ugyldig, eller databasenavn er NULL ORA-17065=Konverteringsklasse er NULL ORA-17066=Specifik implementering af adgangs-layer er p\u00E5kr\u00E6vet ORA-17067=Ugyldig Oracle URL er angivet ORA-17068=Ugyldigt argument eller ugyldige argumenter i kald ORA-17069=Brug eksplicit XA-kald ORA-17070=Datast\u00F8rrelsen overskrider maksimumst\u00F8rrelsen for denne type ORA-17071=Overskredet maks. VARRAY-gr\u00E6nse ORA-17072=Indsat v\u00E6rdi for stor til kolonne ORA-17074=ugyldigt navnem\u00F8nster ORA-17075=Ugyldig operation p\u00E5 forward only-resultats\u00E6t ORA-17076=Ugyldig operation p\u00E5 skrivebeskyttet resultats\u00E6t ORA-17077=Kunne ikke s\u00E6tte REF-v\u00E6rdi ORA-17078=Kan ikke udf\u00F8re operationen, da forbindelser allerede er \u00E5bnet ORA-17079=ID-oplysninger for bruger matcher ikke til de eksisterende oplysninger ORA-17080=ugyldig batch-kommando ORA-17081=fejl opstod under batching ORA-17082=Ingen aktuel r\u00E6kke ORA-17083=Ikke p\u00E5 den indsatte r\u00E6kke ORA-17084=Kaldt p\u00E5 den indsatte r\u00E6kke ORA-17085=V\u00E6rdikonflikter opst\u00E5r ORA-17086=Ikke-defineret kolonnev\u00E6rdi p\u00E5 den indsatte r\u00E6kke ORA-17087=Ignorerede hj\u00E6lpelinje til ydeevne: setFetchDirection() ORA-17088=Ikke-underst\u00F8ttet syntaks for anmodet resultats\u00E6ttype og niveau for samtidighed ORA-17089=intern fejl ORA-17090=operation ikke tilladt ORA-17091=Kan ikke oprette resultats\u00E6t p\u00E5 det anmodede niveau for type og/eller samtidighed ORA-17092=JDBC-s\u00E6tninger kan ikke oprettes eller udf\u00F8res i slutning af behandling af kald ORA-17093=OCI-operation returnerede OCI_SUCCESS_WITH_INFO ORA-17094=Objekttypeversion matcher ikke ORA-17095=S\u00E6tningscachest\u00F8rrelse er ikke blevet sat ORA-17096=Cache af s\u00E6tninger kan ikke aktiveres for denne logiske forbindelse. ORA-17097=Ugyldig elementtype for PL/SQL-indekstabel ORA-17098=Ugyldig tom lob-operation ORA-17099=Ugyldig array-l\u00E6ngde for PL/SQL-indekstabel ORA-17100=Ugyldigt database-Java-objekt ORA-17101=Ugyldige egenskaber i OCI-forbindelses-pool-objekt ORA-17102=BFILE er skrivebeskyttet ORA-17103=ugyldig forbindelsestype, der skal returneres via getConnection. Brug getJavaSqlConnection i stedet for ORA-17104=SQL-s\u00E6tning, der skal udf\u00F8res, kan ikke v\u00E6re tom eller NULL ORA-17105=tidszone for forbindelsessession blev ikke sat ORA-17106=ugyldig forbindelsespuljekonfiguration angivet for JDBC-OCI-driver ORA-17107=ugyldig proxy-type angivet ORA-17108=Ingen maks. l\u00E6ngde angivet i defineColumnType ORA-17109=standard-Java-tegnkodning ikke fundet ORA-17110=udf\u00F8rt med advarsel ORA-17111=Ugyldigt timeout for forbindelsescache-TTL angivet ORA-17112=Ugyldigt tr\u00E5dinterval angivet ORA-17113=V\u00E6rdi for tr\u00E5dinterval er st\u00F8rre end v\u00E6rdi for cache-timeout ORA-17114=kunne ikke bruge lokal transaktionsbekr\u00E6ftelse i en global transaktion ORA-17115=kunne ikke bruge lokal transaktionstilbagestilling i en global transaktion ORA-17116=kunne ikke aktivere automatisk bekr\u00E6ftelse i en aktiv global transaktion ORA-17117=kunne ikke s\u00E6tte sikringspunkt i en aktiv global transaktion ORA-17118=kunne ikke opn\u00E5 ID for et navngivet sikringspunkt ORA-17119=kunne ikke opn\u00E5 navn for et unavngivet sikringspunkt ORA-17120=kunne ikke s\u00E6tte et sikringspunkt med autmatisk bekr\u00E6ftelse aktiveret ORA-17121=kunne ikke tilbagestille til et sikringspunkt med autmatisk bekr\u00E6ftelse aktiveret ORA-17122=kunne ikke tilbagestille til et lokalt txn-sikringspunkt i en global transaktion ORA-17123=Ugyldig s\u00E6tningscachest\u00F8rrelse angivet ORA-17124=Ugyldigt timeout for inaktivitet i forbindelsecache angivet ORA-17125=Forkert s\u00E6tningstype blev returneret af eksplicit cache ORA-17126=Fast wait-timeout er udl\u00F8bet ORA-17127=Ugyldigt fast wait-timeout er angivet ORA-17128=SQL-streng er ikke foresp\u00F8rgsel ORA-17129=SQL-streng er ikke en DML-s\u00E6tning ORA-17132=Der blev anmodet om en ugyldig konvertering ORA-17133=UNUSED ORA-17134=L\u00E6ngden af navngivet parameter i SQL overskred 32 tegn ORA-17135=Parameternavn, der er brugt i setXXXStream, vises mere end \u00E9n gang i SQL ORA-17136=Forkert udformet DATALINK URL, pr\u00F8v getString() i stedet ORA-17137=Forbindelses-caching er ikke aktiveret, eller det er ikke en gyldig cacheaktiveret DataSource ORA-17138=Ugyldigt navn p\u00E5 forbindelsescache. Strengen skal v\u00E6re gyldig og entydig ORA-17139=Ugyldige egenskaber for forbindelsescache ORA-17140=Der findes allerede en forbindelsescache med dette cachenavn ORA-17141=Der findes ikke en forbindelsescache med dette cachenavn ORA-17142=Forbindelsescache med dette cachenavn er deaktiveret ORA-17143=Ugyldig eller for\u00E6ldet forbindelse blev fundet i forbindelsescachen ORA-17144=s\u00E6tnings-handle blev ikke udf\u00F8rt ORA-17145=Ugyldig ONS-h\u00E6ndelse blev modtaget ORA-17146=Ugyldig ONS-h\u00E6ndelsesversion blev modtaget ORA-17147=Fors\u00F8g p\u00E5 at s\u00E6tte et parameternavn, der ikke forekommer i SQL'en ORA-17148=Metode blev kun implementeret i tynd ORA-17149=Dette er allerede en proxy-session ORA-17150=Forkerte argumenter for proxy-session ORA-17151=Clob er for stor til at blive gemt i en Java-streng ORA-17152=Denne metode er kun implementeret i logiske forbindelser ORA-17153=Denne metode er kun implementeret i fysiske forbindelser ORA-17154=Kan ikke mappe Oracle-tegn til Unicode ORA-17155=Kan ikke mappe Unicode til Oracle-tegn ORA-17156=Ugyldig array-st\u00F8rrelse for slut-til-slut-metrikv\u00E6rdier ORA-17157=setString kan kun behandle strenge p\u00E5 mindre end 32766 tegn ORA-17158=varigheden er ugyldig for denne funktion ORA-17159=metrikv\u00E6rdi for slut-til-slut-tracing er for lang ORA-17160=ID-sekvensnummer for udf\u00F8relseskontekst er uden for interval ORA-17161=Ugyldig transaktionstilstand blev anvendt ORA-17162=Ikke-underst\u00F8ttet v\u00E6rdi for \"kan holdes\" ORA-17163=Kan ikke bruge getXAConnection(), n\u00E5r forbindelsescaching er aktiveret ORA-17164=Kan ikke kalde getXAResource() fra fysisk forbindelse med caching aktiveret ORA-17165=DBMS_JDBC-pakke er ikke forudindstillet i serveren for denne forbindelse ORA-17166=Kan ikke udf\u00F8re hentning i en PLSQL-s\u00E6tning ORA-17167=PKI-klasser blev ikke fundet. Hvis du vil bruge 'forbindelses/'-funktionalitet, skal oraclepki.jar v\u00E6re i klassestien ORA-17168=fandt et problem i Secret Store. Tjek, om der er en \u00E5ben wallet (cwallet.sso) p\u00E5 wallet-lokationen, og kontroll\u00E9r, at denne wallet indeholder de korrekte ID-oplysninger, ved brug af mkstore-hj\u00E6lpeprogrammet ORA-17169=Kan ikke knytte stream til et ScrollableResultSet eller UpdatableResultSet ORA-17170=Navneomr\u00E5det kan ikke v\u00E6re tomt ORA-17171=Attributl\u00E6ngden kan ikke overstige 30 tegn ORA-17172=Den p\u00E5g\u00E6ldende attributv\u00E6rdi kan ikke overstige 400 tegn ORA-17173=Ikke alle returparametre er registreret ORA-17174=CLIENTCONTEXT er det eneste navneomr\u00E5de, der underst\u00F8ttes ORA-17175=Fejl under ekstern ONS-konfiguration ORA-17200=Kan ikke konvertere XA-\u00E5bningsstreng fra Java til C korrekt ORA-17201=Kan ikke konvertere XA-lukningsstreng fra Java til C korrekt ORA-17202=Kan ikke konvertere RM-navn fra Java til C korrekt ORA-17203=Kunne ikke udf\u00F8re casting af mark\u00F8rtype til jlong ORA-17204=Input-array for kort til at indeholde OCI-handles ORA-17205=Hentning af OCISvcCtx-handle fra C-XA ved hj\u00E6lp af xaoSvcCtx fejlede ORA-17206=Hentning af OCIEnv-handle fra C-XA ved hj\u00E6lp af xaoEnv fejlede ORA-17207=tnsEntry-egenskaben blev ikke sat i DataSource ORA-17213=C-XA returnerede XAER_RMERR under xa_open ORA-17215=C-XA returnerede XAER_INVAL under xa_open ORA-17216=C-XA returnerede XAER_PROTO under xa_open ORA-17233=C-XA returnerede XAER_RMERR under xa_close ORA-17235=C-XA returnerede XAER_INVAL under xa_close ORA-17236=C-XA returnerede XAER_PROTO under xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Protokolovertr\u00E6delse ORA-17402=Kun \u00E9n RPA-meddelelse forventes ORA-17403=Kun \u00E9n RXH-meddelelse forventes ORA-17404=Modtaget flere RXD'er end forventet ORA-17405=UAC-l\u00E6ngde er ikke nul ORA-17406=Overskrider maksimale bufferl\u00E6ngde ORA-17407=ugyldig typerepr\u00E6sentation (setRep) ORA-17408=ugyldig typerepr\u00E6sentation (getRep) ORA-17409=ugyldig bufferl\u00E6ngde ORA-17410=Ikke flere data, der skal l\u00E6ses fra socket ORA-17411=Datatyperepr\u00E6sentationer matcher ikke ORA-17412=Typel\u00E6ngde st\u00F8rre end maksimum ORA-17413=Overskrider n\u00F8glest\u00F8rrelse ORA-17414=Utilstr\u00E6kkelig bufferst\u00F8rrelse til lagring af kolonnenavne ORA-17415=Denne type er ikke h\u00E5ndteret ORA-17416=FATAL ORA-17417=NLS-problem, afkodning af kolonnenavne fejlede ORA-17418=Fejl i feltl\u00E6ngden i intern struktur ORA-17419=Et ugyldigt antal kolonner returneret ORA-17420=Oracle-versionen ikke defineret ORA-17421=Typer eller forbindelse ikke defineret ORA-17422=Ugyldig klasse i factory ORA-17423=Bruger en PLSQL-blok, uden at en IOV er defineret ORA-17424=Fors\u00F8ger forskellige marshalling-operationer ORA-17425=Returnerer en stream i PLSQL-blok ORA-17426=B\u00E5de IN- og OUT-tilknytninger er NULL ORA-17427=Bruger ikke-initialiseret OAC ORA-17428=Logon skal kaldes, n\u00E5r forbindelse er oprettet ORA-17429=Skal mindst have forbindelse til server ORA-17430=Skal v\u00E6re logget p\u00E5 server ORA-17431=SQL-s\u00E6tning, der skal analyseres, er NULL ORA-17432=Ugyldige valg i all7 ORA-17433=ugyldige argumenter i kald ORA-17434=ikke i streaming-tilstand ORA-17435=ugyldigt antal in_out_binds i IOV ORA-17436=ugyldigt antal outbinds ORA-17437=Fejl i IN/OUT-argument(er) i PLSQL-blok? ORA-17438=Intern - Uventet v\u00E6rdi ORA-17439=Ugyldig SQL-type ORA-17440=DBItem/DBType er NULL ORA-17441=Ikke-underst\u00F8ttet Oracle-version. Den tidligste version, der underst\u00F8ttes, er 7.2.3. ORA-17442=V\u00E6rdien for Refcursor er ugyldig ORA-17443=NULL-bruger eller -adgangskode underst\u00F8ttes ikke i THIN-driver ORA-17444=TTC-protokolversion modtaget fra server underst\u00F8ttes ikke ORA-17445=LOB er allerede \u00E5bnet i den samme transaktion ORA-17446=LOB er allerede lukket i den samme transaktion ORA-17447=OALL8 er i en inkonsistent tilstand # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_de.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Interner Fehler ORA-17002=E/A-Exception ORA-17003=Ung\u00FCltiger Spaltenindex ORA-17004=Ung\u00FCltiger Spaltentyp ORA-17005=Nicht unterst\u00FCtzter Spaltentyp ORA-17006=Ung\u00FCltiger Spaltenname ORA-17007=Ung\u00FCltige dynamische Spalte ORA-17008=Getrennte Verbindung ORA-17009=Geschlossene Anweisung ORA-17010=Geschlossene Ergebnismenge ORA-17011=Ersch\u00F6pfte Ergebnismenge ORA-17012=Konflikt bei Parametertyp ORA-17014=ResultSet.next wurde nicht aufgerufen ORA-17015=Anweisung wurde abgebrochen ORA-17016=Zeit\u00FCberschreitung bei Anweisung ORA-17017=Cursor schon initialisiert ORA-17018=Ung\u00FCltiger Cursor ORA-17019=Nur eine Abfrage kann beschrieben werden ORA-17020=Ung\u00FCltiger Abruf von Zeilen im voraus ORA-17021=Fehlende Defines ORA-17022=Fehlende Defines auf Index ORA-17023=Nicht unterst\u00FCtzte Funktion ORA-17024=Keine Daten gelesen ORA-17025=Fehler in defines.isNull () ORA-17026=Numerischer \u00DCberlauf ORA-17027=Stream wurde schon geschlossen ORA-17028=Neue Defines sind erst m\u00F6glich, wenn aktuelle ResultSet geschlossen ist ORA-17029=setReadOnly: Schreibgesch\u00FCtzte Verbindungen nicht unterst\u00FCtzt ORA-17030=READ_COMMITTED und SERIALIZABLE sind die einzig g\u00FCltigen Transaktionsebenen ORA-17031=setAutoClose: Unterst\u00FCtzt nur Auto-Close-Modus Ein ORA-17032=Abruf von Zeilen im voraus kann nicht auf Null festgelegt werden ORA-17033=SQL92-Zeichenfolge in falschem Format in Position ORA-17034=Nicht unterst\u00FCtztes SQL92-Token in Position ORA-17035=Zeichensatz nicht unterst\u00FCtzt !! ORA-17036=Exception in OracleNumber ORA-17037=Konvertierung zwischen UTF8 und UCS2 nicht erfolgreich ORA-17038=Byte-Array nicht lang genug ORA-17039=Char-Array nicht lang genug ORA-17040=Unterprotokoll mu\u00DF in Verbindungs-URL angegeben werden ORA-17041=Fehlender IN- oder OUT-Parameter auf Index: ORA-17042=Ung\u00FCltiger Stapelwert ORA-17043=Ung\u00FCltige maximale Stream-Gr\u00F6\u00DFe ORA-17044=Interner Fehler: Daten-Array nicht zugewiesen ORA-17045=Interner Fehler: Versuch, auf Bindewerte \u00FCber den Stapelwert hinaus zuzugreifen ORA-17046=Interner Fehler: Ung\u00FCltiger Index f\u00FCr Datenzugriff ORA-17047=Fehler bei Analyse von Typ-Deskriptor ORA-17048=Undefinierter Typ ORA-17049=Inkonsistente Java- und SQL-Objekttypen ORA-17050=Kein derartiges Element in Vektor ORA-17051=Diese API kann nicht f\u00FCr Nicht-UDT-Typen benutzt werden ORA-17052=Diese Ref ist nicht g\u00FCltig ORA-17053=Die Gr\u00F6\u00DFe ist nicht g\u00FCltig ORA-17054=Der LOB-Positionsanzeiger ist nicht g\u00FCltig ORA-17055=Ung\u00FCltiges Zeichen aufgetreten in ORA-17056=Nicht unterst\u00FCtzter Zeichensatz (f\u00FCgen Sie orai18n.jar in Ihrem Classpath hinzu) ORA-17057=Geschlossenes LOB ORA-17058=Interner Fehler: Ung\u00FCltige NLS-Konvertierungsrate ORA-17059=Konvertierung zu interner Darstellung nicht erfolgreich ORA-17060=Deskriptor konnte nicht erstellt werden ORA-17061=Fehlender Deskriptor ORA-17062=Ref-Cursor ist ung\u00FCltig ORA-17063=Nicht in einer Transaktion ORA-17064=Ung\u00FCltige Syntax oder Datenbankname ist null ORA-17065=Konvertierungsklasse ist null ORA-17066=Zugriffsebenen-spezifische Implementierung erforderlich ORA-17067=Ung\u00FCltiger Oracle-URL angegeben ORA-17068=Ung\u00FCltige Argumente in Aufruf ORA-17069=Expliziten XA-Aufruf verwenden ORA-17070=Datengr\u00F6\u00DFe gr\u00F6\u00DFer als max. Gr\u00F6\u00DFe f\u00FCr diesen Typ ORA-17071=Maximaler VARRAY-Grenzwert \u00FCberschritten ORA-17072=Zu gro\u00DFer Wert f\u00FCr Spalte eingef\u00FCgt ORA-17074=Ung\u00FCltiges Namensmuster ORA-17075=Ung\u00FCltiger Vorgang bei Nur-Weiterleiten-Ergebnismenge ORA-17076=Ung\u00FCltiger Vorgang bei schreibgesch\u00FCtzter Ergebnismenge ORA-17077=REF-Wert konnte nicht festgelegt werden ORA-17078=Vorgang kann nicht durchgef\u00FChrt werden, da schon Verbindungen ge\u00F6ffnet sind ORA-17079=Benutzer-ID-Daten stimmen nicht mit bestehenden ID-Daten \u00FCberein ORA-17080=Ung\u00FCltiger Stapelbefehl ORA-17081=Fehler bei Stapelverarbeitung aufgetreten ORA-17082=Keine aktuelle Zeile ORA-17083=Nicht auf der Einf\u00FCgenzeile ORA-17084=Auf der Einf\u00FCgenzeile aufgerufen ORA-17085=Wertkonflikte treten auf ORA-17086=Undefinierter Spaltenwert auf Einf\u00FCgenzeile ORA-17087=Leistungshinweis ignoriert: setFetchDirection() ORA-17088=Nicht unterst\u00FCtzte Syntax f\u00FCr angeforderten Ergebnismengentyp und Ebene des gleichzeitigen Zugriffs ORA-17089=Interner Fehler ORA-17090=Vorgang nicht zul\u00E4ssig ORA-17091=Ergebnismenge mit angefordertem Typ und/oder angeforderter Ebene des gleichzeitigen Zugriffs kann nicht erstellt werden ORA-17092=JDBC-Anweisungen k\u00F6nnen nicht erstellt oder am Ende der Aufrufverarbeitung ausgef\u00FChrt werden. ORA-17093=OCI-Vorgang hat OCI_SUCCESS_WITH_INFO zur\u00FCckgegeben ORA-17094=Nicht \u00FCbereinstimmende Objekttyp-Version ORA-17095=Gr\u00F6\u00DFe von Anweisungs-Cache wurde nicht festgelegt ORA-17096=Anweisungs-Caching kann f\u00FCr diese logische Verbindung nicht aktiviert werden. ORA-17097=Ung\u00FCltiger PL/SQL-Indextabellen-Elementtyp ORA-17098=Ung\u00FCltiger leerer LOB-Vorgang ORA-17099=Ung\u00FCltige Array-L\u00E4nge bei PL/SQL-Indextabelle ORA-17100=Ung\u00FCltiges Java-Datenbankobjekt ORA-17101=Ung\u00FCltige Attribute in Objekt von OCI-Connection Pool ORA-17102=Bfile ist schreibgesch\u00FCtzt ORA-17103=Ung\u00FCltige Verbindungsart zur R\u00FCckgabe \u00FCber getConnection. Verwenden Sie stattdessen getJavaSqlConnection ORA-17104=SQL-Anweisung zur Ausf\u00FChrung darf nicht leer oder null sein ORA-17105=Zeitzone f\u00FCr Verbindungs-Session nicht festgelegt ORA-17106=Ung\u00FCltige Connection Pool-Konfiguratin des JDBC-OCI-Treibers angegeben ORA-17107=Ung\u00FCltiger Proxy-Typ angegeben ORA-17108=Keine max. L\u00E4nge in defineColumnType angegeben ORA-17109=Java-Standardzeichen-Codierung nicht gefunden ORA-17110=Ausf\u00FChrung mit Warnung abgeschlossen ORA-17111=Ung\u00FCltige TTL-Zeit\u00FCberschreitung bei Verbindungs-Cache angegeben ORA-17112=Ung\u00FCltiges Thread-Intervall angegeben ORA-17113=Wert von Thread-Intervall ist gr\u00F6\u00DFer als Cache-Zeit\u00FCberschreitungswert ORA-17114=Lokales Transaktions-Commit konnte in einer globalen Transaktion nicht benutzt werden ORA-17115=Lokales Transaktions-Rollback konnte in einer globalen Transaktion nicht benutzt werden ORA-17116=Auto-Commit konnte in einer aktiven globalen Transaktion nicht eingeschaltet werden ORA-17117=Savepoint konnte in einer aktiven globalen Transaktion nicht gesetzt werden ORA-17118=ID f\u00FCr einen benannten Savepoint ORA-17119=Name f\u00FCr einen unbenannten Savepoint konnte nicht abgerufen werden ORA-17120=Ein Savepoint konnte bei eingeschaltetem Auto-Commit nicht gesetzt werden. ORA-17121=Rollback zu einem Savepoint bei eingeschaltetem Auto-Commit nicht m\u00F6glich ORA-17122=Rollback zu einem lokalen Txn-Savepoint in einer globalen Transaktion nicht m\u00F6glich ORA-17123=Ung\u00FCltige Gr\u00F6\u00DFe von Anweisungs-Cache angegeben ORA-17124=Ung\u00FCltige Inaktivit\u00E4ts-Zeit\u00FCberschreitung f\u00FCr Verbindungs-Cache angegeben ORA-17125=Falscher Anweisungstyp vom explizitem Cache zur\u00FCckgegeben ORA-17126=Fixed Wait-Timeout abgelaufen ORA-17127=Ung\u00FCltiger Fixed Wait-Timeout angegeben ORA-17128=SQL-Zeichenfolge ist keine Abfrage ORA-17129=SQL-Zeichenfolge ist keine DML-Anweisung ORA-17132=Ung\u00FCltige Konvertierung angefordert ORA-17133=UNUSED ORA-17134=L\u00E4nge von benanntem Parameter in SQL hat 32 Zeichen \u00FCberschritten ORA-17135=Parametername, der in setXXXStream benutzt wird, tritt mehr als einmal in SQL auf ORA-17136=DATALINK URL mit falschem Format, versuchen Sie stattdessen getString() ORA-17137=Verbindungs-Caching nicht aktiviert oder keine g\u00FCltige cache-f\u00E4hige Datenquelle ORA-17138=Ung\u00FCltiger Name von Verbindungs-Cache. Muss eine g\u00FCltige und eindeutige Zeichenfolge sein ORA-17139=Ung\u00FCltige Attribute von Verbindungs-Cache ORA-17140=Verbindungs-Cache mit diesem Cache-Namen ist schon vorhanden ORA-17141=Verbindungs-Cache mit diesem Cache-Namen ist nicht vorhanden ORA-17142=Verbindungs-Cache mit diesem Cache-Namen ist deaktiviert ORA-17143=Ung\u00FCltige oder veraltete Verbindung in Verbindungs-Cache gefunden ORA-17144=Anweisungs-Handle nicht ausgef\u00FChrt ORA-17145=Ung\u00FCltiges ONS-Ereignis empfangen ORA-17146=Ung\u00FCltige ONS-Ereignisversion empfangen ORA-17147=Versuch, einen Parameternamen festzulegen, der in SQL nicht auftritt ORA-17148=Methode nur in Thin implementiert ORA-17149=Dies ist schon eine Proxy-Session ORA-17150=Falsche Argumente f\u00FCr Proxy-Session ORA-17151=Clob ist zur Speicherung in einer Java-Zeichenfolge zu gro\u00DF ORA-17152=Diese Methode ist nur in logischen Verbindungen implementiert ORA-17153=Diese Methode ist nur in physikalischen Verbindungen implementiert ORA-17154=Oracle-Zeichen kann Unicode nicht zugeordnet werden ORA-17155=Unicode kann Oracle-Zeichen nicht zugeordnet werden ORA-17156=Ung\u00FCltige Array-Gr\u00F6\u00DFe f\u00FCr Ende-zu-Ende-Metrikwerte ORA-17157=setString kann nur Strings mit weniger als 32766 Zeichen verarbeiten ORA-17158=Dauer ist f\u00FCr diese Funktion ung\u00FCltig ORA-17159=Metrikwert f\u00FCr Ende-zu-Ende-Tracing ist zu lang ORA-17160=Sequence-Nummer f\u00FCr Ausf\u00FChrungskontext-ID liegt au\u00DFerhalb des g\u00FCltigen Bereichs ORA-17161=Ung\u00FCltiger Transaction-Modus verwendet ORA-17162=Nicht unterst\u00FCtzter Holdability-Wert ORA-17163=getXAConnection() kann nicht verwendet werden, wenn Verbindungs-Caching aktiviert ist ORA-17164=getXAResource() kann nicht von physikalischer Verbindung aufgerufen werden, w\u00E4hrend Caching aktiviert ist ORA-17165=DBMS_JDBC Package im Server f\u00FCr diese Verbindung nicht voreingestellt ORA-17166=Abrufen von PLSQL-Anweisung nicht m\u00F6glich ORA-17167=PKI-Klassen nicht gefunden. Um die \"connect/\"-Funktion verwenden zu k\u00F6nnen, muss sich ORACLEPKI.JAR im Classpath befinden ORA-17168=ein Problem mit Secret Store aufgetreten. \u00DCberpr\u00FCfen Sie, ob im Wallet-Speicherort ein offenes Wallet (cwallet.sso) vorhanden ist, und stellen Sie \u00FCber das Utility \"mkstore\" sicher, dass dieses Wallet die richtigen ID-Daten enth\u00E4lt ORA-17169=Stream kann nicht an ScrollableResultSet oder UpdatableResultSet gebunden werden ORA-17170=Namespace kann nicht leer sein ORA-17171=Die Attributl\u00E4nge darf 30 Zeichen nicht \u00FCberschreiten ORA-17172=Der Wert des Attributs darf 400 Zeichen nicht \u00FCberschreiten ORA-17173=Nicht alle Return-Parameter registriert ORA-17174=Es wird nur der Namespace CLIENTCONTEXT unterst\u00FCtzt ORA-17175=Fehler bei der ONS-Remote-Konfiguration ORA-17200=Zeichenfolge f\u00FCr \u00D6ffnen von XA kann nicht richtig von Java in C konvertiert werden ORA-17201=Zeichenfolge f\u00FCr Schlie\u00DFen von XA kann nicht richtig von Java in C konvertiert werden ORA-17202=RM-Name kann nicht richtig von Java in C konvertiert werden ORA-17203=Summierungs-Pointer-Typ konnte nicht in jlong konvertiert werden ORA-17204=Eingabe-Array zu kurz zur Aufnahme von OCI-Handles ORA-17205=OCISvcCtx-Handle konnte nicht aus C-XA mit xaoSvcCtx abgerufen werden ORA-17206=OCIEnv-Handle konnte nicht aus C-XA mit xaoEnv abgerufen werden ORA-17207=Das Attribut tnsEntry wurde in DataSource nicht festgelegt ORA-17213=C-XA hat XAER_RMERR w\u00E4hrend xa_open zur\u00FCckgegeben ORA-17215=C-XA hat XAER_INVAL w\u00E4hrend xa_open zur\u00FCckgegeben ORA-17216=C-XA hat XAER_PROTO w\u00E4hrend xa_open zur\u00FCckgegeben ORA-17233=C-XA hat XAER_RMERR w\u00E4hrend xa_close zur\u00FCckgegeben ORA-17235=C-XA hat XAER_INVAL w\u00E4hrend xa_close zur\u00FCckgegeben ORA-17236=C-XA hat XAER_PROTO w\u00E4hrend xa_close zur\u00FCckgegeben # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Protokollverletzung ORA-17402=Nur eine RPA-Meldung wird erwartet ORA-17403=Nur eine RXH-Meldung wird erwartet ORA-17404=Mehr RXDs empfangen als erwartet ORA-17405=UAC-L\u00E4nge ist nicht null ORA-17406=Maximale Pufferl\u00E4nge wird \u00FCberschritten ORA-17407=Ung\u00FCltige Typdarstellung(setRep) ORA-17408=Ung\u00FCltige Typdarstellung(getRep) ORA-17409=Ung\u00FCltige Pufferl\u00E4nge ORA-17410=Keine weiteren Daten aus Socket zu lesen ORA-17411=Datentypdarstellungen stimmen nicht \u00FCberein ORA-17412=Typl\u00E4nge gr\u00F6\u00DFer als H\u00F6chstwert ORA-17413=Schl\u00FCsselgr\u00F6\u00DFe wird \u00FCberschritten ORA-17414=Nicht ausreichende Puffergr\u00F6\u00DFe zum Speichern von Spaltennamen ORA-17415=Dieser Typ wurde nicht verarbeitet ORA-17416=FATAL ORA-17417=NLS-Problem, Spaltennamen konnten nicht entschl\u00FCsselt werden ORA-17418=Fehler bei Feldl\u00E4nge von interner Struktur ORA-17419=Ung\u00FCltige Anzahl von Spalten zur\u00FCckgegeben ORA-17420=Oracle-Version nicht definiert ORA-17421=Typen oder Verbindung nicht definiert ORA-17422=Ung\u00FCltige Klasse in Factory ORA-17423=PLSQL-Block ohne Definition von IOV benutzt ORA-17424=Anderer Marshaling-Vorgang wird versucht ORA-17425=Stream wird in PLSQL-Block zur\u00FCckgegeben ORA-17426=Sowohl IN- als auch OUT-Bindevorg\u00E4nge sind NULL ORA-17427=Nicht initialisierter OAC benutzt ORA-17428=Anmeldung mu\u00DF nach Verbindung aufgerufen werden ORA-17429=Mindestens Verbindung zum Server mu\u00DF hergestellt sein ORA-17430=Anmeldung beim Server mu\u00DF erfolgt sein ORA-17431=Zu analysierende SQL-Anweisung ist null ORA-17432=Ung\u00FCltige Optionen in all7 ORA-17433=Ung\u00FCltige Argumente in Aufruf ORA-17434=Nicht in Streaming-Modus ORA-17435=Ung\u00FCltige Anzahl von in_out_binds in IOV ORA-17436=Ung\u00FCltige Anzahl von Out-Bindevorg\u00E4ngen ORA-17437=Fehler in IN/OUT-Argument(en) von PLSQL-Block ORA-17438=Intern - Unerwarteter Wert ORA-17439=Ung\u00FCltiger SQL-Typ ORA-17440=DBItem/DBType ist null ORA-17441=Oracle-Version nicht unterst\u00FCtzt. Minimale unterst\u00FCtzte Version ist 7.2.3. ORA-17442=Wert von Ref-Cursor ist ung\u00FCltig ORA-17443=Keine Benutzer- oder Kennwortangabe in THIN-Treiber nicht unterst\u00FCtzt ORA-17444=Vom Server empfangene TTC-Protokollversion nicht unterst\u00FCtzt ORA-17445=Das LOB ist in derselben Transaktion bereits ge\u00F6ffnet ORA-17446=Das LOB ist in derselben Transaktion bereits geschlossen ORA-17447=OALL8 befindet sich in einem inkonsistenten Status # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_el.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1 ORA-17002=\u0395\u03BE\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u0395\u0395 ORA-17003=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03B5\u03C5\u03C1\u03B5\u03C4\u03AE\u03C1\u03B9\u03BF \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 ORA-17004=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 ORA-17005=\u039C\u03B7 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03BF\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 ORA-17006=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 ORA-17007=M\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B4\u03C5\u03BD\u03B1\u03BC\u03B9\u03BA\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7 ORA-17008=\u0397 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03AD\u03BA\u03BB\u03B5\u03B9\u03C3\u03B5 ORA-17009=\u0397 \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 \u03AD\u03BA\u03BB\u03B5\u03B9\u03C3\u03B5 ORA-17010=\u03A4\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD \u03AD\u03BA\u03BB\u03B5\u03B9\u03C3\u03B5 ORA-17011=\u03A4\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD \u03B5\u03BE\u03B1\u03BD\u03C4\u03BB\u03AE\u03B8\u03B7\u03BA\u03B5 ORA-17012=\u0394\u03B9\u03AD\u03BD\u03B5\u03BE\u03B7 \u03C4\u03CD\u03C0\u03C9\u03BD \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03C4\u03C1\u03C9\u03BD ORA-17014=\u0394\u03B5\u03BD \u03AD\u03B3\u03B9\u03BD\u03B5 \u03BA\u03BB\u03AE\u03C3\u03B7 \u03C3\u03C4\u03BF ResultSet.next ORA-17015=\u0397 \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 ORA-17016=\u03A5\u03C0\u03AD\u03C1\u03B2\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BF\u03C1\u03AF\u03BF\u03C5 \u03C4\u03B7\u03C2 \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7\u03C2 ORA-17017=O Cursor \u03AD\u03C7\u03B5\u03B9 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03AE\u03B4\u03B7 ORA-17018=M\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 cursor ORA-17019=\u0395\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03BC\u03CC\u03BD\u03BF \u03B7 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 \u03B5\u03C1\u03C9\u03C4\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 ORA-17020=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03C0\u03C1\u03BF-\u03C0\u03C1\u03BF\u03C3\u03BA\u03CC\u03BC\u03B9\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 ORA-17021=\u039F\u03C1\u03B9\u03C3\u03BC\u03BF\u03AF \u03C0\u03BF\u03C5 \u03BB\u03B5\u03AF\u03C0\u03BF\u03C5\u03BD ORA-17022=\u039B\u03B5\u03AF\u03C0\u03BF\u03C5\u03BD \u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03AF \u03B1\u03C0\u03CC \u03C4\u03BF \u03B5\u03C5\u03C1\u03B5\u03C4\u03AE\u03C1\u03B9\u03BF ORA-17023=\u039C\u03B7 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03B7 \u03B4\u03C5\u03BD\u03B1\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1 ORA-17024=\u0394\u03B5\u03BD \u03AD\u03B3\u03B9\u03BD\u03B5 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD ORA-17025=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03C3\u03C4\u03BF defines.isNull () ORA-17026=\u0391\u03C1\u03B9\u03B8\u03BC\u03B7\u03C4\u03B9\u03BA\u03AE \u03C5\u03C0\u03B5\u03C1\u03C7\u03B5\u03AF\u03BB\u03B9\u03C3\u03B7 ORA-17027=\u03A4\u03BF stream \u03AD\u03C7\u03B5\u03B9 \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03B9 \u03AE\u03B4\u03B7 ORA-17028=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03BD\u03AD\u03C9\u03BD \u03BF\u03C1\u03B9\u03C3\u03BC\u03CE\u03BD \u03BC\u03AD\u03C7\u03C1\u03B9 \u03BD\u03B1 \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03B9 \u03C4\u03BF \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD ORA-17029=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03BC\u03CC\u03BD\u03BF \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7\u03C2: \u0394\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2 \u03BC\u03CC\u03BD\u03BF \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7\u03C2 ORA-17030=\u03A4\u03B1 \u03BC\u03CC\u03BD\u03B1 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AC \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03B1 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 READ_COMMITTED \u03BA\u03B1\u03B9 SERIALIZABLE ORA-17031=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF\u03C5 \u03BA\u03BB\u03B5\u03B9\u03C3\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2: \u03A5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03B7 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03C1\u03CC\u03C0\u03BF\u03C5 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF\u03C5 \u03BA\u03BB\u03B5\u03B9\u03C3\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2 ORA-17032=\u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03CC \u03BD\u03B1 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF-\u03C0\u03C1\u03BF\u03C3\u03BA\u03CC\u03BC\u03B9\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03B7 \u03C4\u03B9\u03BC\u03AE \u03BC\u03B7\u03B4\u03AD\u03BD ORA-17033=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03B1\u03BB\u03C6\u03B1\u03C1\u03B9\u03B8\u03BC\u03B7\u03C4\u03B9\u03BA\u03CC SQL92 \u03C3\u03C4\u03B7 \u03B8\u03AD\u03C3\u03B7 ORA-17034=\u039C\u03B7 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03CD\u03BC\u03B2\u03BF\u03BB\u03BF SQL92 \u03C3\u03C4\u03B7 \u03B8\u03AD\u03C3\u03B7 ORA-17035=\u0394\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C3\u03B5\u03C4 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD !! ORA-17036=\u03B5\u03BE\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC Oracle ORA-17037=\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE\u03C2 \u03C4\u03BF\u03C5 UTF8 \u03C3\u03B5 UCS2 \u03AE \u03C4\u03BF\u03C5 UCS2 \u03C3\u03B5 UTF8 ORA-17038=\u0397 \u03BC\u03AE\u03C4\u03C1\u03B1 \u03C4\u03C9\u03BD Bytes \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B1\u03C1\u03BA\u03B5\u03C4\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 ORA-17039=\u0397 \u03BC\u03AE\u03C4\u03C1\u03B1 \u03C4\u03CD\u03C0\u03BF\u03C5 Char \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B1\u03C1\u03BA\u03B5\u03C4\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 ORA-17040=\u03A0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03C4\u03BF \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03B5\u03CD\u03BF\u03BD \u03C0\u03C1\u03C9\u03C4\u03CC\u03BA\u03BF\u03BB\u03BB\u03BF \u03C3\u03C4\u03B7 \u03B4\u03B9\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ORA-17041=\u039B\u03B5\u03AF\u03C0\u03BF\u03C5\u03BD \u03BF\u03B9 \u03C0\u03B1\u03C1\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03B9 IN \u03BA\u03B1\u03B9 OUT \u03B1\u03C0\u03CC \u03C4\u03BF \u03B5\u03C5\u03C1\u03B5\u03C4\u03AE\u03C1\u03B9\u03BF: ORA-17042=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03C4\u03B9\u03BC\u03AE \u03BC\u03B1\u03B6\u03B9\u03BA\u03AE\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 ORA-17043=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 stream ORA-17044=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1: \u0397 \u03BC\u03AE\u03C4\u03C1\u03B1 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B4\u03B5\u03C3\u03BC\u03B5\u03C5\u03C4\u03B5\u03AF ORA-17045=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1: \u03A0\u03C1\u03BF\u03C3\u03C0\u03AC\u03B8\u03B5\u03B9\u03B1 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03B4\u03B5\u03C3\u03BC\u03B5\u03C5\u03BC\u03AD\u03BD\u03B5\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2 \u03B5\u03BA\u03C4\u03CC\u03C2 \u03C4\u03B7\u03C2 \u03C4\u03B9\u03BC\u03AE\u03C2 \u03BC\u03B1\u03B6\u03B9\u03BA\u03AE\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 ORA-17046=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1: \u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03B5\u03C5\u03C1\u03B5\u03C4\u03AE\u03C1\u03B9\u03BF \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03C3\u03C0\u03AD\u03BB\u03B1\u03C3\u03B7 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD ORA-17047=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03C3\u03C4\u03B7\u03BD \u03B1\u03BD\u03AC\u03BB\u03C5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AC\u03B3\u03BF\u03BD\u03C4\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C5 ORA-17048=\u039C\u03B7 \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 ORA-17049=\u039C\u03B7 \u03C3\u03C5\u03BD\u03B5\u03C0\u03B5\u03AF\u03C2 \u03C4\u03CD\u03C0\u03BF\u03B9 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03C9\u03BD java \u03BA\u03B1\u03B9 sql ORA-17050=\u03B4\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C4\u03AD\u03C4\u03BF\u03B9\u03BF \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF \u03C3\u03C4\u03BF \u03B4\u03B9\u03AC\u03BD\u03C5\u03C3\u03BC\u03B1 ORA-17051=\u0391\u03C5\u03C4\u03CC \u03C4\u03BF API \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B3\u03B9\u03B1 \u03C4\u03CD\u03C0\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 UDT ORA-17052=\u0391\u03C5\u03C4\u03AE \u03B7 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE ORA-17053=\u03A4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC ORA-17054=\u039F \u03C0\u03B1\u03C1\u03AC\u03B3\u03BF\u03BD\u03C4\u03B1\u03C2 \u03B5\u03BD\u03C4\u03BF\u03C0\u03B9\u03C3\u03BC\u03BF\u03CD LOB \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 ORA-17055=\u0392\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1\u03C2 \u03C3\u03C4\u03BF ORA-17056=\u03A4\u03BF \u03C3\u03B5\u03C4 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD \u03B4\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 (\u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03C4\u03B5 \u03C4\u03BF orai18n.jar \u03C3\u03C4\u03B7 \u03B4\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE \u03C4\u03B7\u03C2 \u03BA\u03BB\u03AC\u03C3\u03B7\u03C2) ORA-17057=\u03A4\u03BF LOB \u03AD\u03BA\u03BB\u03B5\u03B9\u03C3\u03B5 ORA-17058=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1: \u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C3\u03C5\u03BD\u03C4\u03B5\u03BB\u03B5\u03C3\u03C4\u03AE\u03C2 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE\u03C2 NLS ORA-17059=\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03AE \u03B1\u03BD\u03B1\u03C0\u03B1\u03C1\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 ORA-17060=\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AC\u03B3\u03BF\u03BD\u03C4\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 ORA-17061=\u039B\u03B5\u03AF\u03C0\u03B5\u03B9 \u03BF \u03C0\u03B1\u03C1\u03AC\u03B3\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 ORA-17062=\u039F cursor \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 ORA-17063=\u0394\u03B5\u03BD \u03B1\u03BD\u03AE\u03BA\u03B5\u03B9 \u03C3\u03B5 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE ORA-17064=\u0395\u03AF\u03C4\u03B5 \u03B7 \u03C3\u03CD\u03BD\u03C4\u03B1\u03BE\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B5\u03AF\u03C4\u03B5 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03B2\u03AC\u03C3\u03B7\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 null ORA-17065=\u0397 \u03BA\u03BB\u03AC\u03C3\u03B7 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 null ORA-17066=\u03A7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B5\u03B9\u03B4\u03B9\u03BA\u03AE \u03C5\u03BB\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 ORA-17067=\u03A0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B4\u03B9\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1\u03C2 Oracle ORA-17068=\u03A5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03AD\u03BD\u03B1 \u03AE \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AC \u03BF\u03C1\u03AF\u03C3\u03BC\u03B1\u03C4\u03B1 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BB\u03AE\u03C3\u03B7 ORA-17069=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C1\u03B7\u03C4\u03AE\u03C2 \u03BA\u03BB\u03AE\u03C3\u03B7\u03C2 XA ORA-17070=\u03A4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BD \u03C4\u03BF \u03C4\u03CD\u03C0\u03BF ORA-17071=\u039E\u03B5\u03C0\u03B5\u03C1\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03CC\u03C1\u03B9\u03BF VARRAY ORA-17072=\u0388\u03B3\u03B9\u03BD\u03B5 \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C4\u03B9\u03BC\u03AE\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B5\u03B3\u03AC\u03BB\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03C4\u03AE\u03BB\u03B7 ORA-17074=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 ORA-17075=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B3\u03B9\u03B1 \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03CE\u03B8\u03B7\u03C3\u03B7 \u03BC\u03CC\u03BD\u03BF ORA-17076=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B3\u03B9\u03B1 \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03BC\u03CC\u03BD\u03BF ORA-17077=\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD \u03C4\u03B7\u03C2 \u03C4\u03B9\u03BC\u03AE\u03C2 REF ORA-17078=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03B5\u03C0\u03B5\u03B9\u03B4\u03AE \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AE\u03B4\u03B7 \u03B1\u03BD\u03BF\u03B9\u03BA\u03C4\u03AD\u03C2 ORA-17079=\u03A4\u03B1 \u03B4\u03B9\u03B1\u03C0\u03B9\u03C3\u03C4\u03B5\u03C5\u03C4\u03AE\u03C1\u03B9\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03B4\u03B5\u03BD \u03C3\u03C5\u03BC\u03C6\u03C9\u03BD\u03BF\u03CD\u03BD \u03BC\u03B5 \u03C4\u03B1 \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03BD\u03C4\u03B1 ORA-17080=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE \u03BC\u03B1\u03B6\u03B9\u03BA\u03AE\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 ORA-17081=\u03C0\u03C1\u03BF\u03AD\u03BA\u03C5\u03C8\u03B5 \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7 \u03B4\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B1 \u03C4\u03B7\u03C2 \u03BC\u03B1\u03B6\u03B9\u03BA\u03AE\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 ORA-17082=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE ORA-17083=\u0394\u03B5\u03BD \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7\u03BD \u03B5\u03B9\u03C3\u03B1\u03B3\u03CC\u03BC\u03B5\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE ORA-17084=\u0388\u03B3\u03B9\u03BD\u03B5 \u03BA\u03BB\u03AE\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 ORA-17085=\u03A0\u03C1\u03BF\u03BA\u03CD\u03C0\u03C4\u03BF\u03C5\u03BD \u03B4\u03B9\u03B5\u03BD\u03AD\u03BE\u03B5\u03B9\u03C2 \u03C4\u03B9\u03BC\u03CE\u03BD ORA-17086=\u039C\u03B7 \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C4\u03B9\u03BC\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 \u03C3\u03C4\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 ORA-17087=\u0397 \u03C5\u03C0\u03CC\u03B4\u03B5\u03B9\u03BE\u03B7 \u03B1\u03C0\u03CC\u03B4\u03BF\u03C3\u03B7\u03C2 \u03B1\u03B3\u03BD\u03BF\u03AE\u03B8\u03B7\u03BA\u03B5: setFetchDirection() ORA-17088=\u039C\u03B7 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03B7 \u03C3\u03CD\u03BD\u03C4\u03B1\u03BE\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03C4\u03CD\u03C0\u03BF \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03CC\u03BB\u03BF\u03C5 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C4\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03C4\u03B1\u03C5\u03C4\u03CC\u03C7\u03C1\u03BF\u03BD\u03B7\u03C2 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03C0\u03BF\u03C5 \u03B6\u03B7\u03C4\u03AE\u03B8\u03B7\u03BA\u03B5 ORA-17089=\u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1 ORA-17090=\u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B4\u03B5\u03BD \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 ORA-17091=\u0397 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03CC\u03BB\u03BF\u03C5 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03BF \u03B6\u03B7\u03C4\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03C4\u03CD\u03C0\u03BF\u03C5 \u03BA\u03B1\u03B9/\u03AE \u03C4\u03B1\u03C5\u03C4\u03CC\u03C7\u03C1\u03BF\u03BD\u03B7\u03C2 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE ORA-17092=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03AE \u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD JDBC \u03C3\u03C4\u03BF \u03C4\u03AD\u03BB\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03BA\u03BB\u03AE\u03C3\u03B5\u03C9\u03BD ORA-17093=\u0397 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 OCI \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 OCI_SUCCESS_WITH_INFO ORA-17094=\u0397 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C4\u03CD\u03C0\u03BF\u03C5 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B4\u03B5\u03BD \u03C3\u03C5\u03BC\u03C6\u03C9\u03BD\u03B5\u03AF ORA-17095=\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 ORA-17096=\u0397 \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03C0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03BB\u03BF\u03B3\u03B9\u03BA\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7. ORA-17097=M\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03B5\u03C5\u03C1\u03B5\u03C4\u03B7\u03C1\u03AF\u03BF\u03C5 PL/SQL ORA-17098=M\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BA\u03B5\u03BD\u03BF\u03CD lob ORA-17099=M\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03BC\u03AE\u03BA\u03BF\u03C2 \u03BC\u03AE\u03C4\u03C1\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03B5\u03C5\u03C1\u03B5\u03C4\u03B7\u03C1\u03AF\u03BF\u03C5 PL/SQL ORA-17100=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF Java \u03C4\u03B7\u03C2 \u0392\u0394 ORA-17101=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AD\u03C2 \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03C3\u03C4\u03BF \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 \u03C3\u03C5\u03B3\u03BA\u03AD\u03BD\u03C4\u03C1\u03C9\u03C3\u03B7\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03C9\u03BD OCI ORA-17102=\u03A4\u03BF Bfile \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 ORA-17103=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03BC\u03AD\u03C3\u03C9 getConnection. \u0391\u03BD\u03C4\u03AF \u03B1\u03C5\u03C4\u03AE\u03C2, \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 \u03C4\u03B7\u03BD getJavaSqlConnection ORA-17104=\u0397 \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 SQL \u03C0\u03C1\u03BF\u03C2 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B5\u03BD\u03AE \u03AE null ORA-17105=\u03B4\u03B5\u03BD \u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03B6\u03CE\u03BD\u03B7 \u03CE\u03C1\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03C4\u03B7\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ORA-17106=\u03AD\u03C7\u03B5\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B4\u03B9\u03B1\u03BC\u03CC\u03C1\u03C6\u03C9\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 \u03C3\u03C5\u03B3\u03BA\u03AD\u03BD\u03C4\u03C1\u03C9\u03C3\u03B7\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 \u03BF\u03B4\u03B7\u03B3\u03BF\u03CD JDBC-OCI ORA-17107=\u03C0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 \u03B5\u03BD\u03B4\u03B9\u03AC\u03BC\u03B5\u03C3\u03BF\u03C5 server ORA-17108=\u0394\u03B5\u03BD \u03BA\u03B1\u03B8\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03BC\u03AE\u03BA\u03BF\u03C2 \u03C3\u03C4\u03BF defineColumnType ORA-17109=\u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03C4\u03C5\u03C0\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD Java ORA-17110=\u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B5 \u03C0\u03C1\u03BF\u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 ORA-17111=\u03A0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE\u03C2 TTL ORA-17112=\u03A0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03B4\u03B9\u03AC\u03C3\u03C4\u03B7\u03BC\u03B1 \u03BD\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 (thread) ORA-17113=\u03A4\u03BF \u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03CC \u03B4\u03B9\u03AC\u03C3\u03C4\u03B7\u03BC\u03B1 \u03BD\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 (thread) \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03CC\u03BD\u03BF \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE\u03C2 ORA-17114=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE\u03C2 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 \u03C3\u03B5 \u03BC\u03AF\u03B1 \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03AE \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE ORA-17115=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE\u03C2 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 \u03C3\u03B5 \u03BC\u03AF\u03B1 \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03AE \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE ORA-17116=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03BC\u03B9\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03AE \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE (global transaction) ORA-17117=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03CC\u03C2 \u03BF \u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 savepoint \u03C3\u03B5 \u03BC\u03B9\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03AE \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE (global transaction) ORA-17118=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03BB\u03AE\u03C8\u03B7 \u03B1\u03BD\u03B1\u03B3\u03BD\u03C9\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD \u03B3\u03B9\u03B1 \u03AD\u03BD\u03B1 \u03BF\u03BD\u03BF\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF savepoint ORA-17119=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03BB\u03AE\u03C8\u03B7 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03AD\u03BD\u03B1 savepoint \u03C7\u03C9\u03C1\u03AF\u03C2 \u03CC\u03BD\u03BF\u03BC\u03B1 ORA-17120=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03CC\u03C2 \u03BF \u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 savepoint \u03BC\u03B5 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B7 \u03C4\u03B7\u03BD \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 ORA-17121=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 \u03C3\u03B5 savepoint \u03BC\u03B5 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B7 \u03C4\u03B7\u03BD \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 ORA-17122=\u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 \u03C3\u03B5 \u03C4\u03BF\u03C0\u03B9\u03BA\u03CC Savepoint \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03AE\u03C2 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 ORA-17123=\u0388\u03C7\u03B5\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03BA\u03C1\u03C5\u03C6\u03AE\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 ORA-17124=\u03A0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE\u03C2 \u03BA\u03C1\u03C5\u03C6\u03AE\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03C0\u03B5\u03C1\u03AF\u03C0\u03C4\u03C9\u03C3\u03B7 \u03B1\u03B4\u03C1\u03AC\u03BD\u03B5\u03B9\u03B1\u03C2 ORA-17125=\u039F \u03C4\u03CD\u03C0\u03BF\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE\u03C2 \u03C0\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03B1\u03C6\u03B5\u03AF \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C1\u03B7\u03C4\u03AE \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03BF\u03C2 ORA-17126=\u039F \u03C3\u03C4\u03B1\u03B8\u03B5\u03C1\u03CC\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03BB\u03AE\u03BE\u03B5\u03B9 ORA-17127=\u039F \u03C3\u03C4\u03B1\u03B8\u03B5\u03C1\u03CC\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE\u03C2 \u03C0\u03BF\u03C5 \u03BA\u03B1\u03B8\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 ORA-17128=\u0397 \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC SQL \u03B4\u03B5\u03BD \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF \u03B5\u03C1\u03CE\u03C4\u03B7\u03BC\u03B1 ORA-17129=\u0397 \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC SQL \u03B4\u03B5\u03BD \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 DML ORA-17132=\u0397 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C0\u03BF\u03C5 \u03B6\u03B7\u03C4\u03AE\u03B8\u03B7\u03BA\u03B5 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE ORA-17133=UNUSED ORA-17134=\u03A4\u03BF \u03BC\u03AE\u03BA\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03C4\u03C1\u03BF\u03C5 \u03C3\u03C4\u03BF\u03BD \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 SQL \u03C5\u03C0\u03B5\u03C1\u03B2\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 32 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2 ORA-17135=\u03A4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03C4\u03C1\u03BF\u03C5 \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF setXXXStream \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03BC\u03AF\u03B1 \u03C6\u03BF\u03C1\u03AC \u03C3\u03C4\u03BF\u03BD \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 SQL ORA-17136=\u0394\u03B9\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1\u03C2 DATALINK \u03BC\u03B5 \u03BB\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03BC\u03BF\u03C1\u03C6\u03AE, \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 \u03C4\u03B7 \u03C3\u03C5\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 getString() ORA-17137=\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B7 \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C4\u03B7\u03BD \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03AE \u03B7 \u03C0\u03C1\u03BF\u03AD\u03BB\u03B5\u03C5\u03C3\u03B7 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B7 \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C4\u03B7\u03BD \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 ORA-17138=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03CC\u03BD\u03BF\u03BC\u03B1 \u03BA\u03C1\u03C5\u03C6\u03AE\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7. \u03A0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03B5\u03AF \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC \u03BA\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03BF\u03BD\u03B1\u03B4\u03B9\u03BA\u03CC ORA-17139=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AD\u03C2 \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03C4\u03B7\u03C2 \u03BA\u03C1\u03C5\u03C6\u03AE\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 ORA-17140=\u03A5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03AE\u03B4\u03B7 \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 ORA-17141=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 ORA-17142=\u0397 \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B7 ORA-17143=\u0392\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AC \u03AE \u03C0\u03B1\u03BB\u03B1\u03B9\u03AC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03C3\u03C4\u03B7\u03BD \u03BA\u03C1\u03C5\u03C6\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 ORA-17144=\u03BF \u03C0\u03B1\u03C1\u03AC\u03B3\u03BF\u03BD\u03C4\u03B1\u03C2 \u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03C3\u03C4\u03B5\u03AF ORA-17145=\u039B\u03AE\u03C8\u03B7 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03BF\u03CD \u03C3\u03C5\u03BC\u03B2\u03AC\u03BD\u03C4\u03BF\u03C2 ONS ORA-17146=\u039B\u03AE\u03C8\u03B7 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE\u03C2 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7\u03C2 \u03C3\u03C5\u03BC\u03B2\u03AC\u03BD\u03C4\u03BF\u03C2 ONS ORA-17147=\u0391\u03C0\u03CC\u03C0\u03B5\u03B9\u03C1\u03B1 \u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03C4\u03C1\u03BF\u03C5 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF\u03BD \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 SQL ORA-17148=\u0397 \u03BC\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03CC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03AF\u03C0\u03C4\u03C9\u03C3\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03B4\u03C5\u03BD\u03B1\u03C4\u03BF\u03C4\u03AE\u03C4\u03C9\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ORA-17149=\u0391\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03C4\u03BF\u03C5 \u03B5\u03BD\u03B4\u03B9\u03AC\u03BC\u03B5\u03C3\u03BF\u03C5 server ORA-17150=\u039B\u03B1\u03BD\u03B8\u03B1\u03C3\u03BC\u03AD\u03BD\u03B1 \u03BF\u03C1\u03AF\u03C3\u03BC\u03B1\u03C4\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03AF\u03BF\u03B4\u03BF \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03C4\u03BF\u03C5 \u03B5\u03BD\u03B4\u03B9\u03AC\u03BC\u03B5\u03C3\u03BF\u03C5 server ORA-17151=\u03A4\u03BF \u03B1\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF clob \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03C4\u03B5\u03AF \u03C3\u03C4\u03B7 \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC Java ORA-17152=\u0397 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B7 \u03BC\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03CC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03AF\u03C0\u03C4\u03C9\u03C3\u03B7 \u03BB\u03BF\u03B3\u03B9\u03BA\u03AE\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ORA-17153=\u0397 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B7 \u03BC\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03CC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03AF\u03C0\u03C4\u03C9\u03C3\u03B7 \u03C6\u03C5\u03C3\u03B9\u03BA\u03AE\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ORA-17154=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B1\u03BD\u03C4\u03B9\u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1 Oracle \u03C3\u03B5 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1 Unicode ORA-17155=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B1\u03BD\u03C4\u03B9\u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1 Unicode \u03C3\u03B5 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1 Oracle ORA-17156=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03B3\u03B9\u03B1 End-to-End \u03C4\u03B9\u03BC\u03AD\u03C2 \u03BC\u03AD\u03C4\u03C1\u03B7\u03C3\u03B7\u03C2 ORA-17157=\u03B7 \u03BC\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 setString \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03B5\u03AF \u03BC\u03CC\u03BD\u03BF \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AD\u03C2 \u03BC\u03B5 \u03BC\u03AE\u03BA\u03BF\u03C2 \u03BC\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03BF \u03B1\u03C0\u03CC 32766 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2 ORA-17158=\u03B7 \u03B4\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B1 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03C3\u03C5\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 ORA-17159=\u03C4\u03BF \u03BC\u03AE\u03BA\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C4\u03B9\u03BC\u03AE\u03C2 \u03BC\u03AD\u03C4\u03C1\u03B7\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD end-to-end \u03B1\u03BD\u03AF\u03C7\u03BD\u03B5\u03C5\u03C3\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03B5\u03C1\u03B2\u03BF\u03BB\u03B9\u03BA\u03AC \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF ORA-17160=\u03BF \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03BA\u03BF\u03BB\u03BF\u03C5\u03B8\u03AF\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03B1\u03BD\u03B1\u03B3\u03BD\u03C9\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC \u03C4\u03BF\u03C5 context \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03B5\u03BA\u03C4\u03CC\u03C2 \u03C4\u03BF\u03C5 \u03B5\u03CD\u03C1\u03BF\u03C5\u03C2 \u03C4\u03B9\u03BC\u03CE\u03BD ORA-17161=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE\u03C2 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2. ORA-17162=\u039C\u03B7 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03B7 \u03C4\u03B9\u03BC\u03AE \"holdability\" ORA-17163=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 getXAConnection() \u03CC\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B7 \u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BA\u03B1\u03C4\u03B1\u03C7\u03CE\u03C1\u03B9\u03C3\u03B7\u03C2 \u03C3\u03C4\u03B7 \u03BC\u03BD\u03AE\u03BC\u03B7 cache \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 ORA-17164=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03BA\u03BB\u03AE\u03C3\u03B7 \u03C4\u03BF\u03C5 getXAResource() \u03B1\u03C0\u03CC \u03C6\u03C5\u03C3\u03B9\u03BA\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B7 \u03C4\u03B7\u03BD \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C4\u03B7 \u03BC\u03BD\u03AE\u03BC\u03B7 cache ORA-17165=\u03A4\u03BF \u03C0\u03B1\u03BA\u03AD\u03C4\u03BF DBMS_JDBC \u03B4\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C3\u03C4\u03BF server \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 ORA-17166=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03B1\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03BC\u03B9\u03B1 \u03B4\u03AE\u03BB\u03C9\u03C3\u03B7 PLSQL ORA-17167=\u0394\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD \u03BA\u03BB\u03AC\u03C3\u03B5\u03B9\u03C2 PKI. \u0393\u03B9\u03B1 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2, \u03C4\u03BF oraclepki.jar \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7 \u03B4\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE \u03BA\u03BB\u03AC\u03C3\u03B7\u03C2 ORA-17168=\u03A0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C0\u03C1\u03CC\u03B2\u03BB\u03B7\u03BC\u03B1 \u03BC\u03B5 \u03C4\u03BF Secret Store. \u0395\u03BB\u03AD\u03B3\u03BE\u03C4\u03B5 \u03B1\u03BD \u03C3\u03C4\u03B7\u03BD \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u03C4\u03BF\u03C5 \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03BF\u03CD \u03C0\u03BF\u03C1\u03C4\u03BF\u03C6\u03BF\u03BB\u03B9\u03BF\u03CD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03B1\u03BD\u03BF\u03B9\u03BA\u03C4\u03CC \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03CC \u03C0\u03BF\u03C1\u03C4\u03BF\u03C6\u03CC\u03BB\u03B9 (cwallet.sso) \u03BA\u03B1\u03B9 \u03B2\u03B5\u03B2\u03B1\u03B9\u03C9\u03B8\u03B5\u03AF\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C8\u03B7\u03C6\u03B9\u03B1\u03BA\u03CC \u03C0\u03BF\u03C1\u03C4\u03BF\u03C6\u03CC\u03BB\u03B9 \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03C3\u03C9\u03C3\u03C4\u03AD\u03C2 \u03C0\u03B9\u03C3\u03C4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03CE\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF \u03B2\u03BF\u03B7\u03B8\u03B7\u03C4\u03B9\u03BA\u03CC \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 mkstore ORA-17169=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B4\u03AD\u03C3\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C1\u03BF\u03AE\u03C2 \u03C3\u03B5 \u03AD\u03BD\u03B1 ScrollableResultSet \u03AE UpdatableResultSet ORA-17170=\u03A4\u03BF \u03B4\u03B9\u03AC\u03C3\u03C4\u03B7\u03BC\u03B1 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B5\u03BD\u03CC ORA-17171=\u03A4\u03BF \u03BC\u03AE\u03BA\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03C4\u03C1\u03BF\u03C5 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C5\u03C0\u03B5\u03C1\u03B2\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 30 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2 ORA-17172=\u0397 \u03C4\u03B9\u03BC\u03AE \u03C4\u03B7\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03C4\u03C1\u03BF\u03C5 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C5\u03C0\u03B5\u03C1\u03B2\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 400 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2 ORA-17173=\u0394\u03B5\u03BD \u03AD\u03C7\u03BF\u03C5\u03BD \u03BA\u03B1\u03C4\u03B1\u03C7\u03C9\u03C1\u03B7\u03B8\u03B5\u03AF \u03CC\u03BB\u03B5\u03C2 \u03BF\u03B9 \u03C0\u03B1\u03C1\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03B9 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE\u03C2 ORA-17174=\u039F \u03BC\u03CC\u03BD\u03BF\u03C2 \u03C7\u03CE\u03C1\u03BF\u03C2 \u03BF\u03BD\u03BF\u03BC\u03AC\u03C4\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BF CLIENTCONTEXT ORA-17175=\u03A0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B1\u03C0\u03BF\u03BC\u03B1\u03BA\u03C1\u03C5\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B4\u03B9\u03B1\u03BC\u03CC\u03C1\u03C6\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 ONS. ORA-17200=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B7 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C4\u03B7\u03C2 \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03B1\u03BD\u03BF\u03AF\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2 XA \u03B1\u03C0\u03CC Java \u03C3\u03B5 C ORA-17201=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B7 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C4\u03B7\u03C2 \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03BB\u03B5\u03B9\u03C3\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2 XA \u03B1\u03C0\u03CC Java \u03C3\u03B5 C ORA-17202=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B7 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C4\u03BF\u03C5 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 RM \u03B1\u03C0\u03CC Java \u03C3\u03B5 C ORA-17203=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE (casting) \u03C4\u03BF\u03C5 \u03C4\u03CD\u03C0\u03BF\u03C5 \u03B4\u03B5\u03AF\u03BA\u03C4\u03B7 \u03C3\u03B5 jlong ORA-17204=\u0397 \u03BC\u03AE\u03C4\u03C1\u03B1 \u03B5\u03B9\u03C3\u03CC\u03B4\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B9\u03BA\u03C1\u03AE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BB\u03AC\u03B2\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B4\u03B5\u03AF\u03BA\u03C4\u03B5\u03C2 \u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD OCI ORA-17205=\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03C3\u03C4\u03B7 \u03BB\u03AE\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03B4\u03B5\u03AF\u03BA\u03C4\u03B7 \u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD OCISvcCtx \u03B1\u03C0\u03CC C-XA \u03BC\u03B5 \u03C7\u03C1\u03AE\u03C3\u03B7 xaoSvcCtx ORA-17206=\u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03C3\u03C4\u03B7 \u03BB\u03AE\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03B4\u03B5\u03AF\u03BA\u03C4\u03B7 \u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD OCIEnv \u03B1\u03C0\u03CC C-XA \u03BC\u03B5 \u03C7\u03C1\u03AE\u03C3\u03B7 xaoEnv ORA-17207=\u0397 \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 tnsEntry \u03B4\u03B5\u03BD \u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C3\u03C4\u03BF DataSource ORA-17213=C-XA \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 XAER_RMERR \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD xa_open ORA-17215=C-XA \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 XAER_INVAL \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD xa_open ORA-17216=C-XA \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 XAER_PROTO \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD xa_open ORA-17233=C-XA \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 XAER_RMERR \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD xa_close ORA-17235=C-XA \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 XAER_INVAL \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD xa_close ORA-17236=C-XA \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 XAER_PROTO \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u03A0\u03B1\u03C1\u03B1\u03B2\u03AF\u03B1\u03C3\u03B7 \u03C0\u03C1\u03C9\u03C4\u03BF\u03BA\u03CC\u03BB\u03BB\u03BF\u03C5 ORA-17402=\u0391\u03BD\u03B1\u03BC\u03AD\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03AD\u03BD\u03B1 \u03BC\u03AE\u03BD\u03C5\u03BC\u03B1 RPA ORA-17403=\u0391\u03BD\u03B1\u03BC\u03AD\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03AD\u03BD\u03B1 \u03BC\u03AE\u03BD\u03C5\u03BC\u03B1 RXH ORA-17404=\u0388\u03B3\u03B9\u03BD\u03B5 \u03BB\u03AE\u03C8\u03B7 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03C9\u03BD RXD \u03B1\u03C0\u03CC \u03C4\u03B1 \u03B1\u03BD\u03B1\u03BC\u03B5\u03BD\u03CC\u03BC\u03B5\u03BD\u03B1 ORA-17405=\u03A4\u03BF \u03BC\u03AE\u03BA\u03BF\u03C2 UAC \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B7\u03B4\u03B5\u03BD\u03B9\u03BA\u03CC ORA-17406=\u039E\u03B5\u03C0\u03B5\u03C1\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03B5\u03BD\u03B4\u03B9\u03AC\u03BC\u03B5\u03C3\u03B7\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7\u03C2 ORA-17407=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B1\u03BD\u03B1\u03C0\u03B1\u03C1\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03CD\u03C0\u03BF\u03C5(setRep) ORA-17408=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03B1\u03BD\u03B1\u03C0\u03B1\u03C1\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03CD\u03C0\u03BF\u03C5(getRep) ORA-17409=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B5\u03BD\u03B4\u03B9\u03AC\u03BC\u03B5\u03C3\u03B7\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7\u03C2 ORA-17410=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03AC\u03BB\u03BB\u03B1 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03B1 \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C5\u03C0\u03BF\u03B4\u03BF\u03C7\u03AE ORA-17411=\u0391\u03C3\u03C5\u03BC\u03C6\u03C9\u03BD\u03AF\u03B1 \u03B1\u03BD\u03B1\u03C0\u03B1\u03C1\u03B1\u03C3\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03C4\u03CD\u03C0\u03C9\u03BD \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD ORA-17412=\u03A4\u03BF \u03BC\u03AE\u03BA\u03BF\u03C2 \u03C4\u03BF\u03C5 \u03C4\u03CD\u03C0\u03BF\u03C5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03B5\u03C0\u03B9\u03C4\u03C1\u03B5\u03C0\u03C4\u03CC ORA-17413=\u03A5\u03C0\u03AD\u03C1\u03B2\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BC\u03AE\u03BA\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03BF\u03CD ORA-17414=\u03A4\u03BF \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03B5\u03BD\u03B4\u03B9\u03AC\u03BC\u03B5\u03C3\u03B7\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B7\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BD\u03B5\u03C0\u03B1\u03C1\u03BA\u03AD\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C4\u03C9\u03BD \u03BF\u03BD\u03BF\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03B7\u03BB\u03CE\u03BD ORA-17415=\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03B1\u03C5\u03C4\u03BF\u03CD \u03C4\u03BF\u03C5 \u03C4\u03CD\u03C0\u03BF\u03C5 ORA-17416=FATAL ORA-17417=\u03A0\u03C1\u03CC\u03B2\u03BB\u03B7\u03BC\u03B1 NLS, \u03B1\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 \u03B1\u03C0\u03BF\u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03BF\u03BD\u03BF\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03B7\u03BB\u03CE\u03BD ORA-17418=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BC\u03AE\u03BA\u03BF\u03C5\u03C2 \u03C0\u03B5\u03B4\u03AF\u03BF\u03C5 \u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03AE\u03C2 \u03B4\u03BF\u03BC\u03AE\u03C2 ORA-17419=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03BF\u03CD \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD \u03C3\u03C4\u03B7\u03BB\u03CE\u03BD ORA-17420=\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03B7 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C4\u03B7\u03C2 Oracle ORA-17421=\u0394\u03B5\u03BD \u03AD\u03C7\u03BF\u03C5\u03BD \u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03BF\u03B9 \u03C4\u03CD\u03C0\u03BF\u03B9 \u03AE \u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 ORA-17422=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE \u03BA\u03BB\u03AC\u03C3\u03B7 \u03C3\u03B5 \u03B5\u03C1\u03B3\u03BF\u03C3\u03C4\u03AC\u03C3\u03B9\u03BF ORA-17423=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BC\u03C0\u03BB\u03BF\u03BA PLSQL \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BF\u03C1\u03B9\u03C3\u03BC\u03CC IOV ORA-17424=\u0391\u03C0\u03CC\u03C0\u03B5\u03B9\u03C1\u03B1 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03AE\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03B4\u03B9\u03B5\u03C5\u03B8\u03AD\u03C4\u03B7\u03C3\u03B7\u03C2 (marshaling) ORA-17425=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 stream \u03C3\u03B5 \u03BC\u03C0\u03BB\u03BF\u03BA \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD PLSQL ORA-17426=\u03A4\u03CC\u03C3\u03BF \u03BF\u03B9 \u03B4\u03B5\u03C3\u03BC\u03B5\u03C5\u03BC\u03AD\u03BD\u03B5\u03C2 \u03BC\u03B5\u03C4\u03B1\u03B2\u03BB\u03B7\u03C4\u03AD\u03C2 IN \u03CC\u03C3\u03BF \u03BA\u03B1\u03B9 \u03BF\u03B9 OUT \u03B5\u03AF\u03BD\u03B1\u03B9 NULL ORA-17427=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BC\u03B7 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 OAC ORA-17428=\u0397 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 Logon \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03BA\u03BB\u03B7\u03B8\u03B5\u03AF \u03BC\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 ORA-17429=\u03A0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03BF\u03C5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF\u03BD \u03BD\u03B1 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03BF\u03BD server ORA-17430=\u03A0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03C3\u03C4\u03B5 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD server ORA-17431=\u0397 \u03C0\u03C1\u03CC\u03C4\u03B1\u03C3\u03B7 SQL \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B1\u03BD\u03B1\u03BB\u03C5\u03B8\u03B5\u03AF \u03B5\u03AF\u03BD\u03B1\u03B9 null ORA-17432=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AD\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03BA\u03B1\u03B9 \u03C3\u03C4\u03B9\u03C2 7 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 ORA-17433=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AC \u03BF\u03C1\u03AF\u03C3\u03BC\u03B1\u03C4\u03B1 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BB\u03AE\u03C3\u03B7 ORA-17434=\u039F \u03C4\u03C1\u03CC\u03C0\u03BF\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 streaming ORA-17435=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 in_out_binds \u03C3\u03C4\u03BF IOV ORA-17436=\u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 outbinds ORA-17437=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03C3\u03C4\u03B1 \u03BF\u03C1\u03AF\u03C3\u03BC\u03B1\u03C4\u03B1 IN/OUT \u03C4\u03BF\u03C5 \u03BC\u03C0\u03BB\u03BF\u03BA \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD PLSQL ORA-17438=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1 - \u039C\u03B7 \u03B1\u03BD\u03B1\u03BC\u03B5\u03BD\u03CC\u03BC\u03B5\u03BD\u03B7 \u03C4\u03B9\u03BC\u03AE ORA-17439=\u039C\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03CC\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 SQL ORA-17440=\u039F\u03B9 \u03C0\u03B1\u03C1\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03B9 DBItem/DBType \u03B5\u03AF\u03BD\u03B1\u03B9 null ORA-17441=\u0394\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C5\u03C4\u03AE \u03B7 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C4\u03B7\u03C2 Oracle. \u0397 \u03C0\u03B1\u03BB\u03B1\u03B9\u03CC\u03C4\u03B5\u03C1\u03B7 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C0\u03BF\u03C5 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 7.2.3. ORA-17442=\u0397 \u03C4\u03B9\u03BC\u03AE \u03C4\u03BF\u03C5 cursor \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B7 \u03B1\u03C0\u03BF\u03B4\u03B5\u03BA\u03C4\u03AE ORA-17443=\u0395\u03AF\u03C4\u03B5 Null \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03B5\u03AF\u03C4\u03B5 \u03BC\u03B7 \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03BF\u03C2 \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03C3\u03C4\u03BF\u03BD \u03BF\u03B4\u03B7\u03B3\u03CC \u03A0\u0395\u03A1\u0399\u039F\u03A1\u0399\u03A3\u039C\u0395\u039D\u03A9\u039D \u0394\u03A5\u039D\u0391\u03A4\u039F\u03A4\u0397\u03A4\u03A9\u039D (THIN) ORA-17444=\u0397 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03C9\u03C4\u03BF\u03BA\u03CC\u03BB\u03BB\u03BF\u03C5 TTC \u03C0\u03BF\u03C5 \u03BB\u03AE\u03C6\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD server \u03B4\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 ORA-17445=\u03A4\u03BF LOB \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AE\u03B4\u03B7 \u03B1\u03BD\u03BF\u03B9\u03BA\u03C4\u03CC \u03C3\u03C4\u03B7\u03BD \u03AF\u03B4\u03B9\u03B1 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE. ORA-17446=\u03A4\u03BF LOB \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AE\u03B4\u03B7 \u03BA\u03BB\u03B5\u03B9\u03C3\u03C4\u03CC \u03C3\u03C4\u03B7\u03BD \u03AF\u03B4\u03B9\u03B1 \u03C3\u03C5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE. ORA-17447=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C3\u03C5\u03BD\u03AD\u03C0\u03B5\u03B9\u03B1 \u03C9\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B7\u03BD \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 OALL8. # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_es.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Error interno ORA-17002=Excepci\u00F3n de E/S ORA-17003=\u00CDndice de columna no v\u00E1lido ORA-17004=Tipo de columna no v\u00E1lido ORA-17005=Tipo de columna no soportado ORA-17006=Nombre de columna no v\u00E1lido ORA-17007=Columna din\u00E1mica no v\u00E1lida ORA-17008=Conexi\u00F3n cerrada ORA-17009=Sentencia cerrada ORA-17010=Juego de resultados cerrado ORA-17011=Juego de resultados agotado ORA-17012=Conflicto de tipo de par\u00E1metro ORA-17014=No se ha llamado a ResultSet.next ORA-17015=Se ha cancelado la sentencia ORA-17016=Timeout de sentencia ORA-17017=Ya se ha inicializado el cursor ORA-17018=Cursor no v\u00E1lido ORA-17019=S\u00F3lo puede describir una consulta ORA-17020=Recuperaci\u00F3n previa de fila no v\u00E1lida ORA-17021=Faltan definiciones ORA-17022=Faltan definiciones en el \u00EDndice ORA-17023=Funci\u00F3n no soportada ORA-17024=No hay lectura de datos ORA-17025=Error en defines.isNull () ORA-17026=Desbordamiento Num\u00E9rico ORA-17027=El flujo ya se ha cerrado ORA-17028=No se pueden realizar nuevas definiciones hasta que no se cierre el juego de resultados actual ORA-17029=setReadOnly: Conexiones de s\u00F3lo lectura no soportadas ORA-17030=READ_COMMITTED y SERIALIZABLE son los \u00FAnicos niveles de transacci\u00F3n v\u00E1lidos ORA-17031=setAutoClose: S\u00F3lo soporta el modo de cierre autom\u00E1tico ORA-17032=no se puede definir la recuperaci\u00F3n previa de fila en cero ORA-17033=Cadena SQL92 con formato incorrecto en la posici\u00F3n ORA-17034=Elemento SQL92 no soportado en la posici\u00F3n ORA-17035=\u00A1\u00A1Juego de caracteres no soportado!! ORA-17036=excepci\u00F3n en OracleNumber ORA-17037=Fallo al convertir entre UTF8 y UCS2 ORA-17038=La matriz de bytes no es suficientemente larga ORA-17039=La matriz de caracteres no es suficientemente larga ORA-17040=El subprotocolo se debe especificar en la direcci\u00F3n URL de conexi\u00F3n ORA-17041=Falta el par\u00E1metro IN o OUT en el \u00EDndice: ORA-17042=Valor de lote no v\u00E1lido ORA-17043=Tama\u00F1o m\u00E1ximo de flujo no v\u00E1lido ORA-17044=Error interno: No se ha asignado la matriz de datos ORA-17045=Error interno: Se ha intentado acceder a valores de enlace aparte del valor de lote ORA-17046=Error interno: \u00CDndice no v\u00E1lido para el acceso a los datos ORA-17047=Error en el an\u00E1lisis del descriptor de tipo ORA-17048=Tipo no definido ORA-17049=Tipos de objeto JAVA y SQL inconsistentes ORA-17050=no existe ese elemento en el vector ORA-17051=Esta API no se puede utilizar para tipos que no sean UDT ORA-17052=Esta referencia no es v\u00E1lida ORA-17053=El tama\u00F1o no es v\u00E1lido ORA-17054=El localizador LOB no es v\u00E1lido ORA-17055=Se ha encontrado un car\u00E1cter no v\u00E1lido en ORA-17056=Juego de caracteres no soportado (agregue orai18n.jar a classpath) ORA-17057=LOB cerrado ORA-17058=Error interno: Ratio de conversi\u00F3n NLS no v\u00E1lida ORA-17059=Fallo al convertir a representaci\u00F3n interna ORA-17060=Fallo al construir el descriptor ORA-17061=Falta el descriptor ORA-17062=El cursor de referencia no es v\u00E1lido ORA-17063=No est\u00E1 en una transacci\u00F3n ORA-17064=La sintaxis no es v\u00E1lida o el nombre de la base de datos es nulo ORA-17065=La clase de conversi\u00F3n es nula ORA-17066=Se necesita implementaci\u00F3n concreta del nivel de acceso ORA-17067=La direcci\u00F3n URL de Oracle especificada no es v\u00E1lida ORA-17068=Argumento(s) no v\u00E1lido(s) en la llamada ORA-17069=Utilizar llamada XA expl\u00EDcita ORA-17070=El tama\u00F1o de los datos es mayor que el tama\u00F1o m\u00E1ximo para este tipo ORA-17071=Se ha excedido el l\u00EDmite m\u00E1ximo de VARRAY ORA-17072=El valor insertado es demasiado largo para la columna ORA-17074=patr\u00F3n de nombre no v\u00E1lido ORA-17075=Operaci\u00F3n no v\u00E1lida para el juego de resultados de s\u00F3lo reenv\u00EDo ORA-17076=Operaci\u00F3n no v\u00E1lida para el juego de resultados de s\u00F3lo lectura ORA-17077=Fallo al definir el valor REF ORA-17078=No se puede realizar la operaci\u00F3n ya que las conexiones ya est\u00E1n abiertas ORA-17079=Las credenciales del usuario no coinciden con las existentes ORA-17080=comando por lotes no v\u00E1lido ORA-17081=se ha producido un error durante el procesamiento por lotes ORA-17082=No es la fila actual ORA-17083=No est\u00E1 en la fila de inserci\u00F3n ORA-17084=Llamada en la fila de inserci\u00F3n ORA-17085=Se ha producido un conflicto de valores ORA-17086=El valor de la columna no est\u00E1 definido en la fila de inserci\u00F3n ORA-17087=Indicaci\u00F3n de rendimiento ignorada: setFetchDirection() ORA-17088=Sintaxis no soportada para el tipo de juego de resultados y el nivel de simultaneidad solicitados ORA-17089=error interno ORA-17090=operaci\u00F3n no permitida ORA-17091=No se puede crear el juego de resultados en el tipo y/o nivel de simultaneidad solicitados ORA-17092=Las sentencias JDBC no se pueden crear o ejecutar al final del procesamiento de la llamada ORA-17093=La operaci\u00F3n OCI ha devuelto OCI_SUCCESS_WITH_INFO ORA-17094=Las versiones de tipo de objeto no coinciden ORA-17095=No se ha definido el tama\u00F1o de la cach\u00E9 de sentencias ORA-17096=La cach\u00E9 de sentencias no se puede activar para esta conexi\u00F3n l\u00F3gica. ORA-17097=Tipo de elemento de tabla indexada PL/SQL no v\u00E1lido ORA-17098=Operaci\u00F3n LOB vac\u00EDa no v\u00E1lida ORA-17099=Longitud de matriz de tabla indexada PL/SQL no v\u00E1lida ORA-17100=Objeto Java de la base de datos no v\u00E1lido ORA-17101=Propiedades no v\u00E1lidas del objeto del pool de conexiones de OCI ORA-17102=Bfile es de s\u00F3lo lectura ORA-17103=tipo de conexi\u00F3n no v\u00E1lido para volver mediante getConnection. En su lugar, utilice getJavaSqlConnection ORA-17104=La sentencia SQL de ejecuci\u00F3n no puede estar vac\u00EDa ni ser nula ORA-17105=no se ha definido la zona horaria de la sesi\u00F3n de conexi\u00F3n ORA-17106=se ha especificado una configuraci\u00F3n de pool de conexiones de controlador JDBC-OCI no v\u00E1lida ORA-17107=el tipo de proxy especificado no es v\u00E1lido ORA-17108=No se ha especificado la longitud m\u00E1xima en defineColumnType ORA-17109=no se ha encontrado la codificaci\u00F3n de car\u00E1cter Java est\u00E1ndar ORA-17110=la ejecuci\u00F3n ha terminado con advertencias ORA-17111=Se ha especificado un timeout de TTL de cach\u00E9 de conexiones no v\u00E1lido ORA-17112=Se ha especificado un intervalo de thread no v\u00E1lido ORA-17113=El valor del intervalo de thread es mayor que el valor del timeout de cach\u00E9 ORA-17114=no se ha podido utilizar la confirmaci\u00F3n de transacci\u00F3n local en una transacci\u00F3n global ORA-17115=no se ha podido utilizar el rollback de transacci\u00F3n local en una transacci\u00F3n global ORA-17116=no se ha podido activar la confirmaci\u00F3n autom\u00E1tica en una transacci\u00F3n global activa ORA-17117=no se ha podido definir el punto de grabaci\u00F3n en una transacci\u00F3n global activa ORA-17118=no se ha podido obtener el identificador de un punto de grabaci\u00F3n denominado ORA-17119=no se ha podido obtener el nombre de un punto de grabaci\u00F3n no denominado ORA-17120=no se ha podido definir un punto de grabaci\u00F3n con la confirmaci\u00F3n autom\u00E1tica activada ORA-17121=no se ha podido realizar rollback en un punto de grabaci\u00F3n con la confirmaci\u00F3n autom\u00E1tica activada ORA-17122=no se ha podido realizar rollback en un punto de grabaci\u00F3n de transacci\u00F3n local en una transacci\u00F3n global ORA-17123=Se ha especificado un tama\u00F1o de cach\u00E9 de sentencias no v\u00E1lido ORA-17124=Se ha especificado un timout de inactividad de cach\u00E9 de conexi\u00F3n no v\u00E1lido ORA-17125=La cach\u00E9 expl\u00EDcita ha devuelto un tipo de sentencia incorrecto ORA-17126=Ha transcurrido el timeout de espera fijo ORA-17127=Se ha especificado un timeout de espera fijo no v\u00E1lido ORA-17128=La cadena SQL no es una consulta ORA-17129=La cadena SQL no es una sentencia DML ORA-17132=Se ha solicitado una conversi\u00F3n no v\u00E1lida ORA-17133=UNUSED ORA-17134=La longitud del par\u00E1metro especificada en SQL excede los 32 caracteres ORA-17135=El nombre de par\u00E1metro utilizado en setXXXStream aparece m\u00E1s de una vez en SQL ORA-17136=DATALINK URL de formato incorrecto, utilice getString() en su lugar ORA-17137=Cach\u00E9 de conexiones no activada o No es un origen de datos activado para cach\u00E9 v\u00E1lido ORA-17138=Nombre de cach\u00E9 de conexiones no v\u00E1lido. Debe ser una cadena v\u00E1lida y \u00FAnica ORA-17139=Propiedades de cach\u00E9 de conexiones no v\u00E1lidas ORA-17140=Ya existe una cach\u00E9 de conexiones con este nombre ORA-17141=No existe ninguna cach\u00E9 de conexiones con este nombre ORA-17142=La cach\u00E9 de conexiones con este nombre est\u00E1 desactivada ORA-17143=Se ha encontrado una conexi\u00F3n no v\u00E1lida o anticuada en la cach\u00E9 de conexiones ORA-17144=manejador de sentencias no ejecutado ORA-17145=Se ha recibido un evento ONS no v\u00E1lido ORA-17146=Se ha recibido una versi\u00F3n de evento ONS no v\u00E1lida ORA-17147=Se ha intentado definir un nombre de par\u00E1metro que no est\u00E1 en SQL ORA-17148=S\u00F3lo se ha implementado el m\u00E9todo en Thin ORA-17149=\u00C9sta ya es una sesi\u00F3n de proxy ORA-17150=Argumentos err\u00F3neos para la sesi\u00F3n de proxy ORA-17151=Clob es demasiado grande para almacenarse en una cadena Java ORA-17152=Este m\u00E9todo s\u00F3lo se ha implementado en conexiones l\u00F3gicas ORA-17153=Este m\u00E9todo s\u00F3lo se ha implementado en conexiones f\u00EDsicas ORA-17154=No se puede asignar el car\u00E1cter Oracle a Unicode ORA-17155=No se puede asignar Unicode al car\u00E1cter Oracle ORA-17156=Tama\u00F1o de matriz no v\u00E1lido para valores de m\u00E9tricas completos ORA-17157=setString s\u00F3lo puede procesar cadenas de menos de 32766 caracteres ORA-17158=duraci\u00F3n no v\u00E1lida para esta funci\u00F3n ORA-17159=valor de m\u00E9trica para rastreo completo demasiado largo ORA-17160=n\u00FAmero de secuencia de identificador de contexto de ejecuci\u00F3n fuera de rango ORA-17161=Se ha utilizado un modo de transacci\u00F3n no v\u00E1lido ORA-17162=Valor de capacidad de retenci\u00F3n no soportado ORA-17163=No se puede utilizar getXAConnection() si la cach\u00E9 de conexiones est\u00E1 activada ORA-17164=No se puede llamar a getXAResource() desde la conexi\u00F3n f\u00EDsica con la cach\u00E9 activada ORA-17165=El paquete DBMS_JDBC no est\u00E1 predefinido en el servidor para esta conexi\u00F3n ORA-17166=No se puede realizar la recuperaci\u00F3n en una sentencia PLSQL ORA-17167=No se han encontrado las clases PKI. Para utilizar la funcionalidad de 'connect /', oraclepki.jar debe estar en classpath ORA-17168=Se ha encontrado un problema con Secret Store. Compruebe la ubicaci\u00F3n de la cartera para ver si hay alguna abierta (cwallet.sso) y aseg\u00FArese de que esta cartera contiene la credenciales correctas mediante la utilidad mkstore ORA-17169=No se puede enlazar el flujo a ScrollableResultSet o UpdatableResultSet ORA-17170=El espacio de nombres no puede estar vac\u00EDo ORA-17171=La longitud del atributo no puede exceder los 30 caracteres ORA-17172=El valor del atributo no puede exceder los 400 caracteres ORA-17173=No se han registrado todos los par\u00E1metros de retorno ORA-17174=El \u00FAnico espacio de nombres soportado es CLIENTCONTEXT ORA-17175=Error durante la configuraci\u00F3n de ONS remoto ORA-17200=No se ha podido convertir correctamente la cadena de apertura de XA de Java a C ORA-17201=No se ha podido convertir correctamente la cadena de cierre de XA de Java a C ORA-17202=No se ha podido convertir correctamente el nombre de RM de Java a C ORA-17203=No se ha podido convertir el tipo de puntero a jlong ORA-17204=Matriz de entrada demasiado peque\u00F1a para contener los manejadores OCI ORA-17205=Fallo al obtener el manejador OCISvcCtx de C-XA mediante xaoSvcCtx ORA-17206=Fallo al obtener el manejador OCIEnv de C-XA mediante xaoEnv ORA-17207=No se ha definido la propiedad tnsEntry en el origen de datos ORA-17213=C-XA ha devuelto XAER_RMERR durante xa_open ORA-17215=C-XA ha devuelto XAER_INVAL durante xa_open ORA-17216=C-XA ha devuelto XAER_PROTO durante xa_open ORA-17233=C-XA ha devuelto XAER_RMERR durante xa_close ORA-17235=C-XA ha devuelto XAER_INVAL durante xa_close ORA-17236=C-XA ha devuelto XAER_PROTO durante xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Violaci\u00F3n de protocolo ORA-17402=S\u00F3lo se espera un mensaje RPA ORA-17403=S\u00F3lo se espera un mensaje RXH ORA-17404=Se han recibido m\u00E1s RXD de los esperados ORA-17405=La longitud UAC no es cero ORA-17406=Se ha excedido la longitud m\u00E1xima del buffer ORA-17407=representaci\u00F3n de tipo (setRep) no v\u00E1lida ORA-17408=representaci\u00F3n de tipo (getRep) no v\u00E1lida ORA-17409=longitud de buffer no v\u00E1lida ORA-17410=No hay m\u00E1s datos para leer del socket ORA-17411=No coinciden las representaciones de Tipo de Dato ORA-17412=Longitud de tipo mayor que el m\u00E1ximo permitido ORA-17413=Se ha excedido el tama\u00F1o de la clave ORA-17414=Tama\u00F1o de buffer insuficiente para almacenar nombres de columnas ORA-17415=Este tipo no ha sido tratado ORA-17416=FATAL ORA-17417=Problema NLS, fallo al descodificar nombres de columna ORA-17418=Error interno de longitud de campo de la estructura ORA-17419=El sistema ha devuelto un n\u00FAmero de columnas no v\u00E1lido ORA-17420=No se ha definido la versi\u00F3n de Oracle ORA-17421=La conexi\u00F3n o los tipos no se han definido ORA-17422=Clase no v\u00E1lida en el tipo de objeto Factory ORA-17423=Se est\u00E1 utilizando un bloque PLSQL sin haber definido un IOV ORA-17424=Se est\u00E1 intentando realizar una operaci\u00F3n de canalizaci\u00F3n de datos entre sistemas diferente ORA-17425=Se est\u00E1 devolviendo un flujo en el bloque PLSQL ORA-17426=Los enlaces IN y OUT son NULL ORA-17427=Se est\u00E1 utilizando OAC no inicializado ORA-17428=Logon se debe llamar despu\u00E9s de Connect ORA-17429=Debe estar conectado al servidor ORA-17430=Debe estar conectado al servidor ORA-17431=La sentencia SQL que se va a analizar es nula ORA-17432=opciones no v\u00E1lidas en all7 ORA-17433=argumentos no v\u00E1lidos en la llamada ORA-17434=no est\u00E1 en modo de lectura/escritura continuo ORA-17435=n\u00FAmero no v\u00E1lido de in_out_binds en IOV ORA-17436=n\u00FAmero no v\u00E1lido de par\u00E1metros OUT ORA-17437=Error en el argumento o argumentos IN/OUT del bloque PLSQL ORA-17438=Error interno - Valor inesperado ORA-17439=Tipo SQL no v\u00E1lido ORA-17440=DBItem/DBType nulo ORA-17441=Versi\u00F3n de Oracle no soportada. La versi\u00F3n m\u00EDnima soportada es la 7.2.3. ORA-17442=El valor del cursor de referencia no es v\u00E1lido ORA-17443=Usuario nulo o contrase\u00F1a no soportada en el controlador THIN ORA-17444=Versi\u00F3n no soportada del protocolo TTC recibido del servidor ORA-17445=LOB ya abierto en la misma transacci\u00F3n ORA-17446=LOB ya cerrado en la misma transacci\u00F3n ORA-17447=OALL8 est\u00E1 en un estado inconsistente # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_fi.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Sis\u00E4inen virhe ORA-17002=IO-poikkeus ORA-17003=Virheellinen sarakeindeksi ORA-17004=Virheellinen saraketyyppi ORA-17005=Saraketyyppi\u00E4 ei tueta ORA-17006=Virheellinen sarakkeen nimi ORA-17007=Virheellinen dynaaminen sarake ORA-17008=Suljettu yhteys ORA-17009=Suljettu lause ORA-17010=Suljettu tulosjoukko ORA-17011=Tulosjoukko t\u00E4ynn\u00E4 ORA-17012=Parametrityypin ristiriita ORA-17014=ResultSet.next-funktiota ei kutsuttu ORA-17015=Lause peruutettiin ORA-17016=Lause aikakatkaistiin ORA-17017=Kohdistin on jo alustettu ORA-17018=Virheellinen kohdistin ORA-17019=Voi vain kuvata kysely\u00E4 ORA-17020=Virheellinen rivin esihaku ORA-17021=M\u00E4\u00E4ritykset puuttuvat ORA-17022=M\u00E4\u00E4ritykset puuttuvat indeksist\u00E4 ORA-17023=Ominaisuutta ei tueta ORA-17024=Ei luettuja tietoja ORA-17025=Virhe: defines.isNull () ORA-17026=Numeerinen ylivuoto ORA-17027=Tietovirta on jo suljettu ORA-17028=Uusia m\u00E4\u00E4rityksi\u00E4 ei voi tehd\u00E4, ennen kuin nykyinen tulosjoukko on suljettu ORA-17029=setReadOnly: Vain luku -yhteyksi\u00E4 ei tueta ORA-17030=READ_COMMITTED ja SERIALIZABLE ovat ainoat sallitut tapahtumatasot ORA-17031=setAutoClose: Tuetaan vain Automaattinen sulkeminen -tilaa ORA-17032=rivin esihakuarvoa ei voi asettaa nollaksi ORA-17033=V\u00E4\u00E4r\u00E4nmuotoinen SQL92-merkkijono kohdassa ORA-17034=Ei-tuettu SQL92-merkki kohdassa ORA-17035=Merkist\u00F6\u00E4 ei tueta!! ORA-17036=poikkeus kohdassa OracleNumber ORA-17037=Muunto UTF8:n ja UCS2:n v\u00E4lill\u00E4 ei onnistunut ORA-17038=Tavutaulukko on liian lyhyt ORA-17039=Merkkitaulukko on liian lyhyt ORA-17040=Aliyhteysk\u00E4yt\u00E4nt\u00F6 on m\u00E4\u00E4ritett\u00E4v\u00E4 yhteyden URL:ia varten ORA-17041=Puuttuva IN- tai OUT-parametri indeksiss\u00E4: ORA-17042=Virheellinen er\u00E4n arvo ORA-17043=Virheellinen tietovirran enimm\u00E4iskoko ORA-17044=Sis\u00E4inen virhe: Datataulukkoa ei ole varattu ORA-17045=Sis\u00E4inen virhe: Er\u00E4n arvoa suurempia sidosarvoja ei voi k\u00E4ytt\u00E4\u00E4 ORA-17046=Sis\u00E4inen virhe: Virheellinen tietojen k\u00E4yt\u00F6n indeksi ORA-17047=Virhe tyyppikuvaajan j\u00E4sennyksess\u00E4 ORA-17048=M\u00E4\u00E4ritt\u00E4m\u00E4t\u00F6n tyyppi ORA-17049=Java- ja sql-objektityypit eiv\u00E4t ole yhdenmukaisia ORA-17050=vektorissa ei ole t\u00E4llaista elementti\u00E4 ORA-17051=T\u00E4t\u00E4 APIa ei voi k\u00E4ytt\u00E4\u00E4 muille kuin UDT-tyypeille ORA-17052=Virheellinen viite ORA-17053=Virheellinen koko ORA-17054=Virheellinen LOB-paikannin ORA-17055=Virheellinen merkki havaittu kohdassa ORA-17056=Merkist\u00F6\u00E4 ei tueta (lis\u00E4\u00E4 orai18n.jar luokkapolkuun) ORA-17057=Suljettu LOB ORA-17058=Sis\u00E4inen virhe: Virheellinen NLS-muuntosuhde ORA-17059=Sis\u00E4iseksi vastaavuudeksi muuntaminen ei onnistunut ORA-17060=Kuvaajan rakentaminen ei onnistunut ORA-17061=Puuttuva kuvaaja ORA-17062=Virheellinen viitekohdistin ORA-17063=Ei tapahtumassa ORA-17064=Virheellinen syntaksi tai tietokannan nimell\u00E4 on tyhj\u00E4 arvo ORA-17065=Muuntoluokalla on tyhj\u00E4 arvo ORA-17066=Tarvitaan k\u00E4ytt\u00F6oikeustasokohtainen toteutus ORA-17067=Virheellinen Oraclen URL-osoite ORA-17068=Virheellinen argumentti tai argumentteja kutsussa ORA-17069=K\u00E4yt\u00E4 omaa XA-kutsua ORA-17070=Tietojen koko on suurempi kuin t\u00E4m\u00E4n tyypin enimm\u00E4iskoko ORA-17071=VARRAY-enimm\u00E4israja on ylitetty ORA-17072=Lis\u00E4tty arvo liian suuri sarakkeeseen ORA-17074=virheellinen nimirakenne ORA-17075=Virheellinen toiminto vain eteenp\u00E4in suuntautuvassa tulosjoukossa ORA-17076=Virheellinen toiminto vain luku -tyyppisess\u00E4 tulosjoukossa ORA-17077=REF-arvoa ei voi asettaa ORA-17078=Toimintoa ei voi tehd\u00E4, sill\u00E4 yhteys on jo muodostettu ORA-17079=K\u00E4ytt\u00E4j\u00E4n valtuudet eiv\u00E4t vastaa olemassa olevia valtuuksia ORA-17080=virheellinen er\u00E4komento ORA-17081=virhe er\u00E4ajon aikana ORA-17082=Nykyist\u00E4 rivi\u00E4 ei ole ORA-17083=Ei lis\u00E4tt\u00E4v\u00E4ll\u00E4 rivill\u00E4 ORA-17084=Kutsuttiin lis\u00E4tt\u00E4v\u00E4\u00E4 rivi\u00E4 ORA-17085=Arvoristiriitoja ORA-17086=M\u00E4\u00E4ritt\u00E4m\u00E4t\u00F6n sarakkeen arvo lis\u00E4tt\u00E4v\u00E4ll\u00E4 rivill\u00E4 ORA-17087=Suorityskykyvihje ohitettiin: setFetchDirection() ORA-17088=Syntaksia ei tueta pyydetylle tulosjoukkotyypille ja tausta-ajotasolle ORA-17089=sis\u00E4inen virhe ORA-17090=toiminto ei ole sallittu ORA-17091=Tulosjoukkoa ei voi luoda pyydetyss\u00E4 tyypiss\u00E4 ja/tai tausta-ajotasossa ORA-17092=JDBC-lauseita ei voi luoda tai k\u00E4sitell\u00E4 kutsuprosessin lopussa ORA-17093=OCI-operaatio palautti OCI_SUCCESS_WITH_INFO ORA-17094=Objektityypin versiot eiv\u00E4t ole yhteensopivia ORA-17095=Lausev\u00E4limuistin kokoa ei ole m\u00E4\u00E4ritetty ORA-17096=Lauseen v\u00E4limuistiin tallennusta ei voi ottaa k\u00E4ytt\u00F6\u00F6n t\u00E4m\u00E4n loogisen yhteyden yhteydess\u00E4. ORA-17097=Virheellinen PL/SQL-indeksitaulun elementtityyppi ORA-17098=Virheellinen tyhj\u00E4 lob-operaatio ORA-17099=Virheellinen PL/SQL-indeksitaulun taulukon pituus ORA-17100=Virheellinen tietokannan Java-objekti ORA-17101=Virheelliset ominaisuudet OCI-yhteysvaranto-objektissa ORA-17102=Kohdetta Bfile voi vain lukea ORA-17103=virheellinen yhteystyyppi getConnection. K\u00E4yt\u00E4 getJavaSqlConnection-rutiinia ORA-17104=suoritettava SQL-lause ei voi olla tyhj\u00E4 tai nolla ORA-17105=yhteydenottoistunnon aikavy\u00F6hykett\u00E4 ei m\u00E4\u00E4ritetty ORA-17106=m\u00E4\u00E4ritettiin virheellinen JDBC-OCI-ohjainyhteysvarannon kokoonpano ORA-17107=m\u00E4\u00E4ritettiin virheellinen v\u00E4lipalvelintyyppi ORA-17108=Kohteessa defineColumnType ei ole m\u00E4\u00E4ritetty enimm\u00E4ispituutta ORA-17109=Java-vakiomerkkikoodausta ei l\u00F6ydy ORA-17110=suoritus valmis, aiheutti varoituksen ORA-17111=M\u00E4\u00E4ritettiin virheellinen yhteysv\u00E4limuistin TTL-aikakatkaisu ORA-17112=M\u00E4\u00E4ritettiin virheellinen s\u00E4iev\u00E4li ORA-17113=S\u00E4ikeen v\u00E4lin arvo on suurempi kuin v\u00E4limuistin aikakatkaisuarvo ORA-17114=paikallisen tapahtuman vahvistusta ei voi k\u00E4ytt\u00E4\u00E4 yleisess\u00E4 tapahtumassa ORA-17115=paikallisen tapahtuman peruutusta ei voi k\u00E4ytt\u00E4\u00E4 yleisess\u00E4 tapahtumassa ORA-17116=automaattista vahvistusta ei voi ottaa k\u00E4ytt\u00F6\u00F6n aktiivisessa yleisess\u00E4 tapahtumassa ORA-17117=tallennuspistett\u00E4 ei voi asettaa aktiivisessa yleisess\u00E4 tapahtumassa ORA-17118=nimetyn tallennuspisteen tunnistetta ei voi hakea ORA-17119=nimett\u00F6m\u00E4n tallennuspisteen nime\u00E4 ei voi hakea ORA-17120=tallennuspistett\u00E4 ei voi m\u00E4\u00E4ritt\u00E4\u00E4, kun automaattinen vahvistus on k\u00E4yt\u00F6ss\u00E4 ORA-17121=tallennuspisteeseen ei voi peruuttaa, kun automaattinen vahvistus on k\u00E4yt\u00F6ss\u00E4 ORA-17122=paikalliseen txn-tallennuspisteeseen ei voi peruuttaa yleisess\u00E4 tapahtumassa ORA-17123=M\u00E4\u00E4ritettiin virheellinen lausev\u00E4limuistin koko ORA-17124=M\u00E4\u00E4ritettiin virheellinen yhteysv\u00E4limuistin toimettomuuden aikakatkaisu ORA-17125=Erillinen v\u00E4limuisti palautti virheellisen lausetyypin ORA-17126=Kiinte\u00E4 odotuksen aikakatkaisuaika on kulunut ORA-17127=Kiinte\u00E4 odotuksen aikakatkaisuaika on m\u00E4\u00E4ritetty ORA-17128=SQL-merkkijono ei ole kysely ORA-17129=SQL-merkkijono ei ole DML-lause ORA-17132=Pyydetty muunnos on virheellinen ORA-17133=UNUSED ORA-17134=Nimetty SQL-parametri on yli 32 merkki\u00E4 pitk\u00E4 ORA-17135=Kohteessa setXXXStream k\u00E4ytetty parametrin nimi toistuu SQL-koodissa ORA-17136=Virheellinen DATALINK URL, kokeile muotoa getString() ORA-17137=Yhteyden tallennus v\u00E4limuistiin ei k\u00E4yt\u00F6ss\u00E4, tai ei hyv\u00E4ksytt\u00E4v\u00E4 v\u00E4limuistia k\u00E4ytt\u00E4v\u00E4 DataSource ORA-17138=Virheellinen yhteysv\u00E4limuistin nimi. Nimen on oltava hyv\u00E4ksytt\u00E4v\u00E4 yksil\u00F6iv\u00E4 merkkijono ORA-17139=Virheelliset yhteysv\u00E4limuistin ominaisuudet ORA-17140=T\u00E4t\u00E4 v\u00E4limuistin nime\u00E4 k\u00E4ytt\u00E4v\u00E4 yhteysv\u00E4limuisti on jo olemassa ORA-17141=T\u00E4t\u00E4 v\u00E4limuistin nime\u00E4 k\u00E4ytt\u00E4v\u00E4\u00E4 yhteysv\u00E4limuistia ei ole ORA-17142=T\u00E4t\u00E4 v\u00E4limuistin nime\u00E4 k\u00E4ytt\u00E4v\u00E4 yhteysv\u00E4limuisti on poistettu k\u00E4yt\u00F6st\u00E4 ORA-17143=Virheellinen tai vanhentunut kahva l\u00F6ytyi yhteysv\u00E4limuistista ORA-17144=lauseenk\u00E4sittelij\u00E4\u00E4 ei suoritettu ORA-17145=Vastaanotettu ONS-tapahtuma on virheellinen ORA-17146=Vastaanotettu ONS-tapahtuman versio on virheellinen ORA-17147=Yritettiin m\u00E4\u00E4ritt\u00E4\u00E4 parametrin nimi, joka ei esiinny SQL-koodissa ORA-17148=Menetelm\u00E4 on toteutettu vain thin-ohjaimessa ORA-17149=T\u00E4m\u00E4 on jo v\u00E4lipalvelinistunto ORA-17150=Virheelliset argumentit v\u00E4lipalvelinistunnossa ORA-17151=Clob on liian suuri, eik\u00E4 sit\u00E4 voi tallentaa Java-merkkijonoon ORA-17152=T\u00E4m\u00E4 menetelm\u00E4 on toteutettu vain loogisissa yhteyksiss\u00E4 ORA-17153=T\u00E4m\u00E4 menetelm\u00E4 on toteutettu vain fyysisiss\u00E4 yhteyksiss\u00E4 ORA-17154=Oracle-merkki\u00E4 vastaavaa Unicode-merkki\u00E4 ei voi m\u00E4\u00E4ritt\u00E4\u00E4 ORA-17155=Unicode-merkki\u00E4 vastaavaa Oracle-merkki\u00E4 ei voi m\u00E4\u00E4ritt\u00E4\u00E4 ORA-17156=Virheellinen taulukon koko p\u00E4\u00E4st\u00E4-p\u00E4\u00E4h\u00E4n-mittarien arvoissa ORA-17157=setString voi k\u00E4sitell\u00E4 vain merkkijonoja, joiden pituus on enint\u00E4\u00E4n 32765 merkki\u00E4 ORA-17158=virheellinen kesto t\u00E4t\u00E4 toimintoa varten ORA-17159=p\u00E4\u00E4st\u00E4-p\u00E4\u00E4h\u00E4n-j\u00E4ljityksen mittarin arvo on liian pitk\u00E4 ORA-17160=suorituskontekstitunnuksen j\u00E4rjestysnumero on arvoalueen ulkopuolella ORA-17161=K\u00E4ytetty tapahtuman tila on virheellinen ORA-17162=Pidett\u00E4vyysarvoa ei tueta ORA-17163=Kohdetta getXAConnection() ei voi k\u00E4ytt\u00E4\u00E4, kun yhteyden tallennus v\u00E4limuistiin on k\u00E4yt\u00F6ss\u00E4 ORA-17164=Kohdetta getXAResource() ei voi kutsua fyysisest\u00E4 yhteydest\u00E4, kun tallennus v\u00E4limuistiin on k\u00E4yt\u00F6ss\u00E4 ORA-17165=DBMS_JDBC-pakettia ei ole esim\u00E4\u00E4ritetty palvelimeen t\u00E4ss\u00E4 yhteydess\u00E4 ORA-17166=Hakua ei voi suorittaa PLSQL-lauseelle ORA-17167=PKI-luokkia ei l\u00F6ydy. Toiminnon 'connect /' k\u00E4ytt\u00F6 edellytt\u00E4\u00E4, ett\u00E4 oraclepki.jar on luokkapolulla ORA-17168=ongelma salaisuuss\u00E4il\u00F6ss\u00E4. Tarkista, onko lompakon sijainnissa avointa lompakkoa (cwallet.sso), ja varmista, ett\u00E4 lompakossa on mkstore-apuohjelman k\u00E4ytt\u00F6\u00F6n tarvittavat valtuudet ORA-17169=Virtaa ei voi sitoa ScrollableResultSet- tai UpdatableResultSet-kohteeseen ORA-17170=Nimialue ei saa olla tyhj\u00E4 ORA-17171=M\u00E4\u00E4rite ei saa olla yli 30 merkki\u00E4 pitk\u00E4 ORA-17172=T\u00E4m\u00E4 m\u00E4\u00E4ritteen arvo ei saa olla yli 400 merkki\u00E4 pitk\u00E4 ORA-17173=Kaikkia palautusparametreja ei ole rekister\u00F6ity ORA-17174=Ainoa tuettu nimialue on CLIENTCONTEXT ORA-17175=Virhe et\u00E4-ONS-kokoonpanon m\u00E4\u00E4rityksess\u00E4 ORA-17200=XA-avausmerkkijonoa ei voi muuntaa oikein Javasta C:hen ORA-17201=XA-sulkemismerkkijonoa ei voi muuntaa oikein Javasta C:hen ORA-17202=RM-nime\u00E4 ei voi muuntaa oikein Javasta C:hen ORA-17203=Osoitintyyppi\u00E4 ei voi muuntaa jlong-tyypiksi ORA-17204=Sy\u00F6tetaulukko on liian lyhyt OCI-kahvojen pit\u00E4miseen ORA-17205=OCISvcCtx-kahvan nouto C-XA:sta k\u00E4ytt\u00E4m\u00E4ll\u00E4 xaoSvcCtx:\u00E4\u00E4 ei onnistunut ORA-17206=OCIEnv-kahvan nouto C-XA:sta k\u00E4ytt\u00E4m\u00E4ll\u00E4 xaoEnv:i\u00E4 ei onnistunut ORA-17207=Ominaisuutta tnsEntry ei m\u00E4\u00E4ritetty kohteessa DataSource ORA-17213=C-XA palautti xa_open-rutiinin aikana XAER_RMERR-arvon ORA-17215=C-XA palautti xa_open-rutiinin aikana XAER_INVAL-arvon ORA-17216=C-XA palautti xa_open-rutiinin aikana XAER_PROTO-arvon ORA-17233=C-XA palautti xa_close-rutiinin aikana XAER_RMERR-arvon ORA-17235=C-XA palautti xa_close-rutiinin aikana XAER_INVAL-arvon ORA-17236=C-XA palautti xa_close-rutiinin aikana XAER_PROTO-arvon # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Yhteysk\u00E4yt\u00E4nt\u00F6virhe ORA-17402=Vain yht\u00E4 RPA-sanomaa odotetaan ORA-17403=Vain yht\u00E4 RXH-sanomaa odotetaan ORA-17404=Vastaanotettu odotettua useampia RXD:it\u00E4 ORA-17405=UAC:n pituus ei ole nolla ORA-17406=Puskurin enimm\u00E4ispituus ylittyy ORA-17407=virheellinen Type Representation(setRep) ORA-17408=virheellinen Type Representation(getRep) ORA-17409=virheellinen puskurin pituus ORA-17410=Vastakkeessa ei en\u00E4\u00E4 luettavia tietoja ORA-17411=Tietotyyppien vastaavuusvirhe ORA-17412=Tyypin pituus ylitt\u00E4\u00E4 enimm\u00E4ispituuden ORA-17413=Avaimen koko ylittyy ORA-17414=Puskurin koko ei riit\u00E4 sarakkeiden nimien tallentamiseen ORA-17415=T\u00E4t\u00E4 tyyppi\u00E4 ei ole k\u00E4sitelty ORA-17416=FATAL ORA-17417=NLS-ongelma, sarakkeiden nimien tulkinta ep\u00E4onnistui ORA-17418=Sis\u00E4isen rakenteen kent\u00E4n pituusvirhe ORA-17419=Virheellinen sarakkeiden m\u00E4\u00E4r\u00E4 palautettu ORA-17420=Oraclen versiota ei m\u00E4\u00E4ritetty ORA-17421=Tyyppej\u00E4 tai yhteytt\u00E4 ei m\u00E4\u00E4ritetty ORA-17422=Virheellinen luokka factory-objektityypiss\u00E4 ORA-17423=PLSQL-lohkoa k\u00E4ytet\u00E4\u00E4n ilman IOV-m\u00E4\u00E4rityst\u00E4 ORA-17424=Yritet\u00E4\u00E4n toista j\u00E4rjestelytoimintoa ORA-17425=PLSQL-lohkon tietovirta palautetaan ORA-17426=Sek\u00E4 IN- ett\u00E4 OUT-sidosten arvo on tyhj\u00E4 (NULL) ORA-17427=Alustamaton OAC k\u00E4yt\u00F6ss\u00E4 ORA-17428=Yhteyden j\u00E4lkeen on kutsuttava sis\u00E4\u00E4nkirjautumista ORA-17429=Ainakin palvelimeen on oltava yhteydess\u00E4 ORA-17430=Palvelimeen on oltava kirjautuneena ORA-17431=J\u00E4sennett\u00E4v\u00E4 SQL-lause on tyhj\u00E4 ORA-17432=virheelliset valinnat All7:ss\u00E4 ORA-17433=kutsussa virheellisi\u00E4 argumentteja ORA-17434=ei tietovirtatilassa ORA-17435=virheellinen m\u00E4\u00E4r\u00E4 in_out_binds-sidoksia IOV:ssa ORA-17436=virheellinen m\u00E4\u00E4r\u00E4 Out-sidoksia ORA-17437=Virhe PLSQL-lohkon IN/OUT-argument(e)issa ORA-17438=Sis\u00E4inen - Odottamaton arvo ORA-17439=Virheellinen SQL-tyyppi ORA-17440=DBItem/DBType on tyhj\u00E4 (NULL) ORA-17441=Oraclen versiota ei tueta. Vanhin tuettu versio on 7.2.3. ORA-17442=Virheellinen viitekohdistimen arvo ORA-17443=THIN-ohjain ei tue k\u00E4ytt\u00E4j\u00E4tunnuksen tai salasanan tyhj\u00E4\u00E4 arvoa ORA-17444=Palvelimelta vastaanotettua TTC-yhteysk\u00E4yt\u00E4nn\u00F6n versiota ei tueta ORA-17445=LOB on jo avattu samassa tapahtumassa ORA-17446=LOB on jo suljettu samassa tapahtumassa ORA-17447=OALL8 on ep\u00E4yhten\u00E4isess\u00E4 tilassa # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_fr.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Erreur interne ORA-17002=Exception d'E/S ORA-17003=Index de colonne non valide ORA-17004=Type de colonne non valide ORA-17005=Type de colonne non pris en charge ORA-17006=Nom de colonne non valide ORA-17007=Colonne dynamique non valide ORA-17008=Connexion interrompue ORA-17009=Instruction ferm\u00E9e ORA-17010=Ensemble de r\u00E9sultats ferm\u00E9 ORA-17011=Ensemble de r\u00E9sultats \u00E9puis\u00E9 ORA-17012=Conflit de type de param\u00E8tre ORA-17014=ResultSet.next n'a pas \u00E9t\u00E9 appel\u00E9 ORA-17015=Instruction annul\u00E9e ORA-17016=D\u00E9lai de l'instruction d\u00E9pass\u00E9 ORA-17017=Curseur d\u00E9j\u00E0 initialis\u00E9 ORA-17018=Curseur non valide ORA-17019=Peut uniquement d\u00E9crire une interrogation ORA-17020=Pr\u00E9-extraction de ligne non valide ORA-17021=D\u00E9finitions manquantes ORA-17022=D\u00E9finitions manquantes dans l'index ORA-17023=Fonction non prise en charge ORA-17024=Aucune donn\u00E9e n'a \u00E9t\u00E9 lue ORA-17025=Erreur dans defines.isNull () ORA-17026=D\u00E9passement num\u00E9rique ORA-17027=Le flux de donn\u00E9es est d\u00E9j\u00E0 ferm\u00E9 ORA-17028=Nouvelles d\u00E9finitions impossibles avant la fermeture de l'ensemble de r\u00E9sultats courant ORA-17029=setReadOnly: connexions en lecture seule non prises en charge ORA-17030=READ_COMMITTED et SERIALIZABLE sont les seuls niveaux de transaction valides ORA-17031=setAutoClose: ne prend en charge que le mode auto close on ORA-17032=impossible de d\u00E9finir la pr\u00E9-extraction de ligne \u00E0 z\u00E9ro ORA-17033=Cha\u00EEne SQL92 mal formul\u00E9e \u00E0 l'emplacement ORA-17034=Token SQL92 non pris en charge \u00E0 l'emplacement ORA-17035=Jeu de caract\u00E8res non pris en charge ORA-17036=exception dans OracleNumber ORA-17037=Echec de conversion entre UTF8 et UCS2 ORA-17038=Tableau d'octets trop court ORA-17039=Tableau de caract\u00E8res trop court ORA-17040=Le sous-protocole doit \u00EAtre pr\u00E9cis\u00E9 dans l'URL de la connexion ORA-17041=Param\u00E8tre IN ou OUT absent dans l'index : ORA-17042=Valeur de lot non valide ORA-17043=Taille maximale du flux de donn\u00E9es non valide ORA-17044=Erreur interne : tableau de donn\u00E9es non allou\u00E9 ORA-17045=Erreur interne : tentative d'acc\u00E8s \u00E0 des valeurs de lien sup\u00E9rieures \u00E0 la valeur de lot ORA-17046=Erreur interne : index non valide pour l'acc\u00E8s aux donn\u00E9es ORA-17047=Erreur dans l'analyse du descripteur de type ORA-17048=Type non d\u00E9termin\u00E9 ORA-17049=Types d'objet JAVA et SQL incoh\u00E9rents ORA-17050=\u00E9l\u00E9ment inexistant dans le vecteur ORA-17051=Cette API ne peut pas \u00EAtre utilis\u00E9e pour les types autres que UDT ORA-17052=R\u00E9f\u00E9rence non valide ORA-17053=Taille non valide ORA-17054=Indicateur LOB non valide ORA-17055=Caract\u00E8re non valide rencontr\u00E9 dans ORA-17056=Jeu de caract\u00E8res non pris en charge (ajoutez orai18n.jar dans votre variable d'environnement CLASSPATH) ORA-17057=LOB ferm\u00E9 ORA-17058=Erreur interne : taux de conversion NLS non valide ORA-17059=Echec de conversion dans la repr\u00E9sentation interne ORA-17060=Echec de construction du descripteur ORA-17061=Descripteur absent ORA-17062=Curseur REF non valide ORA-17063=Pas dans une transaction ORA-17064=La syntaxe n'est pas valide ou le nom de la base de donn\u00E9es est NULL ORA-17065=La classe de conversion a la valeur NULL ORA-17066=N\u00E9cessite une mise en oeuvre sp\u00E9cifique \u00E0 la couche d'acc\u00E8s ORA-17067=L'URL Oracle indiqu\u00E9e n'est pas valide ORA-17068=Arguments non valides dans l'appel ORA-17069=Utiliser un appel XA explicite ORA-17070=La taille des donn\u00E9es est sup\u00E9rieure \u00E0 la taille max. pour ce type ORA-17071=Limite VARRAY maximale d\u00E9pass\u00E9e ORA-17072=La valeur ins\u00E9r\u00E9e est trop grande pour la colonne ORA-17074=Le mod\u00E8le de nom n'est pas valide ORA-17075=Op\u00E9ration non valide sur un ensemble de r\u00E9sultats de type forward-only ORA-17076=Op\u00E9ration non valide sur un ensemble de r\u00E9sultats de type read-only ORA-17077=Echec de la d\u00E9finition de la valeur REF ORA-17078=Impossible d'effectuer l'op\u00E9ration car des connexions sont d\u00E9j\u00E0 ouvertes ORA-17079=Les informations d'identification et de connexion de l'utilisateur ne correspondent pas \u00E0 celles existantes ORA-17080=commande par lot non valide ORA-17081=erreur pendant le traitement par lots ORA-17082=Aucune ligne en cours ORA-17083=Pas sur la ligne d'insertion ORA-17084=Appel\u00E9 sur la ligne d'insertion ORA-17085=Un conflit de valeur s'est produit ORA-17086=Valeur de colonne non d\u00E9finie sur la ligne d'insertion ORA-17087=Conseil de performance ignor\u00E9 : setFetchDirection() ORA-17088=Syntaxe non prise en charge pour le type d'ensemble de r\u00E9sultats et le niveau de simultan\u00E9it\u00E9 requis ORA-17089=erreur interne ORA-17090=op\u00E9ration interdite ORA-17091=Impossible de cr\u00E9er un ensemble de r\u00E9sultats avec le type et/ou le niveau de simultan\u00E9it\u00E9 requis ORA-17092=Impossible de cr\u00E9er ou d'ex\u00E9cuter des instructions JDBC \u00E0 la fin du traitement d'appel ORA-17093=L'op\u00E9ration OCI a renvoy\u00E9 OCI_SUCCESS_WITH_INFO ORA-17094=Non-concordance de la version de type d'objet ORA-17095=La taille du cache d'instruction n'a pas \u00E9t\u00E9 d\u00E9fini ORA-17096=La mise en m\u00E9moire cache d'instruction ne peut pas \u00EAtre activ\u00E9e pour cette connexion logique. ORA-17097=Type d'\u00E9l\u00E9ment de table d'index PL/SQL non valide ORA-17098=Op\u00E9ration LOB vide non valide ORA-17099=Longueur de tableau de table d'index PL/SQL non valide ORA-17100=Objet Java de base de donn\u00E9es non valide ORA-17101=Propri\u00E9t\u00E9s non valides dans l'objet de pool de connexions OCI ORA-17102=Le fichier BFILE est en lecture seule ORA-17103=type de connexion non valide \u00E0 renvoyer via getConnection. Utilisez getJavaSqlConnection \u00E0 la place ORA-17104=L'instruction SQL \u00E0 ex\u00E9cuter ne peut \u00EAtre ni vide ni null ORA-17105=fuseau horaire de la session de connexion non d\u00E9fini ORA-17106=La configuration de pool de connexions de pilote JDBC-OCI indiqu\u00E9e n'est pas valide ORA-17107=Type proxy indiqu\u00E9 non valide ORA-17108=Aucune longueur max. indiqu\u00E9e dans defineColumnType ORA-17109=encodage de caract\u00E8res Java standard introuvable ORA-17110=ex\u00E9cution termin\u00E9e avec avertissement ORA-17111=Le d\u00E9lai de temporisation de cache de connexion TTL indiqu\u00E9 n'est pas valide ORA-17112=L'intervalle de thread indiqu\u00E9 n'est pas valide ORA-17113=La valeur de l'intervalle de thread est sup\u00E9rieure \u00E0 la valeur de temporisation du cache ORA-17114=impossible d'utiliser une validation (commit) de transaction locale dans une transaction globale ORA-17115=impossible d'utiliser une annulation (rollback) de transaction locale dans une transaction globale ORA-17116=impossible d'activer le mode autocommit dans une transaction globale active ORA-17117=impossible de d\u00E9finir un savepoint dans une transaction globale active ORA-17118=impossible d'obtenir l'ID d'un savepoint nomm\u00E9 ORA-17119=impossible d'obtenir le nom d'un savepoint sans nom ORA-17120=impossible de d\u00E9finir un savepoint lorsque le mode autocommit est activ\u00E9 ORA-17121=impossible d'annuler (rollback) un savepoint lorsque le mode autocommit est activ\u00E9 ORA-17122=impossible d'annuler (rollback) un savepoint de transaction locale dans une transaction globale ORA-17123=La taille de cache d'instruction indiqu\u00E9e n'est pas valide ORA-17124=Le d\u00E9lai d'inactivit\u00E9 de cache de connexion indiqu\u00E9 n'est pas valide ORA-17125=Type d'instruction non valide renvoy\u00E9 par le cache explicite ORA-17126=D\u00E9lai d'attente fixe d\u00E9pass\u00E9 ORA-17127=D\u00E9lai d'attente fixe indiqu\u00E9 non valide ORA-17128=La cha\u00EEne SQL n'est pas une interrogation. ORA-17129=La cha\u00EEne SQL n'est pas une instruction DML. ORA-17132=La conversion demand\u00E9e n'est pas valide. ORA-17133=UNUSED ORA-17134=La longueur du param\u00E8tre indiqu\u00E9 dans le code SQL d\u00E9passe 32 caract\u00E8res. ORA-17135=Le nom de param\u00E8tre utilis\u00E9 dans setXXXStream appara\u00EEt plusieurs fois dans le code SQL. ORA-17136=DATALINK URL erron\u00E9, essayez plut\u00F4t getString() ORA-17137=La mise en m\u00E9moire cache de connexions n'est pas activ\u00E9e ou la source de donn\u00E9es n'est pas une source avec cache activ\u00E9 valide. ORA-17138=Nom de cache de connexions non valide. Ce nom doit \u00EAtre une cha\u00EEne unique valide. ORA-17139=Propri\u00E9t\u00E9s de cache de connexions non valides ORA-17140=Ce nom de cache de connexions existe d\u00E9j\u00E0. ORA-17141=Ce nom de cache de connexions n'existe pas. ORA-17142=Ce cache de connexions est d\u00E9sactiv\u00E9. ORA-17143=La connexion trouv\u00E9e dans le cache de connexions n'est pas valide ou est p\u00E9rim\u00E9e. ORA-17144=descripteur d'instruction non ex\u00E9cut\u00E9 ORA-17145=L'\u00E9v\u00E9nement ONS re\u00E7u n'est pas valide. ORA-17146=La version d'\u00E9v\u00E9nement ONS re\u00E7ue n'est pas valide. ORA-17147=Tentative de d\u00E9finition d'un nom de param\u00E8tre qui ne se trouve pas dans le SQL ORA-17148=M\u00E9thode impl\u00E9ment\u00E9e uniquement avec thin ORA-17149=Ceci est d\u00E9j\u00E0 une session proxy. ORA-17150=Arguments erron\u00E9s pour session proxy ORA-17151=La taille de CLOB est trop importante pour un stockage dans une cha\u00EEne Java. ORA-17152=Cette m\u00E9thode n'est impl\u00E9ment\u00E9e que dans les connexions logiques. ORA-17153=Cette m\u00E9thode n'est impl\u00E9ment\u00E9e que dans les connexions physiques. ORA-17154=Impossible de mettre en correspondance un caract\u00E8re Oracle avec Unicode ORA-17155=Impossible de mettre en correspondance Unicode avec un caract\u00E8re Oracle ORA-17156=Taille de tableau pour les valeurs de mesures de bout en bout non valide ORA-17157=setString ne peut traiter que les cha\u00EEnes de moins de 32 766 caract\u00E8res ORA-17158=dur\u00E9e non valide pour cette fonction ORA-17159=la valeur de mesure pour la fonction de trace de bout en bout est trop longue ORA-17160=num\u00E9ro de s\u00E9quence d'ID de contexte d'ex\u00E9cution hors limites ORA-17161=Mode de transaction utilis\u00E9 non valide ORA-17162=Valeur \"holdability\" non prise en charge ORA-17163=Impossible d'utiliser getXAConnection() lorsque la mise en m\u00E9moire cache des connexions est activ\u00E9e ORA-17164=Impossible d'appeler getXAResource() \u00E0 partir d'une connexion physique lorsque la mise en m\u00E9moire cache est activ\u00E9e ORA-17165=Package DBMS_JDBC non pr\u00E9d\u00E9fini sur le serveur pour cette connexion ORA-17166=Impossible d'effectuer une extraction sur une instruction PLSQL ORA-17167=Classes PKI introuvables. Pour utiliser la fonction \"connect /\", vous devez ins\u00E9rer oraclepki.jar dans la variable CLASSPATH ORA-17168=probl\u00E8me d\u00E9tect\u00E9 dans la zone Secret Store. V\u00E9rifiez qu'il existe bien un portefeuille (wallet) ouvert (cwallet.sso) \u00E0 l'emplacement du portefeuille, et assurez-vous que ce portefeuille contient les informations d'identification et de connexion correctes, \u00E0 l'aide de l'utilitaire mkstore ORA-17169=Impossible de lier le flux de donn\u00E9es \u00E0 un objet ScrollableResultSet ou UpdatableResultSet ORA-17170=L'espace de noms ne peut pas \u00EAtre vide ORA-17171=La longueur de l'attribut ne doit pas d\u00E9passer 30 caract\u00E8res ORA-17172=Cette valeur d'attribut ne doit pas d\u00E9passer 400 caract\u00E8res ORA-17173=Certains param\u00E8tres renvoy\u00E9s n'ont pas \u00E9t\u00E9 inscrits ORA-17174=Le seul espace de noms pris en charge est CLIENTCONTEXT ORA-17175=Erreur lors de la configuration \u00E0 distance d'ONS ORA-17200=Impossible de convertir correctement la cha\u00EEne XA open de Java en C ORA-17201=Impossible de convertir correctement la cha\u00EEne de XA close de Java en C ORA-17202=Impossible de convertir correctement le nom RM de Java en C ORA-17203=Impossible de convertir le type de pointeur en jlong ORA-17204=Tableau d'entr\u00E9e trop court pour contenir les descripteurs OCI ORA-17205=Echec d'obtention du descripteur OCISvcCtx \u00E0 partir de C-XA \u00E0 l'aide de xaoSvcCtx ORA-17206=Echec d'obtention du descripteur OCIEnv \u00E0 partir de C-XA \u00E0 l'aide de xaoEnv ORA-17207=La propri\u00E9t\u00E9 tnsEntry n'a pas \u00E9t\u00E9 d\u00E9finie dans la source de donn\u00E9es ORA-17213=C-XA a renvoy\u00E9 XAER_RMERR au cours de xa_open ORA-17215=C-XA a renvoy\u00E9 XAER_INVAL au cours de xa_open ORA-17216=C-XA a renvoy\u00E9 XAER_PROTO au cours de xa_open ORA-17233=C-XA a renvoy\u00E9 XAER_RMERR au cours de xa_close ORA-17235=C-XA a renvoy\u00E9 XAER_INVAL au cours de xa_close ORA-17236=C-XA a renvoy\u00E9 XAER_PROTO au cours de xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Violation de protocole ORA-17402=Un seul message RPA est attendu ORA-17403=Un seul message RXH est attendu ORA-17404=Plus de messages RXD re\u00E7us que pr\u00E9vu ORA-17405=La longueur UAC n'est pas \u00E9gale \u00E0 z\u00E9ro ORA-17406=D\u00E9passement de la taille maximale du tampon ORA-17407=repr\u00E9sentation de type (setRep) non valide ORA-17408=repr\u00E9sentation de type (getRep) non valide ORA-17409=taille de tampon non valide ORA-17410=Il n'y a plus de donn\u00E9es \u00E0 lire dans le socket ORA-17411=Non-concordance des repr\u00E9sentations de type de donn\u00E9es ORA-17412=La longueur du type est sup\u00E9rieure \u00E0 la valeur maximale ORA-17413=D\u00E9passement de la taille de la cl\u00E9 ORA-17414=Taille de tampon insuffisante pour le stockage des noms de colonnes ORA-17415=Ce type n'a pas \u00E9t\u00E9 g\u00E9r\u00E9 ORA-17416=FATAL ORA-17417=Probl\u00E8me NLS, \u00E9chec de d\u00E9codage des noms de colonne ORA-17418=Erreur de longueur de champ de la structure interne ORA-17419=Nombre de colonnes renvoy\u00E9 non valide ORA-17420=Version d'Oracle non d\u00E9finie ORA-17421=Connexion ou types non d\u00E9finis ORA-17422=Classe non valide dans l'objet COM cr\u00E9ateur de classes ORA-17423=Utilisation d'un bloc PLSQL sans d\u00E9finition d'IOV ORA-17424=Tentative de r\u00E9alisation d'une autre op\u00E9ration de conversion et de canalisation du flux de donn\u00E9es ORA-17425=Renvoi d'une cha\u00EEne dans le bloc PLSQL ORA-17426=Les liens IN et OUT ont la valeur NULL ORA-17427=Utilisation d'une OAC non initialis\u00E9e ORA-17428=La commande Logon doit \u00EAtre appel\u00E9e apr\u00E8s la connexion ORA-17429=Doit \u00EAtre au moins connect\u00E9 au serveur ORA-17430=Doit \u00EAtre connect\u00E9 au serveur ORA-17431=L'instruction SQL \u00E0 analyser a la valeur NULL ORA-17432=options non valides dans all7 ORA-17433=arguments non valides dans l'appel ORA-17434=mode d'\u00E9criture en continu non activ\u00E9 ORA-17435=nombre de in_out_binds dans IOV non valide ORA-17436=nombre incorrect de liens outbinds ORA-17437=Erreur dans les arguments IN/OUT du bloc PLSQL ORA-17438=Interne - Valeur inattendue ORA-17439=Type SQL non valide ORA-17440=DBItem/DBType a la valeur NULL ORA-17441=Version d'Oracle non prise en charge. La premi\u00E8re version support\u00E9e est la 7.2.3. ORA-17442=Valeur de Refcursor non valide ORA-17443=Utilisateur ou mot de passe NULL non pris en charge par le pilote THIN ORA-17444=La version de protocole TTC re\u00E7ue du serveur n'est pas prise en charge ORA-17445=LOB d\u00E9j\u00E0 ouvert dans la m\u00EAme transaction ORA-17446=LOB d\u00E9j\u00E0 ferm\u00E9 dans la m\u00EAme transaction ORA-17447=OALL8 est dans un \u00E9tat incoh\u00E9rent # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_hu.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Bels\u0151 hiba ORA-17002=Io kiv\u00E9tel ORA-17003=\u00C9rv\u00E9nytelen oszlopindex ORA-17004=\u00C9rv\u00E9nytelen oszlopt\u00EDpus ORA-17005=Nem t\u00E1mogatott oszlopt\u00EDpus ORA-17006=\u00C9rv\u00E9nytelen oszlopn\u00E9v ORA-17007=\u00C9rv\u00E9nytelen dinamikus oszlop ORA-17008=Bez\u00E1rt kapcsolat ORA-17009=Bez\u00E1rt utas\u00EDt\u00E1s ORA-17010=Bez\u00E1rt eredm\u00E9nyhalmaz ORA-17011=Kimer\u00FClt eredm\u00E9nyhalmaz ORA-17012=Param\u00E9tert\u00EDpus-\u00FCtk\u00F6z\u00E9s ORA-17014=A ResultSet.next nem ker\u00FClt megh\u00EDv\u00E1sra. ORA-17015=Az utas\u00EDt\u00E1s v\u00E9grehajt\u00E1sa meg lett szak\u00EDtva. ORA-17016=Az utas\u00EDt\u00E1s v\u00E9grehajt\u00E1sa id\u0151t\u00FAll\u00E9p\u00E9s miatt meg lett szak\u00EDtva. ORA-17017=A kurzor m\u00E1r inicializ\u00E1lva van. ORA-17018=\u00C9rv\u00E9nytelen kurzor. ORA-17019=Csak lek\u00E9rdez\u00E9s \u00EDrhat\u00F3 le. ORA-17020=\u00C9rv\u00E9nytelen az el\u0151re behozott sorok sz\u00E1ma. ORA-17021=Hi\u00E1nyz\u00F3 defin\u00EDci\u00F3k ORA-17022=Hi\u00E1nyz\u00F3 defin\u00EDci\u00F3k a k\u00F6vetkez\u0151 indexn\u00E9l: ORA-17023=Nem t\u00E1mogatott tulajdons\u00E1g ORA-17024=Nem ker\u00FClt beolvas\u00E1sra adat. ORA-17025=Hiba a k\u00F6vetkez\u0151ben: defines.isNull (). ORA-17026=Numerikus t\u00FAlcsordul\u00E1s ORA-17027=Az adatfolyam m\u00E1r le van z\u00E1rva. ORA-17028=Nem lehet \u00FAj defin\u00EDci\u00F3t megadni, am\u00EDg az aktu\u00E1lis eredm\u00E9nyhalmaz (ResultSet) nincs lez\u00E1rva. ORA-17029=setReadOnly: a csak olvashat\u00F3 kapcsolatok nem t\u00E1mogatottak. ORA-17030=Csak READ_COMMITTED \u00E9s SERIALIZABLE adhat\u00F3 meg \u00E9rv\u00E9nyes tranzakci\u00F3szintk\u00E9nt. ORA-17031=setAutoClose: csak az automatikus bez\u00E1r\u00E1si m\u00F3d bekapcsolt \u00E1llapota haszn\u00E1lhat\u00F3. ORA-17032=az el\u0151re behozott sorok sz\u00E1ma nem lehet nulla. ORA-17033=Helytelen form\u00E1j\u00FA SQL92 karakterl\u00E1nc a k\u00F6vetkez\u0151 helyen: ORA-17034=Nem t\u00E1mogatott SQL92 token a k\u00F6vetkez\u0151 helyen: ORA-17035=Nem t\u00E1mogatott karakterk\u00E9szlet. ORA-17036=kiv\u00E9tel az OracleNumber elemben ORA-17037=Sikertelen a konvert\u00E1l\u00E1s UTF8 \u00E9s UCS2 k\u00F6z\u00F6tt. ORA-17038=A b\u00E1jtt\u00F6mb nem el\u00E9g hossz\u00FA. ORA-17039=A karaktert\u00F6mb nem el\u00E9g hossz\u00FA. ORA-17040=Az alprotokollt meg kell adni a kapcsol\u00F3d\u00E1si URL c\u00EDmben. ORA-17041=Hi\u00E1nyz\u00F3 IN vagy OUT param\u00E9ter a k\u00F6vetkez\u0151 indexn\u00E9l: ORA-17042=\u00C9rv\u00E9nytelen k\u00F6teg\u00E9rt\u00E9k ORA-17043=\u00C9rv\u00E9nytelen az adatfolyam maxim\u00E1lis m\u00E9rete. ORA-17044=Bels\u0151 hiba: az adatt\u00F6mb helye nincs lefoglalva. ORA-17045=Bels\u0151 hiba: a k\u00F6teg\u00E9rt\u00E9ken t\u00FAli k\u00F6t\u00E9si \u00E9rt\u00E9kek el\u00E9r\u00E9s\u00E9re t\u00F6rt\u00E9nt k\u00EDs\u00E9rlet. ORA-17046=Bels\u0151 hiba: \u00E9rv\u00E9nytelen index az adathozz\u00E1f\u00E9r\u00E9shez. ORA-17047=Hiba t\u00F6rt\u00E9nt a t\u00EDpusle\u00EDr\u00F3 elemz\u00E9se k\u00F6zben. ORA-17048=Nem defini\u00E1lt t\u00EDpus. ORA-17049=Nem \u00F6sszeill\u0151 java \u00E9s sql objektumt\u00EDpusok. ORA-17050=nincs ilyen elem a vektort\u00F6mbben. ORA-17051=Ez az API nem haszn\u00E1lhat\u00F3 nem UDT t\u00EDpusokhoz. ORA-17052=Ez a hivatkoz\u00E1s nem \u00E9rv\u00E9nyes. ORA-17053=A m\u00E9ret nem \u00E9rv\u00E9nyes. ORA-17054=A LOB helymeghat\u00E1roz\u00F3ja nem \u00E9rv\u00E9nyes. ORA-17055=\u00C9rv\u00E9nytelen karakter a k\u00F6vetkez\u0151 helyen: ORA-17056=Nem t\u00E1mogatott karakterk\u00E9szlet (adja hozz\u00E1 az orai18n.jar f\u00E1jlt a classpath v\u00E1ltoz\u00F3hoz) ORA-17057=Bez\u00E1rt LOB ORA-17058=Bels\u0151 hiba: \u00E9rv\u00E9nytelen NLS konverzi\u00F3s ar\u00E1ny. ORA-17059=A bels\u0151 \u00E1br\u00E1zol\u00E1sm\u00F3dra val\u00F3 konverzi\u00F3 sikertelen volt. ORA-17060=A le\u00EDr\u00F3 l\u00E9trehoz\u00E1sa sikertelen volt. ORA-17061=Hi\u00E1nyz\u00F3 le\u00EDr\u00F3 ORA-17062=A hivatkoz\u00E1si kurzor \u00E9rv\u00E9nytelen. ORA-17063=Nem szerepel tranzakci\u00F3ban. ORA-17064=\u00C9rv\u00E9nytelen szintaxis vagy \u00FCres adatb\u00E1zisn\u00E9v. ORA-17065=\u00DCres konverzi\u00F3s oszt\u00E1ly. ORA-17066=A hozz\u00E1f\u00E9r\u00E9si r\u00E9tegre jellemz\u0151 implement\u00E1l\u00E1s sz\u00FCks\u00E9ges. ORA-17067=\u00C9rv\u00E9nytelen a megadott Oracle URL. ORA-17068=\u00C9rv\u00E9nytelen argumentumok a h\u00EDv\u00E1s(ok)ban. ORA-17069=Explicit XA h\u00EDv\u00E1st kell haszn\u00E1lni. ORA-17070=Az adatm\u00E9ret nagyobb a t\u00EDpusra enged\u00E9lyezett legnagyobb m\u00E9retn\u00E9l. ORA-17071=T\u00FAll\u00E9pte a VARRAY fels\u0151 hat\u00E1r\u00E1t. ORA-17072=A beillesztett \u00E9rt\u00E9k t\u00FAl nagy az oszlop sz\u00E1m\u00E1ra. ORA-17074=\u00E9rv\u00E9nytelen n\u00E9vminta ORA-17075=\u00C9rv\u00E9nytelen m\u0171velet a csak tov\u00E1bb\u00EDthat\u00F3 eredm\u00E9nyk\u00E9szlethez. ORA-17076=\u00C9rv\u00E9nytelen m\u0171velet a csak olvashat\u00F3 eredm\u00E9nyk\u00E9szlethez. ORA-17077=A REF \u00E9rt\u00E9k be\u00E1ll\u00EDt\u00E1sa nem siker\u00FClt. ORA-17078=A m\u0171velet nem hajthat\u00F3 v\u00E9gre, mert a kapcsolatok m\u00E1r meg vannak nyitva. ORA-17079=A felhaszn\u00E1l\u00F3i azonos\u00EDt\u00F3 \u00E9s jelsz\u00F3 nem egyezik a l\u00E9tez\u0151kkel. ORA-17080=\u00E9rv\u00E9nytelen k\u00F6tegparancs ORA-17081=hiba t\u00F6rt\u00E9nt a k\u00F6tegel\u00E9s sor\u00E1n ORA-17082=Nincs aktu\u00E1lis sor. ORA-17083=Nincs a beilleszt\u00E9si sorban. ORA-17084=H\u00EDv\u00E1s \u00E9rkezett a beilleszt\u00E9si sorra. ORA-17085=\u00C9rt\u00E9k\u00FCtk\u00F6z\u00E9sek t\u00F6rt\u00E9ntek. ORA-17086=\u00C9rv\u00E9nytelen oszlop\u00E9rt\u00E9k a beilleszt\u00E9si sorban. ORA-17087=Figyelmen k\u00EDv\u00FCl hagyott teljes\u00EDtm\u00E9nytipp: setFetchDirection() ORA-17088=Nem t\u00E1mogatott szintaxis a k\u00E9rt eredm\u00E9nyk\u00E9szlet-t\u00EDpushoz \u00E9s konkurenciaszinthez. ORA-17089=bels\u0151 hiba ORA-17090=a m\u0171velet nem megengedett ORA-17091=Nem hozhat\u00F3 l\u00E9tre az eredm\u00E9nyk\u00E9szlet a k\u00E9rt t\u00EDpus-, illetve p\u00E1rhuzamoss\u00E1gi szinten. ORA-17092=A h\u00EDv\u00E1sfeldolgoz\u00E1s v\u00E9g\u00E9n nem hozhat\u00F3k l\u00E9tre \u00E9s nem hajthat\u00F3k v\u00E9gre JDBC utas\u00EDt\u00E1sok. ORA-17093=Az OCI m\u0171velet OCI_SUCCESS_WITH_INFO \u00E9rt\u00E9kkel t\u00E9rt vissza. ORA-17094=Nem egyez\u0151 objektumt\u00EDpus-verzi\u00F3k ORA-17095=Az utas\u00EDt\u00E1s-gyors\u00EDt\u00F3 m\u00E9rete nem lett be\u00E1ll\u00EDtva. ORA-17096=Ehhez a logikai kapcsolathoz nem haszn\u00E1lhat\u00F3 utas\u00EDt\u00E1st\u00E1rol\u00E1s. ORA-17097=\u00C9rv\u00E9nytelen elemt\u00EDpus a PL/SQL-indext\u00E1bl\u00E1ban ORA-17098=\u00C9rv\u00E9nytelen \u00FCres lob m\u0171velet ORA-17099=\u00C9r\u00E9vnytelen a PL/SQL indext\u00E1blat\u00F6mbj\u00E9nek hossza. ORA-17100=\u00C9rv\u00E9nytelen adatb\u00E1zis Java-objektum ORA-17101=\u00C9rv\u00E9nytelen tulajdons\u00E1gok tal\u00E1lhat\u00F3k az OCI kapcsolatigy\u0171jt\u0151sor-objektumban. ORA-17102=A Bfile csak olvashat\u00F3. ORA-17103=A kapcsolati t\u00EDpus nem \u00E9rv\u00E9nyes a getConnection met\u00F3duson kereszt\u00FCli visszat\u00E9r\u00E9shez. Haszn\u00E1lja ink\u00E1bb a getJavaSqlConnection met\u00F3dust. ORA-17104=A v\u00E9grehajtand\u00F3 SQL-utas\u00EDt\u00E1s nem lehet \u00FCres vagy null \u00E9rt\u00E9k\u0171. ORA-17105=A kapcsolati munkamenet id\u0151z\u00F3n\u00E1ja nem lett be\u00E1ll\u00EDtva. ORA-17106=a megadott JDBC-OCI illeszt\u0151program kapcsolatpool-konfigur\u00E1ci\u00F3ja \u00E9rv\u00E9nytelen. ORA-17107=\u00E9rv\u00E9nytelen a megadott proxyt\u00EDpus ORA-17108=A defineColumnType-hoz nincs megadva maxim\u00E1lis hossz\u00FAs\u00E1g. ORA-17109=az alap\u00E9rtelmezett Java karakterk\u00F3dol\u00E1s nem tal\u00E1lhat\u00F3 ORA-17110=a v\u00E9grehajt\u00E1s figyelmeztet\u00E9ssel z\u00E1rult ORA-17111=\u00C9rv\u00E9nytelen a kapcsolatgyors\u00EDt\u00F3-TTL megadott id\u0151t\u00FAll\u00E9p\u00E9se. ORA-17112=A sz\u00E1lak megadott k\u00E9sleltet\u00E9si ideje \u00E9rv\u00E9nytelen. ORA-17113=A sz\u00E1lak k\u00E9sleltet\u00E9si ideje nagyobb, mint a gyors\u00EDt\u00F3t\u00E1r id\u0151t\u00FAll\u00E9p\u00E9si ideje. ORA-17114=A helyi tranzakci\u00F3-j\u00F3v\u00E1hagy\u00E1s nem haszn\u00E1lhat\u00F3 a glob\u00E1lis tranzakci\u00F3ban. ORA-17115=A helyi tranzakci\u00F3-visszag\u00F6rget\u00E9s nem haszn\u00E1lhat\u00F3 a glob\u00E1lis tranzakci\u00F3ban. ORA-17116=nem lehetett bekapcsolni az automatikus j\u00F3v\u00E1hagy\u00E1st az egyik akt\u00EDv glob\u00E1lis tranzakci\u00F3ban ORA-17117=nem lehetett l\u00E9trehozni a ment\u00E9si pontot az egyik akt\u00EDv glob\u00E1lis tranzakci\u00F3ban ORA-17118=Nem siker\u00FClt azonos\u00EDt\u00F3t szerezni az egyik n\u00E9vvel rendelkez\u0151 ment\u00E9si pontnak. ORA-17119=Nem siker\u00FClt nevet szerezni az egyik n\u00E9vvel nem rendelkez\u0151 ment\u00E9si pontnak. ORA-17120=Nem siker\u00FClt ment\u00E9si pontot be\u00E1ll\u00EDtani az automatikus j\u00F3v\u00E1hagy\u00E1s bekapcsolt \u00E1llapota mellett. ORA-17121=Nem siker\u00FClt a visszag\u00F6rget\u00E9s az automatikus j\u00F3v\u00E1hagy\u00E1s bekapcsolt \u00E1llapota mellett. ORA-17122=Nem siker\u00FClt a visszag\u00F6rget\u00E9s egy helyi txn ment\u00E9si ponthoz az egyik helyi tranzakci\u00F3ban. ORA-17123=\u00C9rv\u00E9nytelen utas\u00EDt\u00E1sgyors\u00EDt\u00F3t\u00E1r-m\u00E9ret lett megadva. ORA-17124=\u00C9rv\u00E9nytelen kapcsolatgyors\u00EDt\u00F3-inaktivit\u00E1si id\u0151t\u00FAll\u00E9p\u00E9s lett megadva. ORA-17125=Helytelen utas\u00EDt\u00E1st\u00EDpust adott vissza az explicit gyors\u00EDt\u00F3t\u00E1r. ORA-17126=Letelt a Fixed Wait id\u0151tartam. ORA-17127=\u00C9rv\u00E9nytelen Fixed Wait id\u0151tartamot adott meg. ORA-17128=Az SQL-sz\u00F6veg nem lek\u00E9rdez\u00E9s. ORA-17129=Az SQL-sz\u00F6veg nem DML-utas\u00EDt\u00E1s. ORA-17132=A k\u00E9rt konverzi\u00F3 \u00E9rv\u00E9nytelen. ORA-17133=UNUSED ORA-17134=A n\u00E9vvel rendelkez\u0151 SQL-param\u00E9ter hossza meghaladta a 32 karaktert. ORA-17135=A setXXXStreamben haszn\u00E1lt param\u00E9ter neve egyn\u00E9l t\u00F6bbsz\u00F6r jelenik meg az SQL-ben. ORA-17136=Hib\u00E1s form\u00E1tum\u00FA DATALINK URL, pr\u00F3b\u00E1lja ink\u00E1bb getString() f\u00FCggv\u00E9nyt. ORA-17137=A kapcsolatn\u00E1l nem enged\u00E9lyezett a gyors\u00EDt\u00F3t\u00E1r haszn\u00E1lata, vagy a gyors\u00EDt\u00F3t\u00E1rral rendelkez\u0151 adatforr\u00E1s \u00E9rv\u00E9nytelen. ORA-17138=\u00C9rv\u00E9nytelen a kapcsolat gyors\u00EDt\u00F3t\u00E1r\u00E1nak a neve. \u00C9rv\u00E9nyes String vagy Unique t\u00EDpus\u00FAnak kell lennie. ORA-17139=\u00C9rv\u00E9nytelenek a kapcsolathoz tartoz\u00F3 gyors\u00EDt\u00F3t\u00E1r tulajdons\u00E1gai. ORA-17140=A kapcsolathoz tartoz\u00F3 gyors\u00EDt\u00F3t\u00E1r neve m\u00E1r l\u00E9tezik. ORA-17141=A kapcsolathoz tartoz\u00F3 gyors\u00EDt\u00F3t\u00E1r neve m\u00E9g nem l\u00E9tezik. ORA-17142=A kapcsolathoz tartoz\u00F3 gyors\u00EDt\u00F3t\u00E1r neve tiltott. ORA-17143=\u00C9rv\u00E9nytelen vagy lej\u00E1rt kapcsolati \u00E1llapot van a kapcsolathoz tartoz\u00F3 gyors\u00EDt\u00F3t\u00E1rban. ORA-17144=utas\u00EDt\u00E1sle\u00EDr\u00F3 nincs v\u00E9grehajtva ORA-17145=\u00C9rv\u00E9nytelen ONS-esem\u00E9ny. ORA-17146=\u00C9rv\u00E9nytelen ONS-esem\u00E9nyverzi\u00F3. ORA-17147=K\u00EDs\u00E9rlet t\u00F6rt\u00E9nt egy SQL-ben nem l\u00E9tez\u0151 param\u00E9tern\u00E9v be\u00E1ll\u00EDt\u00E1s\u00E1ra. ORA-17148=A met\u00F3dus csak a v\u00E9kony kliensen van megval\u00F3s\u00EDtva. ORA-17149=Ez m\u00E1r proxy munkamenet. ORA-17150=A proxy munkamenet argumentumai hib\u00E1sak. ORA-17151=A CLOB (nagy m\u00E9ret\u0171, karakter t\u00EDpus\u00FA objektum) t\u00FAl nagy Java Stringben val\u00F3 t\u00E1rol\u00E1shoz. ORA-17152=Ez a met\u00F3dus csak logikai kapcsolatokban van megval\u00F3s\u00EDtva. ORA-17153=Ez a met\u00F3dus csak fizikai kapcsolatokban van megval\u00F3s\u00EDtva. ORA-17154=Az Oracle karakter nem k\u00E9pezhet\u0151 le Unicode karakterre. ORA-17155=A Unicode karakter nem k\u00E9pezhet\u0151 le Oracle karakterre. ORA-17156=A v\u00E9gpont-v\u00E9gpont m\u00E9r\u0151sz\u00E1m \u00E9rt\u00E9keinek t\u00F6mbm\u00E9rete \u00E9rv\u00E9nytelen. ORA-17157=a setString csak 32766-n\u00E1l kevesebb karaktert tartalmaz\u00F3 karakterl\u00E1ncot k\u00E9pes feldolgozni ORA-17158=az id\u0151tartam \u00E9rv\u00E9nytelen ehhez a f\u00FCggv\u00E9nyhez ORA-17159=a v\u00E9gpont-v\u00E9gpont nyomk\u00F6vet\u00E9s m\u00E9r\u0151sz\u00E1m\u00E1nak \u00E9rt\u00E9ke t\u00FAl hossz\u00FA ORA-17160=a v\u00E9grehajt\u00E1si k\u00F6rnyezet azonos\u00EDt\u00F3j\u00E1nak sorsz\u00E1ma a tartom\u00E1nyon k\u00EDv\u00FCl van ORA-17161=\u00C9rv\u00E9nytelen az alkalmazott tranzakci\u00F3m\u00F3d ORA-17162=\u00C9rv\u00E9nytelen t\u00E1rolhat\u00F3s\u00E1gi \u00E9rt\u00E9k ORA-17163=Ha a kapcsolatok gyors\u00EDt\u00F3t\u00E1raz\u00E1sa be van kapcsolva, a getXAConnection() nem haszn\u00E1lhat\u00F3 ORA-17164=Ha a gyors\u00EDt\u00F3t\u00E1raz\u00E1s be van kapcsolva, a getXAResource() nem h\u00EDvhat\u00F3 meg a fizikai kapcsolatb\u00F3l ORA-17165=Ehhez a kapcsolathoz a DBMS_JDBC csomag nincs el\u0151re be\u00E1ll\u00EDtva a kiszolg\u00E1l\u00F3n ORA-17166=Nem v\u00E9gezhet\u0151 el a beolvas\u00E1s egy PLSQL utas\u00EDt\u00E1sra vonatkoz\u00F3an ORA-17167=Nem tal\u00E1lhat\u00F3 PKI-oszt\u00E1ly. A 'connect /' funkci\u00F3 haszn\u00E1lat\u00E1hoz az oraclepki.jar f\u00E1jlnak az oszt\u00E1lyel\u00E9r\u00E9si \u00FAtvonalon kell lennie ORA-17168=Hiba t\u00F6rt\u00E9nt a titkos t\u00E1rban. Ellen\u0151rizze az mkstore seg\u00E9sprogrammal, hogy a t\u00E1rcat\u00E1rol\u00E1si helyen van-e nyitott t\u00E1rca (cwallet.sso), \u00E9s az a helyes azonos\u00EDt\u00F3 adatokat tartalmazza-e ORA-17169=Nem rendelhet\u0151 adatfolyam a ScrollableResultSet vagy az UpdatableResultSet attrib\u00FAtumhoz ORA-17170=A n\u00E9vter\u00FClet nem lehet \u00FCres ORA-17171=Az attrib\u00FAtum legfeljebb 30 karakter hossz\u00FAs\u00E1g\u00FA lehet ORA-17172=Az attrib\u00FAtum \u00E9rt\u00E9ke legfeljebb 400 karakter hossz\u00FAs\u00E1g\u00FA lehet ORA-17173=Nincs minden visszat\u00E9r\u00E9si param\u00E9ter regisztr\u00E1lva ORA-17174=Az egyetlen t\u00E1mogatott n\u00E9vt\u00E9r a CLIENTCONTEXT ORA-17175=Hiba t\u00F6rt\u00E9nt a t\u00E1voli ONS-konfigur\u00E1l\u00E1s sor\u00E1n ORA-17200=Az XA megnyit\u00E1si karakterl\u00E1ncot nem siker\u00FClt megfelel\u0151en Java-r\u00F3l C-re konvert\u00E1lni. ORA-17201=Az XA bez\u00E1r\u00E1si karakterl\u00E1ncot nem siker\u00FClt megfelel\u0151en Java-r\u00F3l C-re konvert\u00E1lni. ORA-17202=Az RM nevet nem siker\u00FClt megfelel\u0151en Java-r\u00F3l C-re konvert\u00E1lni. ORA-17203=A mutat\u00F3t\u00EDpust nem siker\u00FClt jlong t\u00EDpusra m\u00F3dos\u00EDtani. ORA-17204=A beviteli t\u00F6mb t\u00FAl r\u00F6vid az OCI kezel\u0151k t\u00E1rol\u00E1s\u00E1hoz. ORA-17205=Nem siker\u00FClt az OCISvcCtx kezel\u0151 xaoSvcCtx \u00E1ltali bek\u00E9r\u00E9se az C-XA elemt\u0151l. ORA-17206=Nem siker\u00FClt az OCIEnv kezel\u0151 xaoEnv \u00E1ltali bek\u00E9r\u00E9se az C-XA elemt\u0151l. ORA-17207=A tnsEntry tulajdons\u00E1g nem lett be\u00E1ll\u00EDtva a DataSource elemn\u00E9l. ORA-17213=A C-XA XAER_RMERR hiba\u00FCzenetet adott vissza az xa_open v\u00E9grehajt\u00E1sa k\u00F6zben. ORA-17215=A C-XA XAER_INVAL hiba\u00FCzenetet adott vissza az xa_open v\u00E9grehajt\u00E1sa k\u00F6zben. ORA-17216=A C-XA XAER_PROTO hiba\u00FCzenetet adott vissza az xa_open v\u00E9grehajt\u00E1sa k\u00F6zben. ORA-17233=A C-XA XAER_RMERR hiba\u00FCzenetet adott vissza az xa_close v\u00E9grehajt\u00E1sa k\u00F6zben. ORA-17235=A C-XA XAER_INVAL hiba\u00FCzenetet adott vissza az xa_close v\u00E9grehajt\u00E1sa k\u00F6zben. ORA-17236=A C-XA XAER_PROTO hiba\u00FCzenetet adott vissza az xa_close v\u00E9grehajt\u00E1sa k\u00F6zben. # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Protokoll megs\u00E9rt\u00E9se ORA-17402=Csak egy RPA \u00FCzenet \u00E9rkez\u00E9s\u00E9re sz\u00E1m\u00EDt. ORA-17403=Csak egy RXH \u00FCzenet \u00E9rkez\u00E9s\u00E9re sz\u00E1m\u00EDt. ORA-17404=A v\u00E1rtn\u00E1l t\u00F6bb RXD \u00E9rkezett. ORA-17405=Az UAC hossza nem nulla. ORA-17406=T\u00FAll\u00E9pte a maxim\u00E1lis pufferm\u00E9retet. ORA-17407=\u00E9rv\u00E9nytelen t\u00EDpus\u00E1br\u00E1zol\u00E1s(setRep) ORA-17408=\u00E9rv\u00E9nytelen t\u00EDpus\u00E1br\u00E1zol\u00E1s(getRep) ORA-17409=\u00E9rv\u00E9nytelen pufferhossz ORA-17410=Nem olvashat\u00F3 t\u00F6bb adat a programcsatorn\u00E1r\u00F3l. ORA-17411=Az adatt\u00EDpusok \u00E1br\u00E1zol\u00E1si m\u00F3dja nem egyezik. ORA-17412=A megengedettn\u00E9l nagyobb a t\u00EDpushossz. ORA-17413=T\u00FAll\u00E9pte a kulcs m\u00E9ret\u00E9t. ORA-17414=A puffer m\u00E9rete nem el\u00E9gs\u00E9ges az oszlopnevek t\u00E1rol\u00E1s\u00E1hoz. ORA-17415=Ennek a t\u00EDpusnak a kezel\u00E9se nem t\u00F6rt\u00E9nt meg. ORA-17416=FATAL ORA-17417=NLS probl\u00E9ma, az oszlopnevek dek\u00F3dol\u00E1sa nem siker\u00FClt. ORA-17418=Hiba a bels\u0151 strukt\u00FAra mez\u0151hossz\u00E1ban. ORA-17419=\u00C9rv\u00E9nytelen sz\u00E1m\u00FA oszlopot kapott vissza a rendszer. ORA-17420=Az Oracle verzi\u00F3sz\u00E1ma nincs megadva. ORA-17421=A t\u00EDpusok vagy a kapcsol\u00F3d\u00E1s nincs defini\u00E1lva. ORA-17422=\u00C9rv\u00E9nytelen oszt\u00E1ly a factory-ban. ORA-17423=PLSQL blokk haszn\u00E1lata IOV defini\u00E1l\u00E1sa n\u00E9lk\u00FCl ORA-17424=K\u00EDs\u00E9rlet k\u00FCl\u00F6nb\u00F6z\u0151 rendez\u0151m\u0171veletek v\u00E9grehajt\u00E1s\u00E1ra. ORA-17425=Folyam visszaad\u00E1sa egy PLSQL blokkban ORA-17426=Az IN \u00E9s OUT param\u00E9terek egyar\u00E1nt NULL \u00E9rt\u00E9k\u0171ek. ORA-17427=Nem inicializ\u00E1lt OAC haszn\u00E1lata ORA-17428=A bejelentkez\u00E9st a kapcsol\u00F3d\u00E1s ut\u00E1n kell megh\u00EDvni. ORA-17429=Legal\u00E1bb kapcsol\u00F3dni kell egy kiszolg\u00E1l\u00F3hoz. ORA-17430=Be kell jelentkezni egy kiszolg\u00E1l\u00F3ra. ORA-17431=Az elemezni k\u00EDv\u00E1nt SQL utas\u00EDt\u00E1s NULL \u00E9rt\u00E9k\u0171. ORA-17432=\u00E9rv\u00E9nytelen opci\u00F3k a h\u00EDv\u00E1sban ORA-17433=\u00E9rv\u00E9nytelen argumentumok a h\u00EDv\u00E1sban ORA-17434=nem folyamkezel\u0151 \u00FCzemm\u00F3dban van. ORA-17435=\u00E9rv\u00E9nytelen az in_out_binds sz\u00E1m az IOV-ben. ORA-17436=\u00E9rv\u00E9nytelen a kimen\u0151 param\u00E9terek (outbinds) sz\u00E1ma. ORA-17437=Hiba a PLSQL blokk bemeneti, illetve kimeneti argumentumaiban. ORA-17438=Bels\u0151 - V\u00E1ratlan \u00E9rt\u00E9k ORA-17439=\u00C9rv\u00E9nytelen SQL t\u00EDpus ORA-17440=A DBItem/DBType \u00E9rt\u00E9k \u00FCres. ORA-17441=Ezen Oracle verzi\u00F3 haszn\u00E1lata nem t\u00E1mogatott. A legr\u00E9gebbi t\u00E1mogatott verzi\u00F3 a 7.2.3-as. ORA-17442=A Refcursor \u00E9rt\u00E9ke \u00E9rv\u00E9nytelen. ORA-17443=\u00DCres felhaszn\u00E1l\u00F3n\u00E9v vagy nem t\u00E1mogatott THIN meghajt\u00F3. ORA-17444=A kiszolg\u00E1l\u00F3t\u00F3l kapott TTC protokollverzi\u00F3 nem t\u00E1mogatott. ORA-17445=A LOB ugyanebben a tranzakci\u00F3ban m\u00E1r meg van nyitva ORA-17446=A LOB ugyanebben a tranzakci\u00F3ban m\u00E1r le van z\u00E1rva ORA-17447=OALL8 is inkonzisztens \u00E1llapot\u00FA # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_it.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Errore interno ORA-17002=Eccezione IO ORA-17003=Indice di colonna non valido ORA-17004=Tipo di colonna non valido ORA-17005=Tipo di colonna non supportato ORA-17006=Nome colonna non valido ORA-17007=Colonna dinamica non valida ORA-17008=Connessione chiusa ORA-17009=Connessione chiusa ORA-17010=Resultset chiuso ORA-17011=Resultset esaurito ORA-17012=Conflitto tipo di parametro ORA-17014=ResultSet.next non \u00E8 stato richiamato ORA-17015=L'istruzione \u00E8 stata annullata ORA-17016=Si \u00E8 verificato un timeout dell'istruzione ORA-17017=Cursore gi\u00E0 inizializzato ORA-17018=Cursore non valido ORA-17019=\u00C8 possibile solo descrivere una query ORA-17020=Preestrazione di riga non corretta ORA-17021=Definizione mancante ORA-17022=Definizioni mancanti nell'indice ORA-17023=Funzione non supportata ORA-17024=Nessun dato letto ORA-17025=Errore in defines.isNull () ORA-17026=Overflow numerico ORA-17027=Il flusso \u00E8 gi\u00E0 stato chiuso ORA-17028=Impossibile effettuare nuove definizioni fino a che il ResultSet corrente \u00E8 chiuso ORA-17029=setReadOnly: Connessioni di sola lettura non supportate ORA-17030=READ_COMMITTED e SERIALIZABLE sono i soli livelli di transazione validi ORA-17031=setAutoClose: \u00C8 supportata solo la modalit\u00E0 di chiusura automatica attivata ORA-17032=impossibile impostare a zero la preestrazione delle righe ORA-17033=Stringa SQL92 di formato non valido nella posizione ORA-17034=Token SQL92 non supportato nella posizione ORA-17035=Set di caratteri non supportato ORA-17036=eccezione in OracleNumber ORA-17037=Conversione non riuscita tra UTF8 e UCS2 ORA-17038=Lunghezza insufficiente di array di byte ORA-17039=Lunghezza insufficiente di array di caratteri ORA-17040=Nell'URL di connessione \u00E8 necessario specificare un protocollo secondario ORA-17041=Parametro IN o OUT mancante nell'indice: ORA-17042=Valore batch non valido ORA-17043=La dimensione massima del flusso non \u00E8 valida ORA-17044=Errore interno: Array di dati non allocato ORA-17045=Errore interno: Tentativo di accesso a valori di associazione oltre il valore batch ORA-17046=Errore interno: Indice non valido per l'accesso ai dati ORA-17047=Errore durante l'analisi del descrittore di tipo ORA-17048=Tipo non definito ORA-17049=I tipi di oggetto sql e java non sono congruenti ORA-17050=nessun elemento analogo nel vettore ORA-17051=Impossibile usare questa interfaccia API per tipi diversi da UDT ORA-17052=Questo riferimento non \u00E8 valido ORA-17053=La dimensione non \u00E8 valida ORA-17054=Il locator LOB non \u00E8 valido ORA-17055=Carattere non valido rilevato in ORA-17056=Set di caratteri non supportato (aggiungere orai18n.jar nel classpath) ORA-17057=LOB chiuso ORA-17058=Errore interno: Rapporto di conversione NLS non valido ORA-17059=Conversione in rappresentazione interna non riuscita ORA-17060=Creazione descrittore non riuscita ORA-17061=Descrittore mancante ORA-17062=Cursore di riferimento non valido ORA-17063=Non in una transazione ORA-17064=Sintassi non valida o nome di database nullo ORA-17065=Classe di conversione nulla ORA-17066=\u00C8 necessaria l'implementazione specifica del layer di accesso ORA-17067=\u00C8 stato specificato un URL Oracle non valido ORA-17068=Argomenti non validi nella chiamata ORA-17069=Utilizzare la chiamata XA esplicita ORA-17070=La dimensione dei dati \u00E8 superiore alla dimensione massima per questo tipo ORA-17071=\u00C8 stato superato il limite massimo di VARRAY ORA-17072=Il valore inserito \u00E8 troppo grande per la colonna ORA-17074=Nome pattern non valido ORA-17075=Operazione non valida nel resultset di solo inoltro ORA-17076=Operazione non valida nel resultset di sola lettura ORA-17077=Errore di impostazione del valore REF ORA-17078=Impossibile effettuare l'operazione poich\u00E9 le connessioni sono gi\u00E0 aperte ORA-17079=Le credenziali utente non corrispondono a quelle esistenti ORA-17080=comando batch non valido ORA-17081=errore durante l'esecuzione batch ORA-17082=Nessuna riga corrente ORA-17083=Non nella riga di inserimento ORA-17084=Richiamo sulla riga di inserimento ORA-17085=Sono presenti conflitti di valore ORA-17086=Valore di colonna non definito nella riga di inserimento ORA-17087=Indicazione per le prestazioni ignorata: setFetchDirection() ORA-17088=Sintassi non supportata per il tipo e il livello di concorrenza richiesti del resultset ORA-17089=errore interno ORA-17090=operazione non consentita ORA-17091=Impossibile creare un resultset del tipo e/o al livello di concorrenza richiesti ORA-17092=Impossibile creare o eseguire istruzioni JDBC alla fine dell'elaborazione di una chiamata ORA-17093=L'operazione OCI ha restituito OCI_SUCCESS_WITH_INFO ORA-17094=Versione non corrispondente del tipo di oggetto ORA-17095=Dimensione della cache delle istruzioni non impostata ORA-17096=Impossibile attivare l'inserimento nella cache delle istruzioni per questa connessione logica. ORA-17097=Tipo di elemento tabella indice PL/SQL non valido ORA-17098=Operazione svuotamento LOB non valida ORA-17099=Lunghezza di array tabella indice PL/SQL non valida ORA-17100=Oggetto Java di database non valido ORA-17101=Propriet\u00E0 non valide nell'oggetto OCI Connection Pool ORA-17102=Bfile \u00E8 di sola lettura ORA-17103=questo tipo di connessione non pu\u00F2 essere restituita mediante getConnection. Utilizzare getJavaSqlConnection ORA-17104=L'istruzione SQL da eseguire non pu\u00F2 essere vuota o nulla ORA-17105=il fuso orario della sessione di connessione non \u00E8 stato impostato ORA-17106=la configurazione specificata per il connection pool del driver JDBC-OCI non \u00E8 valida ORA-17107=il tipo di proxy specificato non \u00E8 valido ORA-17108=Nessuna lunghezza massima specificata in defineColumnType ORA-17109=codifica dei caratteri Java standard non trovata ORA-17110=esecuzione completata con avvertenze ORA-17111=Il timeout TTL della cache di connessione specificato non \u00E8 valido ORA-17112=L'intervallo di thread specificato non \u00E8 valido ORA-17113=Il valore dell'intervallo di thread \u00E8 maggiore del valore di timeout della cache ORA-17114=impossibile utilizzare il commit delle transazioni locali in una transazione globale ORA-17115=impossibile utilizzare il rollback delle transazioni locali in una transazione globale ORA-17116=impossibile attivare il commit automatico in una transazione globale attiva ORA-17117=impossibile impostare un savepoint in una transazione globale attiva ORA-17118=impossibile ottenere l'ID per un savepoint denominato ORA-17119=impossibile ottenere il nome per un savepoint non denominato ORA-17120=impossibile impostare un savepoint con commit automatico abilitato ORA-17121=impossibile eseguire il rollback a un savepoint con commit automatico abilitato ORA-17122=impossibile eseguire il rollback a un savepoint txn locale in una transazione globale ORA-17123=La dimensione della cache delle istruzioni specificata non \u00E8 valida ORA-17124=Il timeout di inattivit\u00E0 della cache di connessione specificato non \u00E8 valido ORA-17125=La cache esplicita ha restituito un tipo di istruzione non corretta ORA-17126=Timeout di attesa fissa trascorso ORA-17127=Timeout di attesa fissa specificato non valido ORA-17128=La stringa SQL non \u00E8 di tipo Query ORA-17129=La stringa SQL non \u00E8 un'istruzione DML ORA-17132=Conversione richiesta non valida ORA-17133=UNUSED ORA-17134=La lunghezza del parametro denominato in SQL supera 32 caratteri ORA-17135=Il nome del parametro utilizzato in setXXXStream compare pi\u00F9 volte in SQL ORA-17136=URL DATALINK con formato non valido, provare getString(). ORA-17137=Cache di connessione non abilitata o origine dati abilitata per cache non valida ORA-17138=Nome cache di connessione non valido. Deve essere una stringa valida e avere un valore univoco. ORA-17139=Propriet\u00E0 della cache di connessione non valide ORA-17140=La cache di connessione con questo nome cache esiste gi\u00E0 ORA-17141=La cache di connessione con questo nome cache non esiste ORA-17142=La cache di connessione con questo nome cache \u00E8 disabilitata ORA-17143=Connessione non valida o obsoleta trovata nella cache di connessione ORA-17144=handle dell'istruzione non eseguito ORA-17145=Ricevuto evento ONS non valido ORA-17146=Ricevuta versione evento ONS non valida ORA-17147=Tentativo di impostare un nome parametro che non si verifica in SQL ORA-17148=Metodo implementato solo nel driver THIN ORA-17149=Questa \u00E8 gi\u00E0 una sessione proxy ORA-17150=Argomenti errati per la sessione proxy ORA-17151=L'oggetto Clob \u00E8 troppo grande per essere memorizzato in una stringa Java ORA-17152=Questo metodo \u00E8 implementato solo in connessioni logiche ORA-17153=Questo metodo \u00E8 implementato solo in connessioni fisiche ORA-17154=Impossibile mappare il carattere Oracle in carattere Unicode ORA-17155=Impossibile mappare il carattere Unicode in carattere Oracle ORA-17156=Dimensione di array non valida per i valori delle metriche end-to-end ORA-17157=setString pu\u00F2 elaborare solo stringhe con meno di 32766 caratteri ORA-17158=durata non valida per questa funzione ORA-17159=valore della metrica per il trace end-to-end troppo lungo ORA-17160=numero di sequenza dell'ID contesto di esecuzione non compreso nell'intervallo ORA-17161=Utilizzata modalit\u00E0 di transazione non valida ORA-17162=Valore \"holdability\" non supportato ORA-17163=Impossibile utilizzare getXAConnection() quando \u00E8 abilitato l'inserimento della connessione nella cache ORA-17164=Impossibile richiamare getXAResource() dalla connessione fisica con l'inserimento nella cache attivo ORA-17165=Package DBMS_JDBC non preimpostato nel server per questa connessione ORA-17166=Impossibile eseguire l'operazione di FETCH su un'istruzione PLSQL ORA-17167=Classi PKI non trovate. Per utilizzare la funzionalit\u00E0 'connect /', oraclepki.jar deve essere nel classpath ORA-17168=rilevato un problema con Secret Store. Verificare nella posizione del wallet la presenza di un wallet aperto (cwallet.sso) e accertarsi che tale wallet contenga le credenziali corrette utilizzando la utility mkstore ORA-17169=Impossibile associare il flusso a ScrollableResultSet o UpdatableResultSet ORA-17170=Lo spazio di nomi non pu\u00F2 essere vuoto ORA-17171=La lunghezza dell'attributo non deve superare i 30 caratteri ORA-17172=Tale valore dell'attributo non pu\u00F2 superare i 400 caratteri ORA-17173=Registrazione incompleta dei parametri di restituzione ORA-17174=L'unico spazio di nomi supportato \u00E8 CLIENTCONTEXT ORA-17175=Errore durante la configurazione ONS remota ORA-17200=Impossibile convertire correttamente la stringa di apertura XA da Java in C ORA-17201=Impossibile convertire correttamente la stringa di chiusura XA da Java in C ORA-17202=Impossibile convertire correttamente il nome RM da Java in C ORA-17203=Impossibile eseguire il casting del tipo di puntatore in jlong ORA-17204=Array di input troppo piccolo per contenere gli handle OCI ORA-17205=Recupero handle OCISvcCtx da C-XA mediante xaoSvcCtx non riuscito ORA-17206=Recupero handle OCIEnv da C-XA mediante xaoEnv non riuscito ORA-17207=La propriet\u00E0 tnsEntry non \u00E8 stata impostata in DataSource ORA-17213=C-XA ha restituito XAER_RMERR durante xa_open ORA-17215=C-XA ha restituito XAER_INVAL durante xa_open ORA-17216=C-XA ha restituito XAER_PROTO durante xa_open ORA-17233=C-XA ha restituito XAER_RMERR durante xa_close ORA-17235=C-XA ha restituito XAER_INVAL durante xa_close ORA-17236=C-XA ha restituito XAER_PROTO durante xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Violazione di protocollo ORA-17402=\u00C8 previsto un solo messaggio RPA ORA-17403=\u00C8 previsto un solo messaggio RXH ORA-17404=Sono stati ricevuti pi\u00F9 RXD di quelli previsti ORA-17405=La lunghezza UAC \u00E8 diversa da zero ORA-17406=Superamento della lunghezza massima del buffer ORA-17407=Rappresentazione del tipo (setRep) non valida ORA-17408=Rappresentazione del tipo (getRep) non valida ORA-17409=lunghezza del buffer non valida ORA-17410=Non vi sono altri dati da leggere nel socket ORA-17411=Le rappresentazioni dei tipi di dati non corrispondono ORA-17412=La lunghezza del tipo \u00E8 superiore al valore massimo ORA-17413=Superamento dimensione della chiave ORA-17414=La dimensione del buffer non \u00E8 sufficiente per memorizzare i nomi di colonna ORA-17415=Questo tipo non \u00E8 stato gestito ORA-17416=FATAL ORA-17417=Problema NLS, la decodifica dei nomi di colonna non \u00E8 riuscita ORA-17418=Errore di lunghezza campo della struttura interna ORA-17419=Restituito numero di colonne non valido ORA-17420=Versione Oracle non definita ORA-17421=Tipi o connessione non definita ORA-17422=Classe non valida in factory ORA-17423=Uso di un lock PLSQL senza un IOV definito in corso ORA-17424=Tentativo differente operazione di marshalling in corso ORA-17425=Restituzione di un flusso in blocco PLSQL in corso ORA-17426=Entrambe le associazioni IN ed OUT sono NULL ORA-17427=Uso di OAC non inizializzato in corso ORA-17428=Il collegamento deve essere richiamato dopo la connessione ORA-17429=\u00C8 necessaria almeno la connessione al server ORA-17430=\u00C8 necessario il collegamento al server ORA-17431=L'istruzione SQL da analizzare \u00E8 nulla ORA-17432=opzioni non valide in all7 ORA-17433=argomenti non validi nella chiamata ORA-17434=non in modalit\u00E0 di flusso ORA-17435=numero non valido di in_out_binds in IOV ORA-17436=numero non valido di outbinds ORA-17437=Errore negli argomenti IN/OUT del blocco PLSQL ORA-17438=Interno - valore non previsto ORA-17439=Tipo SQL non valido ORA-17440=Il tipo DBItem/DBType \u00E8 nullo ORA-17441=Versione Oracle non supportata. La versione minima supportata \u00E8 la 7.2.3. ORA-17442=Valore di Refcursor non valido ORA-17443=Utente nullo o password non supportata nel driver THIN ORA-17444=La versione del protocollo TTC ricevuta dal server non \u00E8 supportata ORA-17445=Il LOB \u00E8 gi\u00E0 stato aperto nella stessa transazione ORA-17446=Il LOB \u00E8 gi\u00E0 stato chiuso nella stessa transazione ORA-17447=OALL8 \u00E8 in uno stato non coerente # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_iw.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05E4\u05E0\u05D9\u05DE\u05D9\u05EA ORA-17002=\u05D7\u05E8\u05D9\u05D2\u05EA Io ORA-17003=\u05D0\u05D9\u05E0\u05D3\u05E7\u05E1 \u05D4\u05E2\u05DE\u05D5\u05D3\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17004=\u05E1\u05D5\u05D2 \u05D4\u05E2\u05DE\u05D5\u05D3\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17005=\u05E1\u05D5\u05D2 \u05D4\u05E2\u05DE\u05D5\u05D3\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05E0\u05EA\u05DE\u05DA ORA-17006=\u05E9\u05DD \u05D4\u05E2\u05DE\u05D5\u05D3\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17007=\u05D4\u05E2\u05DE\u05D5\u05D3\u05D4 \u05D4\u05D3\u05D9\u05E0\u05DE\u05D9\u05EA \u05D0\u05D9\u05E0\u05D4 \u05EA\u05E7\u05E4\u05D4 ORA-17008=\u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05EA \u05E0\u05E1\u05D2\u05E8\u05D4 ORA-17009=\u05DE\u05E9\u05E4\u05D8 \u05E1\u05D2\u05D5\u05E8 ORA-17010=\u05E1\u05DC \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E1\u05D2\u05D5\u05E8 ORA-17011=\u05E1\u05DC \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05DE\u05E8\u05D5\u05E7\u05DF ORA-17012=\u05E1\u05EA\u05D9\u05E8\u05D4 \u05D1\u05E1\u05D5\u05D2 \u05D4\u05E4\u05E8\u05DE\u05D8\u05E8 ORA-17014=\u05DC\u05D0 \u05D1\u05D5\u05E6\u05E2\u05D4 \u05E7\u05E8\u05D9\u05D0\u05D4 \u05DC- ResultSet.next ORA-17015=\u05D4\u05DE\u05E9\u05E4\u05D8 \u05D1\u05D5\u05D8\u05DC ORA-17016=\u05E4\u05E1\u05E7-\u05D6\u05DE\u05DF \u05D1\u05DE\u05E9\u05E4\u05D8 ORA-17017=\u05D4\u05E1\u05DE\u05DF \u05DB\u05D1\u05E8 \u05D0\u05D5\u05EA\u05D7\u05DC ORA-17018=\u05D4\u05E1\u05DE\u05DF \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17019=\u05E0\u05D9\u05EA\u05DF \u05E8\u05E7 \u05DC\u05EA\u05D0\u05E8 \u05E9\u05D0\u05D9\u05DC\u05EA\u05D4 ORA-17020=\u05D4\u05D1\u05D0\u05D4 \u05DE\u05D5\u05E7\u05D3\u05DE\u05EA \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 \u05E9\u05DC \u05E9\u05D5\u05E8\u05D4 ORA-17021=\u05D7\u05E1\u05E8\u05D5\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA ORA-17022=\u05D7\u05E1\u05E8\u05D5\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D1\u05D0\u05D9\u05E0\u05D3\u05E7\u05E1 ORA-17023=\u05D4\u05EA\u05DB\u05D5\u05E0\u05D4 \u05D0\u05D9\u05E0\u05D4 \u05E0\u05EA\u05DE\u05DB\u05EA ORA-17024=\u05DC\u05D0 \u05E0\u05E7\u05E8\u05D0\u05D5 \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD ORA-17025=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA. \u05D4\u05DF \u05E8\u05D9\u05E7\u05D5\u05EA (Null) () ORA-17026=\u05D7\u05E8\u05D9\u05D2\u05D4 \u05DE\u05E1\u05E4\u05E8\u05D9\u05EA ORA-17027=\u05D4\u05D6\u05E8\u05DD \u05DB\u05D1\u05E8 \u05E0\u05E1\u05D2\u05E8 ORA-17028=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05E7\u05D1\u05D5\u05E2 \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA \u05E2\u05D3 \u05E9\u05D9\u05D9\u05E1\u05D2\u05E8 \u05E1\u05DC \u05D4\u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9 ORA-17029=setReadOnly: \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05D9\u05D5\u05EA \u05DC\u05E7\u05E8\u05D9\u05D0\u05D4-\u05D1\u05DC\u05D1\u05D3 \u05D0\u05D9\u05E0\u05DF \u05E0\u05EA\u05DE\u05DB\u05D5\u05EA ORA-17030=READ_COMMITTED \u05D5- SERIALIZABLE \u05D4\u05DF \u05E8\u05DE\u05D5\u05EA \u05D4\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05D4\u05D9\u05D7\u05D9\u05D3\u05D5\u05EA \u05D4\u05EA\u05E7\u05E4\u05D5\u05EA ORA-17031=setAutoClose: \u05E8\u05E7 \u05DE\u05E6\u05D1 \u05D4\u05E1\u05D2\u05D9\u05E8\u05D4 \u05D4\u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9\u05EA \u05E9\u05DC \u05D4\u05EA\u05DE\u05D9\u05DB\u05D4 \u05DE\u05D5\u05E4\u05E2\u05DC ORA-17032=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D0\u05E4\u05E1 \u05D0\u05EA \u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05D4\u05DE\u05D5\u05E7\u05D3\u05DE\u05EA \u05E9\u05DC \u05D4\u05E9\u05D5\u05E8\u05D4 ORA-17033=\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA SQL92 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05E0\u05D4 \u05D1\u05DE\u05D9\u05E7\u05D5\u05DD ORA-17034=\u05D0\u05E1\u05D9\u05DE\u05D5\u05DF SQL92 \u05DC\u05D0 \u05E0\u05EA\u05DE\u05DA \u05D1\u05DE\u05D9\u05E7\u05D5\u05DD ORA-17035=\u05DE\u05E2\u05E8\u05DB\u05EA \u05D4\u05EA\u05D5\u05D5\u05D9\u05DD \u05D0\u05D9\u05E0\u05D4 \u05E0\u05EA\u05DE\u05DB\u05EA! ORA-17036=\u05D7\u05E8\u05D9\u05D2 \u05D1-OracleNumber ORA-17037=\u05D4\u05D4\u05DE\u05E8\u05D4 \u05D1\u05D9\u05DF UTF8 \u05D5- UCS2 \u05E0\u05DB\u05E9\u05DC\u05D4 ORA-17038=\u05DE\u05E2\u05E8\u05DA \u05D4\u05D1\u05D9\u05D9\u05D8\u05D9\u05DD \u05E7\u05E6\u05E8 \u05DE\u05D3\u05D9 ORA-17039=\u05DE\u05E2\u05E8\u05DA \u05D4\u05EA\u05D5\u05D5\u05D9\u05DD \u05E7\u05E6\u05E8 \u05DE\u05D3\u05D9 ORA-17040=\u05D9\u05E9 \u05DC\u05E6\u05D9\u05D9\u05DF \u05D0\u05EA \u05E4\u05E8\u05D5\u05D8\u05D5\u05E7\u05D5\u05DC \u05D4\u05DE\u05E9\u05E0\u05D4 \u05D1-URL \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05EA ORA-17041=\u05D7\u05E1\u05E8 \u05E4\u05E8\u05DE\u05D8\u05E8 IN \u05D0\u05D5 OUT \u05D1\u05D0\u05D9\u05E0\u05D3\u05E7\u05E1: ORA-17042=\u05E2\u05E8\u05DA \u05D4\u05D0\u05E6\u05D5\u05D5\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17043=\u05D2\u05D5\u05D3\u05DC \u05D4\u05D6\u05E8\u05DD \u05D4\u05DE\u05E8\u05D1\u05D9 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17044=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05E4\u05E0\u05D9\u05DE\u05D9\u05EA: \u05DC\u05D0 \u05D4\u05D5\u05E7\u05E6\u05D4 \u05DE\u05E2\u05E8\u05DA \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD ORA-17045=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05E4\u05E0\u05D9\u05DE\u05D9\u05EA: \u05E0\u05E2\u05E9\u05D4 \u05E0\u05D9\u05E1\u05D9\u05D5\u05DF \u05DC\u05D2\u05E9\u05EA \u05DC\u05E2\u05E8\u05DB\u05D9 \u05DB\u05E8\u05D9\u05DB\u05D4 \u05E9\u05DE\u05E2\u05D1\u05E8 \u05DC\u05E2\u05E8\u05DA \u05D4\u05D0\u05E6\u05D5\u05D5\u05D4 ORA-17046=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05E4\u05E0\u05D9\u05DE\u05D9\u05EA: \u05D0\u05D9\u05E0\u05D3\u05E7\u05E1 \u05D4\u05D2\u05D9\u05E9\u05D4 \u05DC\u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17047=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05E0\u05D9\u05EA\u05D5\u05D7 \u05DE\u05EA\u05D0\u05E8 \u05D4\u05E1\u05D5\u05D2 ORA-17048=\u05D4\u05E1\u05D5\u05D2 \u05D0\u05D9\u05E0\u05D5 \u05DE\u05D5\u05D2\u05D3\u05E8 ORA-17049=\u05D7\u05D5\u05E1\u05E8 \u05D0\u05D7\u05D9\u05D3\u05D5\u05EA \u05D1\u05D9\u05DF \u05E1\u05D5\u05D2\u05D9 \u05D4\u05D0\u05D5\u05D1\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD \u05E9\u05DC java \u05D5- sql ORA-17050=\u05D0\u05DC\u05DE\u05E0\u05D8 \u05D6\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05E7\u05D9\u05D9\u05DD \u05D1\u05D5\u05E7\u05D8\u05D5\u05E8 ORA-17051=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1- API \u05D6\u05D4 \u05E2\u05D1\u05D5\u05E8 \u05E1\u05D5\u05D2\u05D9\u05DD \u05E9\u05D0\u05D9\u05E0\u05DD UDT ORA-17052=\u05D9\u05D7\u05D5\u05E1 \u05D6\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17053=\u05D4\u05D2\u05D5\u05D3\u05DC \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17054=\u05DE\u05D0\u05EA\u05E8 \u05D4-LOBS \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17055=\u05E0\u05DE\u05E6\u05D0 \u05EA\u05D5 \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05D1- ORA-17056=\u05DE\u05E2\u05E8\u05DB\u05EA \u05EA\u05D5\u05D5\u05D9\u05DD \u05E9\u05D0\u05D9\u05E0\u05D4 \u05E0\u05EA\u05DE\u05DB\u05EA (\u05D4\u05D5\u05E1\u05E3 \u05D0\u05EA orai18n.jar \u05DC-classpath) ORA-17057=LOB \u05E1\u05D2\u05D5\u05E8 ORA-17058=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05E4\u05E0\u05D9\u05DE\u05D9\u05EA: \u05E9\u05D9\u05E2\u05D5\u05E8 \u05D4\u05DE\u05E8\u05EA \u05D4- NLS \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17059=\u05D4\u05D4\u05DE\u05E8\u05D4 \u05DC\u05D9\u05D9\u05E6\u05D5\u05D2 \u05E4\u05E0\u05D9\u05DE\u05D9 \u05E0\u05DB\u05E9\u05DC\u05D4 ORA-17060=\u05D1\u05E0\u05D9\u05D9\u05EA \u05D4\u05DE\u05EA\u05D0\u05E8 \u05E0\u05DB\u05E9\u05DC\u05D4 ORA-17061=\u05D7\u05E1\u05E8 \u05DE\u05EA\u05D0\u05E8 ORA-17062=\u05E1\u05DE\u05DF \u05D4\u05D9\u05D9\u05D7\u05D5\u05E1 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17063=\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0 \u05D1\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 ORA-17064=\u05EA\u05D7\u05D1\u05D9\u05E8 \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05D0\u05D5 \u05E9\u05E9\u05DD \u05DE\u05E1\u05D3 \u05D4\u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05D4\u05D5\u05D0 Null ORA-17065=\u05DE\u05D7\u05DC\u05E7\u05EA \u05D4\u05D4\u05DE\u05E8\u05D4 \u05D4\u05D9\u05D0 Null ORA-17066=\u05D9\u05E9 \u05DC\u05D9\u05D9\u05E9\u05DD \u05D1\u05D0\u05D5\u05E4\u05DF \u05E1\u05E4\u05E6\u05D9\u05E4\u05D9 \u05D0\u05EA \u05E9\u05DB\u05D1\u05EA \u05D4\u05D2\u05D9\u05E9\u05D4 ORA-17067=\u05E6\u05D5\u05D9\u05DF URL \u05E9\u05DC Oracle \u05E9\u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17068=\u05D1\u05E7\u05E8\u05D9\u05D0\u05D4 \u05D9\u05E9 \u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8\u05D9\u05DD \u05E9\u05D0\u05D9\u05E0\u05DD \u05EA\u05E7\u05E4\u05D9\u05DD ORA-17069=\u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E7\u05E8\u05D9\u05D0\u05EA XA \u05DE\u05E4\u05D5\u05E8\u05E9\u05EA ORA-17070=\u05D2\u05D5\u05D3\u05DC \u05D4\u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05E2\u05D5\u05DC\u05D4 \u05E2\u05DC \u05D4\u05D2\u05D5\u05D3\u05DC \u05D4\u05DE\u05E8\u05D1\u05D9 \u05E2\u05D1\u05D5\u05E8 \u05E1\u05D5\u05D2 \u05D6\u05D4 ORA-17071=\u05D7\u05E8\u05D9\u05D2\u05D4 \u05DE\u05D4\u05D2\u05D1\u05D5\u05DC \u05D4\u05DE\u05E8\u05D1\u05D9 \u05E9\u05DC VARRAY ORA-17072=\u05D4\u05E2\u05E8\u05DA \u05E9\u05D4\u05D5\u05DB\u05E0\u05E1 \u05D2\u05D3\u05D5\u05DC \u05DE\u05D3\u05D9 \u05DC\u05E2\u05DE\u05D5\u05D3\u05D4 ORA-17074=\u05D3\u05D2\u05DD \u05D4\u05E9\u05DD \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17075=\u05E4\u05E2\u05D5\u05DC\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 \u05E2\u05D1\u05D5\u05E8 \u05E1\u05DC \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05DC\u05E7\u05D9\u05D3\u05D5\u05DD \u05D1\u05DC\u05D1\u05D3 ORA-17076=\u05E4\u05E2\u05D5\u05DC\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 \u05E2\u05D1\u05D5\u05E8 \u05E1\u05DC \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05DC\u05E7\u05E8\u05D9\u05D0\u05D4 \u05D1\u05DC\u05D1\u05D3 ORA-17077=\u05DB\u05D9\u05E9\u05DC\u05D5\u05DF \u05D1\u05E7\u05D1\u05D9\u05E2\u05EA \u05E2\u05E8\u05DA REF ORA-17078=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D1\u05E6\u05E2 \u05D0\u05EA \u05D4\u05E4\u05E2\u05D5\u05DC\u05D4, \u05E9\u05DB\u05DF \u05D4\u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05DB\u05D1\u05E8 \u05E4\u05EA\u05D5\u05D7\u05D9\u05DD ORA-17079=\u05E0\u05EA\u05D5\u05E0\u05D9 \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05EA \u05E9\u05DC \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D0\u05D9\u05E0\u05DD \u05EA\u05D5\u05D0\u05DE\u05D9\u05DD \u05D0\u05EA \u05D0\u05DC\u05D4 \u05D4\u05E7\u05D9\u05D9\u05DE\u05D9\u05DD ORA-17080=\u05E4\u05E7\u05D5\u05D3\u05EA \u05D4\u05D0\u05E6\u05D5\u05D5\u05D4 \u05D0\u05D9\u05E0\u05D4 \u05EA\u05E7\u05E4\u05D4 ORA-17081=\u05D0\u05E8\u05E2\u05D4 \u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05E2\u05EA \u05D9\u05E6\u05D9\u05E8\u05EA \u05D4\u05D0\u05E6\u05D5\u05D5\u05D4 ORA-17082=\u05D0\u05D9\u05DF \u05E9\u05D5\u05E8\u05D4 \u05DB\u05E2\u05EA ORA-17083=\u05DC\u05D0 \u05D1\u05E9\u05D5\u05E8\u05D4 \u05E9\u05D4\u05D5\u05DB\u05E0\u05E1\u05D4 ORA-17084=\u05E7\u05E8\u05D9\u05D0\u05D4 \u05D1\u05E9\u05D5\u05E8\u05D4 \u05DC\u05D4\u05DB\u05E0\u05E1\u05D4 ORA-17085=\u05E1\u05EA\u05D9\u05E8\u05D4 \u05D1\u05E2\u05E8\u05DB\u05D9\u05DD ORA-17086=\u05E2\u05E8\u05DA \u05E2\u05DE\u05D5\u05D3\u05D4 \u05DC\u05D0 \u05DE\u05D5\u05D2\u05D3\u05E8 \u05D1\u05E9\u05D5\u05E8\u05D4 \u05E9\u05D4\u05D5\u05DB\u05E0\u05E1\u05D4 ORA-17087=\u05D4\u05EA\u05E2\u05DC\u05DE\u05D5\u05EA \u05DE\u05E8\u05DE\u05D6 \u05D4\u05D1\u05D9\u05E6\u05D5\u05E2\u05D9\u05DD: setFetchDirection() ORA-17088=\u05EA\u05D7\u05D1\u05D9\u05E8 \u05DC\u05D0 \u05E0\u05EA\u05DE\u05DA \u05E2\u05D1\u05D5\u05E8 \u05E1\u05D5\u05D2 \u05E1\u05D8 \u05D4\u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05D5\u05E8\u05DE\u05EA \u05D4\u05DE\u05E7\u05D1\u05D9\u05DC\u05D9\u05D5\u05EA \u05D4\u05DE\u05D1\u05D5\u05E7\u05E9\u05D9\u05DD ORA-17089=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05E4\u05E0\u05D9\u05DE\u05D9\u05EA ORA-17090=\u05D4\u05E4\u05E2\u05D5\u05DC\u05D4 \u05D0\u05E1\u05D5\u05E8\u05D4 ORA-17091=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D9\u05E6\u05D5\u05E8 \u05E1\u05D8 \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05D1\u05E1\u05D5\u05D2 \u05D5/\u05D0\u05D5 \u05D1\u05E8\u05DE\u05EA \u05D4\u05DE\u05E7\u05D1\u05D9\u05DC\u05D9\u05D5\u05EA \u05D4\u05DE\u05D1\u05D5\u05E7\u05E9\u05D9\u05DD ORA-17092=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D9\u05E6\u05D5\u05E8 \u05D0\u05D5 \u05DC\u05D1\u05E6\u05E2 \u05DE\u05E9\u05E4\u05D8\u05D9 JDBC \u05D1\u05E1\u05D5\u05E3 \u05E2\u05D9\u05D1\u05D5\u05D3 \u05D4\u05E7\u05E8\u05D9\u05D0\u05D5\u05EA ORA-17093=\u05E4\u05E2\u05D5\u05DC\u05EA OCI \u05D4\u05D7\u05D6\u05D9\u05E8\u05D4 OCI_SUCCESS_WITH_INFO ORA-17094=\u05D0\u05D9\u05DF \u05D4\u05EA\u05D0\u05DE\u05D4 \u05DC\u05D2\u05E8\u05E1\u05D4 \u05E9\u05DC \u05E1\u05D5\u05D2 \u05D4\u05D0\u05D5\u05D1\u05D9\u05D9\u05E7\u05D8 ORA-17095=\u05DC\u05D0 \u05E0\u05E7\u05D1\u05E2 \u05D2\u05D5\u05D3\u05DC \u05DE\u05D8\u05DE\u05D5\u05DF \u05D4\u05DE\u05E9\u05E4\u05D8\u05D9\u05DD ORA-17096=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D0\u05E4\u05E9\u05E8 \u05D4\u05E2\u05D1\u05E8\u05D4 \u05DC\u05DE\u05D8\u05DE\u05D5\u05DF \u05E9\u05DC \u05DE\u05E9\u05E4\u05D8\u05D9\u05DD \u05E2\u05D1\u05D5\u05E8 \u05D7\u05D9\u05D1\u05D5\u05E8 \u05DC\u05D5\u05D2\u05D9 \u05D6\u05D4. ORA-17097=\u05E1\u05D5\u05D2 \u05D0\u05DC\u05DE\u05E0\u05D8 \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05D1\u05D8\u05D1\u05DC\u05EA \u05D4\u05D0\u05D9\u05E0\u05D3\u05E7\u05E1 \u05E9\u05DC PL/SQL ORA-17098=\u05E4\u05E2\u05D5\u05DC\u05EA \u05E8\u05D9\u05E7\u05D5\u05DF \u05D4- lob \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 ORA-17099=\u05D0\u05D5\u05E8\u05DA \u05DE\u05E2\u05E8\u05DA \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05D1\u05D8\u05D1\u05DC\u05EA \u05D4\u05D0\u05D9\u05E0\u05D3\u05E7\u05E1 \u05E9\u05DC PL/SQL ORA-17100=\u05D0\u05D5\u05D1\u05D9\u05D9\u05E7\u05D8 Java \u05E9\u05DC \u05DE\u05E1\u05D3 \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05DC\u05D0 \u05EA\u05E7\u05E3 ORA-17101=\u05DE\u05D0\u05E4\u05D9\u05D9\u05E0\u05D9\u05DD \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D9\u05DD \u05D1\u05D0\u05D5\u05D1\u05D9\u05D9\u05E7\u05D8 \u05DE\u05D0\u05D2\u05E8 \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05D9\u05D5\u05EA OCI ORA-17102=Bfile \u05DE\u05D9\u05D5\u05E2\u05D3 \u05DC\u05E7\u05E8\u05D9\u05D0\u05D4 \u05D1\u05DC\u05D1\u05D3 ORA-17103=\u05E1\u05D5\u05D2 \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05EA \u05DC\u05D4\u05D7\u05D6\u05E8\u05D4 \u05D3\u05E8\u05DA getConnection \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3. \u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1-getJavaSqlConnection ORA-17104=\u05DE\u05E9\u05E4\u05D8 SQL \u05DC\u05D4\u05E4\u05E2\u05DC\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05D9\u05D5\u05EA \u05E8\u05D9\u05E7 \u05D0\u05D5 Null ORA-17105=\u05DC\u05D0 \u05E0\u05E7\u05D1\u05E2 \u05D0\u05D6\u05D5\u05E8 \u05D6\u05DE\u05DF \u05DC\u05DE\u05D5\u05E9\u05D1 \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05EA ORA-17106=\u05D4\u05D5\u05D2\u05D3\u05E8\u05D4 \u05EA\u05E6\u05D5\u05E8\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 \u05DC\u05DE\u05D0\u05D2\u05E8 \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05D9\u05D5\u05EA \u05E9\u05DC \u05D3\u05E8\u05D9\u05D9\u05D1\u05E8 \u05D4-JDBC-OCI ORA-17107=\u05D4\u05D5\u05D2\u05D3\u05E8 \u05E1\u05D5\u05D2 proxy \u05DC\u05D0 \u05EA\u05E7\u05E3 ORA-17108=\u05DC\u05D0 \u05E6\u05D5\u05D9\u05DF \u05D0\u05D5\u05E8\u05DA \u05DE\u05E8\u05D1\u05D9 \u05D1-defineColumnType ORA-17109=\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0\u05D4 \u05D4\u05E6\u05E4\u05E0\u05EA Java character encoding \u05D4\u05E8\u05D2\u05D9\u05DC\u05D4 ORA-17110=\u05D4\u05D1\u05D9\u05E6\u05D5\u05E2 \u05D4\u05D5\u05E9\u05DC\u05DD \u05E2\u05DD \u05D0\u05D6\u05D4\u05E8\u05D4 ORA-17111=\u05E6\u05D5\u05D9\u05DF \u05E4\u05E1\u05E7 \u05D6\u05DE\u05DF \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05E2\u05D1\u05D5\u05E8 TTL \u05E9\u05DC \u05DE\u05D8\u05DE\u05D5\u05DF \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05D9\u05D5\u05EA ORA-17112=\u05E6\u05D5\u05D9\u05DF \u05DE\u05E8\u05D5\u05D5\u05D7 thread \u05DC\u05D0 \u05EA\u05E7\u05E3 ORA-17113=\u05E2\u05E8\u05DA \u05DE\u05E8\u05D5\u05D5\u05D7 \u05D4-Thread \u05D2\u05D3\u05D5\u05DC \u05DE\u05D4\u05E2\u05E8\u05DA \u05E9\u05DC \u05E4\u05E1\u05E7 \u05D6\u05DE\u05DF \u05D4\u05DE\u05D8\u05DE\u05D5\u05DF ORA-17114=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1-commit \u05E9\u05DC \u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05DE\u05E7\u05D5\u05DE\u05D9\u05EA \u05D1\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05D2\u05DC\u05D5\u05D1\u05DC\u05D9\u05EA ORA-17115=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1-rollback \u05E9\u05DC \u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05DE\u05E7\u05D5\u05DE\u05D9\u05EA \u05D1\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05D2\u05DC\u05D5\u05D1\u05DC\u05D9\u05EA ORA-17116=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05E4\u05E2\u05D9\u05DC \u05D0\u05EA auto-commit \u05D1\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05D2\u05DC\u05D5\u05D1\u05DC\u05D9\u05EA \u05E4\u05E2\u05D9\u05DC\u05D4 ORA-17117=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05E7\u05D1\u05D5\u05E2 savepoint \u05D1\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05D2\u05DC\u05D5\u05D1\u05DC\u05D9\u05EA \u05E4\u05E2\u05D9\u05DC\u05D4 ORA-17118=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05E9\u05D9\u05D2 \u05D6\u05D9\u05D4\u05D5\u05D9 \u05E2\u05D1\u05D5\u05E8 Savepoint \u05E9\u05DE\u05D9 ORA-17119=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05E9\u05D9\u05D2 \u05E9\u05DD \u05E2\u05D1\u05D5\u05E8 Savepoint \u05DC\u05DC\u05D0 \u05E9\u05DD ORA-17120=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05E7\u05D1\u05D5\u05E2 Savepoint \u05DB\u05D0\u05E9\u05E8 \u05DE\u05D5\u05E4\u05E2\u05DC\u05EA \u05D4\u05EA\u05DB\u05D5\u05E0\u05D4 auto commit ORA-17121=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D1\u05E6\u05E2 rollback \u05DC-Savepoint \u05DB\u05D0\u05E9\u05E8 \u05DE\u05D5\u05E4\u05E2\u05DC\u05EA \u05D4\u05EA\u05DB\u05D5\u05E0\u05D4 auto commit ORA-17122=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D1\u05E6\u05E2 rollback \u05DC-Savepoint \u05E9\u05DC \u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05DE\u05E7\u05D5\u05DE\u05D9\u05EA \u05D1\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05D2\u05DC\u05D5\u05D1\u05DC\u05D9\u05EA ORA-17123=\u05E6\u05D5\u05D9\u05DF \u05D2\u05D5\u05D3\u05DC \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05E2\u05D1\u05D5\u05E8 \u05DE\u05D8\u05DE\u05D5\u05DF \u05D4\u05DE\u05E9\u05E4\u05D8\u05D9\u05DD ORA-17124=\u05E6\u05D5\u05D9\u05DF \u05E4\u05E1\u05E7 \u05D6\u05DE\u05DF \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05E9\u05DC \u05D7\u05D5\u05E1\u05E8 \u05E4\u05E2\u05D9\u05DC\u05D5\u05EA \u05D1\u05DE\u05D8\u05DE\u05D5\u05DF \u05D4\u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05D9\u05D5\u05EA ORA-17125=\u05D4\u05DE\u05D8\u05DE\u05D5\u05DF \u05D4\u05DE\u05E4\u05D5\u05E8\u05E9 \u05D4\u05D7\u05D6\u05D9\u05E8 \u05E1\u05D5\u05D2 \u05DE\u05E9\u05E4\u05D8 \u05E9\u05D2\u05D5\u05D9 ORA-17126=\u05D7\u05DC\u05E3 \u05E4\u05E1\u05E7 \u05D4\u05D6\u05DE\u05DF \u05E9\u05DC \u05D4\u05DE\u05EA\u05E0\u05D4 \u05E7\u05D1\u05D5\u05E2\u05D4 ORA-17127=\u05E6\u05D5\u05D9\u05DF \u05E4\u05E1\u05E7 \u05D6\u05DE\u05DF \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05DC\u05D4\u05DE\u05EA\u05E0\u05D4 \u05E7\u05D1\u05D5\u05E2\u05D4 ORA-17128=\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA SQL \u05D0\u05D9\u05E0\u05D4 \u05E9\u05D0\u05D9\u05DC\u05EA\u05D4 ORA-17129=\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA SQL \u05D0\u05D9\u05E0\u05D4 \u05DE\u05E9\u05E4\u05D8 DML ORA-17132=\u05DE\u05D1\u05D5\u05E7\u05E9\u05EA \u05D4\u05DE\u05E8\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 ORA-17133=UNUSED ORA-17134=\u05D0\u05D5\u05E8\u05DB\u05D5 \u05E9\u05DC \u05E4\u05E8\u05DE\u05D8\u05E8 \u05E9\u05DE\u05D9 \u05D1-SQL \u05E2\u05D5\u05DC\u05D4 \u05E2\u05DC 32 \u05EA\u05D5\u05D5\u05D9\u05DD ORA-17135=\u05E9\u05DD \u05E4\u05E8\u05DE\u05D8\u05E8 \u05D4\u05DE\u05E9\u05DE\u05E9 \u05D1-setXXXStream \u05DE\u05D5\u05E4\u05D9\u05E2 \u05DE\u05E1\u05E4\u05E8 \u05E4\u05E2\u05DE\u05D9\u05DD \u05D1-SQL ORA-17136=DATALINK URL \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF. \u05E0\u05E1\u05D4 \u05D0\u05EA getString() \u05D1\u05DE\u05E7\u05D5\u05DE\u05D5 ORA-17137=\u05D4\u05E2\u05D1\u05E8\u05EA \u05DE\u05D8\u05DE\u05D5\u05DF \u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05D0\u05D9\u05E0\u05D4 \u05D0\u05E4\u05E9\u05E8\u05D9\u05EA, \u05D0\u05D5 \u05E9\u05DE\u05E7\u05D5\u05E8 \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05D0\u05E4\u05E9\u05E8\u05D9 \u05DC\u05DE\u05D8\u05DE\u05D5\u05DF \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3. ORA-17138=\u05E9\u05DD \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05E9\u05DC \u05DE\u05D8\u05DE\u05D5\u05DF \u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD. \u05D4\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05D4\u05D9\u05D5\u05EA \u05EA\u05E7\u05E4\u05D4 \u05D5\u05D9\u05D9\u05D7\u05D5\u05D3\u05D9\u05EA ORA-17139=\u05DE\u05D0\u05E4\u05D9\u05D9\u05E0\u05D9\u05DD \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D9\u05DD \u05E9\u05DC \u05DE\u05D8\u05DE\u05D5\u05DF \u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD ORA-17140=\u05DB\u05D1\u05E8 \u05E7\u05D9\u05D9\u05DD \u05DE\u05D8\u05DE\u05D5\u05DF \u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05E2\u05DD \u05E9\u05DD \u05DE\u05D8\u05DE\u05D5\u05DF \u05D6\u05D4 ORA-17141=\u05D0\u05D9\u05DF \u05DE\u05D8\u05DE\u05D5\u05DF \u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05E2\u05DD \u05E9\u05DD \u05DE\u05D8\u05DE\u05D5\u05DF \u05D6\u05D4 ORA-17142=\u05DE\u05D8\u05DE\u05D5\u05DF \u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05E2\u05DD \u05E9\u05DD \u05DE\u05D8\u05DE\u05D5\u05DF \u05D6\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05E4\u05E2\u05D9\u05DC ORA-17143=\u05D1\u05DE\u05D8\u05DE\u05D5\u05DF \u05D4\u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05E0\u05DE\u05E6\u05D0 \u05D7\u05D9\u05D1\u05D5\u05E8 \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05D0\u05D5 \u05DE\u05D9\u05D5\u05E9\u05DF ORA-17144=\u05DC\u05D0 \u05D1\u05D5\u05E6\u05E2 \u05DE\u05E6\u05D1\u05D9\u05E2 (handle) \u05DE\u05E9\u05E4\u05D8 ORA-17145=\u05D4\u05EA\u05E7\u05D1\u05DC \u05D0\u05D9\u05E8\u05D5\u05E2 ONS \u05DC\u05D0 \u05EA\u05E7\u05E3 ORA-17146=\u05D4\u05EA\u05E7\u05D1\u05DC\u05D4 \u05D2\u05E8\u05E1\u05EA \u05D0\u05D9\u05E8\u05D5\u05E2 ONS \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 ORA-17147=\u05E0\u05E2\u05E9\u05D4 \u05E0\u05D9\u05E1\u05D9\u05D5\u05DF \u05DC\u05E7\u05D1\u05D5\u05E2 \u05E9\u05DD \u05E4\u05E8\u05DE\u05D8\u05E8 \u05E9\u05DC\u05D0 \u05DE\u05D5\u05E4\u05D9\u05E2 \u05D1-SQL ORA-17148=\u05D4\u05E9\u05D9\u05D8\u05D4 \u05DE\u05D9\u05D5\u05E9\u05DE\u05EA \u05D1'\u05E8\u05D6\u05D4' \u05D1\u05DC\u05D1\u05D3 ORA-17149=\u05D6\u05D4\u05D5 \u05DB\u05D1\u05E8 \u05DE\u05D5\u05E9\u05D1 proxy ORA-17150=\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8\u05D9\u05DD \u05E9\u05D2\u05D5\u05D9\u05D9\u05DD \u05DC\u05DE\u05D5\u05E9\u05D1 proxy ORA-17151=CLOB \u05D2\u05D3\u05D5\u05DC \u05DE\u05D3\u05D9 \u05DC\u05D0\u05D7\u05E1\u05D5\u05DF \u05D1\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA Java ORA-17152=\u05E9\u05D9\u05D8\u05D4 \u05D6\u05D5 \u05DE\u05D9\u05D5\u05E9\u05DE\u05EA \u05D1\u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05DC\u05D5\u05D2\u05D9\u05D9\u05DD \u05D1\u05DC\u05D1\u05D3 ORA-17153=\u05E9\u05D9\u05D8\u05D4 \u05D6\u05D5 \u05DE\u05D9\u05D5\u05E9\u05DE\u05EA \u05D1\u05D7\u05D9\u05D1\u05D5\u05E8\u05D9\u05DD \u05E4\u05D9\u05D6\u05D9\u05D9\u05DD \u05D1\u05DC\u05D1\u05D3 ORA-17154=\u05D0\u05D9\u05DF \u05D0\u05E4\u05E9\u05E8\u05D5\u05EA \u05DC\u05DE\u05E4\u05D5\u05EA \u05EA\u05D5\u05D5\u05D9 Oracle \u05DC-Unicode ORA-17155=\u05D0\u05D9 \u05D0\u05E4\u05E9\u05E8 \u05DC\u05DE\u05E4\u05D5\u05EA Unicode \u05DC\u05EA\u05D5 Oracle ORA-17156=\u05D2\u05D5\u05D3\u05DC \u05DE\u05E2\u05E8\u05DA \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05E2\u05D1\u05D5\u05E8 \u05E2\u05E8\u05DB\u05D9 \u05E0\u05EA\u05D5\u05E0\u05D9 \u05E7\u05E6\u05D4-\u05DC\u05E7\u05E6\u05D4 ORA-17157=setString \u05D9\u05DB\u05D5\u05DC \u05DC\u05E2\u05D1\u05D3 \u05E8\u05E7 \u05DE\u05D7\u05E8\u05D5\u05D6\u05D5\u05EA \u05E9\u05D0\u05D5\u05E8\u05DB\u05DF \u05D0\u05D9\u05E0\u05D5 \u05E2\u05D5\u05DC\u05D4 \u05E2\u05DC 32766 \u05EA\u05D5\u05D5\u05D9\u05DD ORA-17158=\u05DE\u05E9\u05DA \u05D1\u05DC\u05EA\u05D9 \u05EA\u05E7\u05E3 \u05DC\u05E4\u05D5\u05E0\u05E7\u05E6\u05D9\u05D4 \u05D6\u05D5 ORA-17159=\u05E2\u05E8\u05DA \u05D4\u05E0\u05EA\u05D5\u05DF \u05DC\u05DE\u05E2\u05E7\u05D1 \u05E7\u05E6\u05D4-\u05DC\u05E7\u05E6\u05D4 \u05D0\u05E8\u05D5\u05DA \u05DE\u05D3\u05D9 ORA-17160=\u05DE\u05E1\u05E4\u05E8 \u05D4\u05E8\u05E6\u05E3 \u05DC\u05D6\u05D9\u05D4\u05D5\u05D9 \u05D4\u05E7\u05E9\u05E8 \u05D4\u05E4\u05E2\u05DC\u05D4 \u05D7\u05D5\u05E8\u05D2 \u05DE\u05D4\u05D8\u05D5\u05D5\u05D7 ORA-17161=\u05E0\u05E2\u05E9\u05D4 \u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05DE\u05E6\u05D1 \u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05E3. ORA-17162=\u05D0\u05D9\u05DF \u05EA\u05DE\u05D9\u05DB\u05D4 \u05DC\u05E2\u05E8\u05DA \u05D6\u05D4 \u05E9\u05DC \u05D9\u05DB\u05D5\u05DC\u05EA \u05D4\u05D7\u05D6\u05E7\u05D4. ORA-17163=\u05D0\u05D9\u05DF \u05D0\u05E4\u05E9\u05E8\u05D5\u05EA \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1-getXAConnection() \u05DB\u05E9\u05D4\u05E2\u05D1\u05E8\u05D4 \u05DC\u05DE\u05D8\u05DE\u05D5\u05DF \u05E9\u05DC \u05D7\u05D9\u05D1\u05D5\u05E8 \u05D0\u05E4\u05E9\u05E8\u05D9\u05EA. ORA-17164=\u05D0\u05D9\u05DF \u05D0\u05E4\u05E9\u05E8\u05D5\u05EA \u05DC\u05E7\u05E8\u05D5\u05D0 \u05DC-getXAResource() \u05DE\u05D7\u05D9\u05D1\u05D5\u05E8 \u05E4\u05D9\u05D6\u05D9 \u05DB\u05D0\u05E9\u05E8 \u05D4\u05E2\u05D1\u05E8\u05D4 \u05DC\u05DE\u05D8\u05DE\u05D5\u05DF \u05E4\u05D5\u05E2\u05DC\u05EA. ORA-17165=\u05DE\u05D0\u05E8\u05D6 DBMS_JDBC \u05D0\u05D9\u05E0\u05D5 \u05E0\u05D5\u05DB\u05D7 \u05D1\u05E9\u05E8\u05EA \u05DC\u05D7\u05D9\u05D1\u05D5\u05E8 \u05D6\u05D4. ORA-17166=\u05D0\u05D9\u05DF \u05D0\u05E4\u05E9\u05E8\u05D5\u05EA \u05DC\u05D1\u05E6\u05E2 \u05D4\u05D1\u05D0\u05D4 \u05E2\u05DC \u05DE\u05E9\u05E4\u05D8 PLSQL. ORA-17167=\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0\u05D5 \u05E1\u05D9\u05D5\u05D5\u05D2\u05D9 PKI. \u05DB\u05D3\u05D9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E4\u05D5\u05E0\u05E7\u05E6\u05D9\u05D5\u05E0\u05DC\u05D9\u05D5\u05EA 'connect /' \u05D5\u05D5\u05D3\u05D0 \u05E9-oraclepki.jar \u05D4\u05D5\u05D0 \u05D0\u05DB\u05DF \u05D1\u05E0\u05EA\u05D9\u05D1 \u05D4\u05E1\u05D9\u05D5\u05D5\u05D2. ORA-17168=\u05D4\u05EA\u05E2\u05D5\u05E8\u05E8\u05D4 \u05D1\u05E2\u05D9\u05D9\u05D4 \u05D1\u05DE\u05D7\u05E1\u05DF \u05D4\u05E1\u05D5\u05D3\u05D9. \u05D1\u05D3\u05D5\u05E7 \u05D1\u05DE\u05D9\u05E7\u05D5\u05DD \u05D4-wallet \u05D0\u05DD \u05E7\u05D9\u05D9\u05DD wallet \u05E4\u05EA\u05D5\u05D7 (cwallet.sso). \u05D5\u05D5\u05D3\u05D0 \u05E9\u05D4\u05D5\u05D0 \u05DE\u05DB\u05D9\u05DC \u05D0\u05EA \u05E0\u05EA\u05D5\u05E0\u05D9 \u05D4\u05D0\u05D9\u05DE\u05D5\u05EA \u05D4\u05E0\u05DB\u05D5\u05E0\u05D9\u05DD \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05EA\u05D5\u05DB\u05E0\u05D9\u05EA \u05D4\u05E9\u05D9\u05E8\u05D5\u05EA mkstore. ORA-17169=\u05D0\u05D9\u05DF \u05D0\u05E4\u05E9\u05E8\u05D5\u05EA \u05DC\u05DB\u05E8\u05D5\u05DA \u05D6\u05E8\u05D9\u05DE\u05D4 \u05DC-ScrollableResultSet \u05D0\u05D5 \u05DC-UpdatableResultSet. ORA-17170=\u05D4-Namespace \u05D0\u05D9\u05E0\u05D5 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05D9\u05D5\u05EA \u05E8\u05D9\u05E7. ORA-17171=\u05D0\u05D5\u05E8\u05DA \u05D4\u05EA\u05DB\u05D5\u05E0\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05D9\u05DB\u05D5\u05DC \u05DC\u05E2\u05DC\u05D5\u05EA \u05E2\u05DC 30 \u05EA\u05D5\u05D5\u05D9\u05DD. ORA-17172=\u05E2\u05E8\u05DA \u05D6\u05D4 \u05E9\u05DC \u05D4\u05EA\u05DB\u05D5\u05E0\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05D9\u05DB\u05D5\u05DC \u05DC\u05E2\u05DC\u05D5\u05EA \u05E2\u05DC 400 \u05EA\u05D5\u05D5\u05D9\u05DD. ORA-17173=\u05DC\u05D0 \u05E0\u05E8\u05E9\u05DE\u05D5 \u05DB\u05DC \u05D4\u05E4\u05E8\u05DE\u05D8\u05E8\u05D9\u05DD \u05DC\u05D4\u05D7\u05D6\u05E8\u05D4. ORA-17174=\u05D4-namespace \u05D4\u05D9\u05D7\u05D9\u05D3\u05D9 \u05E9\u05E0\u05EA\u05DE\u05DA \u05D4\u05D5\u05D0 CLIENTCONTEXT ORA-17175=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05E2\u05EA \u05D4\u05D2\u05D3\u05E8\u05EA \u05EA\u05E6\u05D5\u05E8\u05D4 \u05E9\u05DC ONS \u05DE\u05E8\u05D7\u05D5\u05E7 ORA-17200=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05DE\u05D9\u05E8 \u05D1\u05D0\u05D5\u05E4\u05DF \u05EA\u05E7\u05D9\u05DF \u05D0\u05EA \u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05E4\u05EA\u05D9\u05D7\u05EA \u05D4-XA \u05DE- Java \u05DC\u05E9\u05E4\u05EA C ORA-17201=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05DE\u05D9\u05E8 \u05D1\u05D0\u05D5\u05E4\u05DF \u05EA\u05E7\u05D9\u05DF \u05D0\u05EA \u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05E1\u05D2\u05D9\u05E8\u05EA \u05D4-XA \u05DE- Java \u05DC\u05E9\u05E4\u05EA C ORA-17202=\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05DE\u05D9\u05E8 \u05D1\u05D0\u05D5\u05E4\u05DF \u05EA\u05E7\u05D9\u05DF \u05D0\u05EA \u05E9\u05DD \u05D4-RM \u05DE-Java \u05DC\u05E9\u05E4\u05EA C ORA-17203=\u05D4\u05D7\u05DC\u05E4\u05EA \u05E1\u05D5\u05D2 \u05D4\u05DE\u05E6\u05D1\u05D9\u05E2 (\u05D1\u05D9\u05E6\u05D5\u05E2 cast) \u05DC-jlong \u05E0\u05DB\u05E9\u05DC ORA-17204=\u05DE\u05E2\u05E8\u05DA \u05D4\u05E7\u05DC\u05D8 \u05E7\u05E6\u05E8 \u05DE\u05DB\u05D3\u05D9 \u05DC\u05D4\u05DB\u05D9\u05DC \u05DE\u05E6\u05D1\u05D9\u05E2\u05D9\u05DD (handles) \u05E9\u05DC OCI ORA-17205=\u05DB\u05DB\u05E9\u05DC \u05D1\u05E0\u05D9\u05E1\u05D9\u05D5\u05DF \u05DC\u05D4\u05E9\u05D9\u05D2 \u05DE\u05E6\u05D1\u05D9\u05E2 OCISvcCtx \u05DE\u05EA\u05D5\u05DA C-XA \u05EA\u05D5\u05DA \u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1- xaoSvcCtx ORA-17206=\u05E0\u05DB\u05E9\u05DC \u05D1\u05E0\u05D9\u05E1\u05D9\u05D5\u05DF \u05DC\u05D4\u05E9\u05D9\u05D2 \u05DE\u05E6\u05D1\u05D9\u05E2 OCIEnv \u05DE\u05EA\u05D5\u05DA C-XA \u05EA\u05D5\u05DA \u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1- xaoEnv ORA-17207=\u05D4\u05DE\u05D0\u05E4\u05D9\u05D9\u05DF tnsEntry \u05DC\u05D0 \u05D4\u05D5\u05D2\u05D3\u05E8 \u05D1\u05DE\u05E7\u05D5\u05E8 \u05D4\u05E0\u05EA\u05D5\u05E0\u05D9\u05DD ORA-17213=C-XA \u05D4\u05D7\u05D6\u05D9\u05E8 XAER_RMERR \u05D1\u05DE\u05D4\u05DC\u05DA xa_open ORA-17215=C-XA \u05D4\u05D7\u05D6\u05D9\u05E8 \u05D0\u05EA XAER_INVAL \u05D1\u05DE\u05D4\u05DC\u05DA xa_open ORA-17216=C-XA \u05D4\u05D7\u05D6\u05D9\u05E8 \u05D0\u05EA XAER_PROTO \u05D1\u05DE\u05D4\u05DC\u05DA xa_open ORA-17233=C-XA \u05D4\u05D7\u05D6\u05D9\u05E8 \u05D0\u05EA XAER_RMERR \u05D1\u05DE\u05D4\u05DC\u05DA xa_close ORA-17235=C-XA \u05D4\u05D7\u05D6\u05D9\u05E8 \u05D0\u05EA XAER_INVAL \u05D1\u05DE\u05D4\u05DC\u05DA xa_close ORA-17236=C-XA \u05D4\u05D7\u05D6\u05D9\u05E8 \u05D0\u05EA XAER_PROTO \u05D1\u05DE\u05D4\u05DC\u05DA xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u05D4\u05E4\u05E8\u05EA \u05E4\u05E8\u05D5\u05D8\u05D5\u05E7\u05D5\u05DC ORA-17402=\u05E6\u05E4\u05D5\u05D9\u05D4 \u05D4\u05D5\u05D3\u05E2\u05EA RPA \u05D0\u05D7\u05EA \u05D1\u05DC\u05D1\u05D3 ORA-17403=\u05E6\u05E4\u05D5\u05D9\u05D4 \u05D4\u05D5\u05D3\u05E2\u05EA RXH \u05D0\u05D7\u05EA \u05D1\u05DC\u05D1\u05D3 ORA-17404=\u05D4\u05EA\u05E7\u05D1\u05DC\u05D5 \u05D9\u05D5\u05EA\u05E8 RXD \u05DE\u05D4\u05E6\u05E4\u05D5\u05D9 ORA-17405=\u05D0\u05D5\u05E8\u05DA \u05D4- UAC \u05D0\u05D9\u05E0\u05D5 \u05D0\u05E4\u05E1 ORA-17406=\u05D7\u05E8\u05D9\u05D2\u05D4 \u05DE\u05D4\u05D0\u05D5\u05E8\u05DA \u05D4\u05DE\u05E8\u05D1\u05D9 \u05E9\u05DC \u05D4\u05DE\u05D0\u05D2\u05E8 (buffer) ORA-17407=\u05D9\u05D9\u05E6\u05D5\u05D2 \u05D4\u05E1\u05D5\u05D2 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 (setRep) ORA-17408=\u05D9\u05D9\u05E6\u05D5\u05D2 \u05D4\u05E1\u05D5\u05D2 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 (getRep) ORA-17409=\u05D0\u05D5\u05E8\u05DA \u05D4\u05DE\u05D0\u05D2\u05E8 (buffer) \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17410=\u05D0\u05D9\u05DF \u05D9\u05D5\u05EA\u05E8 \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05DC\u05E7\u05E8\u05D9\u05D0\u05D4 \u05DE\u05D4-socket ORA-17411=\u05D7\u05D5\u05E1\u05E8 \u05D4\u05EA\u05D0\u05DE\u05D4 \u05D1\u05D9\u05D9\u05E6\u05D5\u05D2\u05D9 \u05E1\u05D5\u05D2 \u05D4\u05E0\u05EA\u05D5\u05E0\u05D9\u05DD ORA-17412=\u05D0\u05D5\u05E8\u05DA \u05D4\u05E1\u05D5\u05D2 \u05E2\u05D5\u05DC\u05D4 \u05E2\u05DC \u05D4\u05D0\u05D5\u05E8\u05DA \u05D4\u05DE\u05E8\u05D1\u05D9 ORA-17413=\u05D7\u05E8\u05D9\u05D2\u05D4 \u05D1\u05D2\u05D5\u05D3\u05DC \u05D4\u05DE\u05E4\u05EA\u05D7 ORA-17414=\u05D0\u05D9\u05DF \u05DE\u05E1\u05E4\u05D9\u05E7 \u05DE\u05E7\u05D5\u05DD \u05D1\u05DE\u05D0\u05D2\u05E8 (buffer) \u05DC\u05D0\u05D7\u05E1\u05D5\u05DF \u05E9\u05DE\u05D5\u05EA \u05D4\u05E2\u05DE\u05D5\u05D3\u05D5\u05EA ORA-17415=\u05E1\u05D5\u05D2 \u05D6\u05D4 \u05DC\u05D0 \u05D8\u05D5\u05E4\u05DC ORA-17416=FATAL ORA-17417=\u05D1\u05E2\u05D9\u05D4 \u05D1- NLS, \u05E4\u05E2\u05E0\u05D5\u05D7 \u05E9\u05DE\u05D5\u05EA \u05D4\u05E2\u05DE\u05D5\u05D3\u05D5\u05EA \u05E0\u05DB\u05E9\u05DC ORA-17418=\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05D0\u05D5\u05E8\u05DA \u05D4\u05E9\u05D3\u05D4 \u05E9\u05DC \u05D4\u05DE\u05D1\u05E0\u05D4 \u05D4\u05E4\u05E0\u05D9\u05DE\u05D9 ORA-17419=\u05DE\u05E1\u05E4\u05E8 \u05D4\u05E2\u05DE\u05D5\u05D3\u05D5\u05EA \u05E9\u05D4\u05D5\u05D7\u05D6\u05E8 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17420=\u05D2\u05E8\u05E1\u05EA Oracle \u05DC\u05D0 \u05DE\u05D5\u05D2\u05D3\u05E8\u05EA ORA-17421=\u05D4\u05E1\u05D5\u05D2\u05D9\u05DD \u05D0\u05D5 \u05D4\u05D7\u05D9\u05D1\u05D5\u05E8 \u05D0\u05D9\u05E0\u05DD \u05DE\u05D5\u05D2\u05D3\u05E8\u05D9\u05DD ORA-17422=\u05DE\u05D7\u05DC\u05E7\u05D4 \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D4 \u05D1-factory ORA-17423=\u05E0\u05E2\u05E9\u05D4 \u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05D1\u05DC\u05D5\u05E7 PLSQL \u05DE\u05D1\u05DC\u05D9 \u05DC\u05D4\u05D2\u05D3\u05D9\u05E8 IOV ORA-17424=\u05DE\u05E0\u05E1\u05D4 \u05E4\u05E2\u05D5\u05DC\u05EA Marsahling \u05D0\u05D7\u05E8\u05EA ORA-17425=\u05DE\u05D5\u05D7\u05D6\u05E8 \u05D6\u05E8\u05DD \u05D1\u05D1\u05DC\u05D5\u05E7 PLSQL ORA-17426=\u05DB\u05E8\u05D9\u05DB\u05EA \u05D4\u05D9\u05E6\u05D9\u05D0\u05D4 \u05D5\u05D2\u05DD \u05DB\u05E8\u05D9\u05DB\u05EA \u05D4\u05DB\u05E0\u05D9\u05E1\u05D4 \u05D4\u05DF NULL ORA-17427=\u05E0\u05E2\u05E9\u05D4 \u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1- OAC \u05E9\u05DC\u05D0 \u05D0\u05D5\u05EA\u05D7\u05DC ORA-17428=\u05D9\u05E9 \u05DC\u05D1\u05E6\u05E2 \u05D4\u05EA\u05D7\u05D1\u05E8\u05D5\u05EA (logon) \u05DC\u05D0\u05D7\u05E8 \u05D4\u05D4\u05EA\u05E7\u05E9\u05E8\u05D5\u05EA (connect) ORA-17429=\u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DC\u05DB\u05DC \u05D4\u05E4\u05D7\u05D5\u05EA \u05DE\u05D7\u05D5\u05D1\u05E8 \u05DC\u05E9\u05E8\u05EA ORA-17430=\u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05D7\u05D5\u05D1\u05E8 \u05DC\u05E9\u05E8\u05EA ORA-17431=\u05DE\u05E9\u05E4\u05D8 \u05D4- SQL \u05DC\u05E0\u05D9\u05EA\u05D5\u05D7 \u05E8\u05D9\u05E7 ORA-17432=\u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D5\u05EA \u05D1- all7 ORA-17433=\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8\u05D9\u05DD \u05DC\u05D0 \u05EA\u05E7\u05E4\u05D9\u05DD \u05D1\u05E7\u05E8\u05D9\u05D0\u05D4 ORA-17434=\u05D0\u05D9\u05E0\u05D5 \u05E0\u05DE\u05E6\u05D0 \u05D1\u05DE\u05E6\u05D1 '\u05D6\u05E8\u05D9\u05DE\u05D4' ORA-17435=\u05DE\u05E1\u05E4\u05E8 \u05D4- in_out_binds \u05D1- IOV \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17436=\u05DE\u05E1\u05E4\u05E8 \u05DC\u05D0 \u05EA\u05E7\u05E3 \u05E9\u05DC \u05D9\u05E6\u05D9\u05D0\u05D5\u05EA (outbinds) ORA-17437=\u05D4\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8\u05D9\u05DD IN/OUT \u05D1\u05D1\u05DC\u05D5\u05E7 PLSQL \u05E9\u05D2\u05D5\u05D9\u05D9\u05DD ORA-17438=\u05E4\u05E0\u05D9\u05DE\u05D9 - \u05E2\u05E8\u05DA \u05D1\u05DC\u05EA\u05D9 \u05E6\u05E4\u05D5\u05D9 ORA-17439=\u05E1\u05D5\u05D2 \u05D4- SQL \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17440=DBItem/DBType \u05D4\u05D5\u05D0 null ORA-17441=\u05D2\u05E8\u05E1\u05EA Oracle \u05D0\u05D9\u05E0\u05D4 \u05E0\u05EA\u05DE\u05DB\u05EA. \u05D4\u05D2\u05E8\u05E1\u05D4 \u05D4\u05DE\u05D9\u05E0\u05D9\u05DE\u05DC\u05D9\u05EA \u05D4\u05E0\u05EA\u05DE\u05DB\u05EA \u05D4\u05D9\u05D0 7.2.3. ORA-17442=\u05E2\u05E8\u05DA \u05E1\u05DE\u05DF \u05D4\u05D9\u05D9\u05D7\u05D5\u05E1 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05E7\u05E3 ORA-17443=\u05D0\u05D9\u05DF \u05EA\u05DE\u05D9\u05DB\u05D4 \u05DC\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D0\u05D5 \u05E1\u05D9\u05E1\u05DE\u05D4 \u05E9\u05D4\u05DD null \u05D1\u05D3\u05E8\u05D9\u05D9\u05D1\u05E8 THIN ORA-17444=\u05D2\u05E8\u05E1\u05EA \u05D4\u05E4\u05E8\u05D5\u05D8\u05D5\u05E7\u05D5\u05DC TTC \u05E9\u05D4\u05EA\u05E7\u05D1\u05DC\u05D4 \u05DE\u05D4\u05E9\u05E8\u05EA \u05D0\u05D9\u05E0\u05D4 \u05E0\u05EA\u05DE\u05DB\u05EA ORA-17445=LOB \u05DB\u05D1\u05E8 \u05E4\u05EA\u05D5\u05D7 \u05D1\u05D0\u05D5\u05EA\u05D4 \u05D4\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4. ORA-17446=LOB \u05DB\u05D1\u05E8 \u05E1\u05D2\u05D5\u05E8 \u05D1\u05D0\u05D5\u05EA\u05D4 \u05D4\u05D8\u05E8\u05E0\u05D6\u05D0\u05E7\u05E6\u05D9\u05D4. ORA-17447=OALL8 \u05D1\u05DE\u05E6\u05D1 \u05DC\u05D0 \u05E2\u05E7\u05D1\u05D9 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_ja.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u5185\u90E8\u30A8\u30E9\u30FC ORA-17002=I/O\u4F8B\u5916\u3067\u3059\u3002 ORA-17003=\u5217\u7D22\u5F15\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17004=\u5217\u306E\u578B\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17005=\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u306A\u3044\u5217\u306E\u578B\u3067\u3059\u3002 ORA-17006=\u5217\u540D\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17007=\u52D5\u7684\u5217\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17008=\u30AF\u30ED\u30FC\u30BA\u3055\u308C\u305F\u63A5\u7D9A\u3067\u3059\u3002 ORA-17009=\u30AF\u30ED\u30FC\u30BA\u3055\u308C\u305F\u6587\u3067\u3059\u3002 ORA-17010=\u30AF\u30ED\u30FC\u30BA\u3055\u308C\u305F\u7D50\u679C\u30BB\u30C3\u30C8\u3067\u3059\u3002 ORA-17011=\u7A7A\u306E\u7D50\u679C\u30BB\u30C3\u30C8\u3067\u3059\u3002 ORA-17012=\u30D1\u30E9\u30E1\u30FC\u30BF\u306E\u578B\u304C\u7AF6\u5408\u3057\u307E\u3059\u3002 ORA-17014=ResultSet.next\u306F\u30B3\u30FC\u30EB\u3055\u308C\u307E\u305B\u3093\u3067\u3057\u305F\u3002 ORA-17015=\u6587\u306F\u53D6\u308A\u6D88\u3055\u308C\u307E\u3057\u305F\u3002 ORA-17016=\u6587\u306F\u6642\u9593\u5207\u308C\u306B\u306A\u308A\u307E\u3057\u305F\u3002 ORA-17017=\u30AB\u30FC\u30BD\u30EB\u306F\u3059\u3067\u306B\u521D\u671F\u5316\u6E08\u3067\u3059\u3002 ORA-17018=\u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u3067\u3059\u3002 ORA-17019=1\u3064\u306E\u554F\u5408\u305B\u306E\u307F\u8A18\u8FF0\u3067\u304D\u307E\u3059\u3002 ORA-17020=\u884C\u306E\u30D7\u30EA\u30D5\u30A7\u30C3\u30C1\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17021=\u5B9A\u7FA9\u304C\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17022=\u7D22\u5F15\u306B\u5B9A\u7FA9\u304C\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17023=\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u306A\u3044\u6A5F\u80FD\u3067\u3059\u3002 ORA-17024=\u8AAD\u307F\u8FBC\u3080\u30C7\u30FC\u30BF\u304C\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17025=defines.isNull()\u3067\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002 ORA-17026=\u6570\u5024\u306E\u30AA\u30FC\u30D0\u30FC\u30D5\u30ED\u30FC\u3067\u3059\u3002 ORA-17027=\u30B9\u30C8\u30EA\u30FC\u30E0\u306F\u3059\u3067\u306B\u30AF\u30ED\u30FC\u30BA\u6E08\u3067\u3059\u3002 ORA-17028=\u73FE\u884C\u306E\u7D50\u679C\u30BB\u30C3\u30C8\u304C\u30AF\u30ED\u30FC\u30BA\u3055\u308C\u308B\u307E\u3067\u3001\u65B0\u898F\u7D50\u679C\u30BB\u30C3\u30C8\u3092\u5B9F\u884C\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17029=setReadOnly: \u8AAD\u53D6\u308A\u5C02\u7528\u306E\u63A5\u7D9A\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u307E\u305B\u3093\u3002 ORA-17030=READ_COMMITTED\u304A\u3088\u3073SERIALIZABLE\u306E\u307F\u304C\u6709\u52B9\u306A\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u30FB\u30EC\u30D9\u30EB\u3067\u3059\u3002 ORA-17031=setAutoClose: \u81EA\u52D5\u30AF\u30ED\u30FC\u30BA\u30FB\u30E2\u30FC\u30C9\u304C\u300C\u30AA\u30F3\u300D\u306E\u5834\u5408\u306E\u307F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u307E\u3059\u3002 ORA-17032=\u884C\u306E\u30D7\u30EA\u30D5\u30A7\u30C3\u30C1\u3092\u30BC\u30ED\u306B\u8A2D\u5B9A\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17033=\u4E0D\u5B8C\u5168\u306ASQL92\u6587\u5B57\u5217\u3067\u3059 - \u4F4D\u7F6E ORA-17034=\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u306A\u3044SQL92\u30C8\u30FC\u30AF\u30F3\u3067\u3059 - \u4F4D\u7F6E ORA-17035=\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u306A\u3044\u30AD\u30E3\u30E9\u30AF\u30BF\u30FB\u30BB\u30C3\u30C8\u3067\u3059\u3002 ORA-17036=OracleNumber\u3067\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002 ORA-17037=UTF8\u3068UCS2\u3068\u306E\u9593\u306E\u5909\u63DB\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002 ORA-17038=\u30D0\u30A4\u30C8\u914D\u5217\u306E\u9577\u3055\u304C\u4E0D\u5341\u5206\u3067\u3059\u3002 ORA-17039=\u6587\u5B57\u914D\u5217\u306E\u9577\u3055\u304C\u4E0D\u5341\u5206\u3067\u3059\u3002 ORA-17040=\u63A5\u7D9AURL\u306B\u30B5\u30D6\u30FB\u30D7\u30ED\u30C8\u30B3\u30EB\u306E\u6307\u5B9A\u304C\u5FC5\u8981\u3067\u3059\u3002 ORA-17041=IN\u307E\u305F\u306FOUT\u30D1\u30E9\u30E1\u30FC\u30BF\u304C\u3042\u308A\u307E\u305B\u3093 - \u7D22\u5F15: ORA-17042=\u30D0\u30C3\u30C1\u306E\u5024\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17043=\u30B9\u30C8\u30EA\u30FC\u30E0\u306E\u6700\u5927\u30B5\u30A4\u30BA\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17044=\u5185\u90E8\u30A8\u30E9\u30FC: \u30C7\u30FC\u30BF\u914D\u5217\u3092\u5272\u5F53\u3066\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17045=\u5185\u90E8\u30A8\u30E9\u30FC: \u30D0\u30C3\u30C1\u306E\u5024\u7BC4\u56F2\u3092\u8D85\u3048\u3066\u30D0\u30A4\u30F3\u30C9\u5909\u6570\u306B\u30A2\u30AF\u30BB\u30B9\u3057\u3088\u3046\u3068\u3057\u307E\u3057\u305F\u3002 ORA-17046=\u5185\u90E8\u30A8\u30E9\u30FC: \u30C7\u30FC\u30BF\u30FB\u30A2\u30AF\u30BB\u30B9\u306B\u5BFE\u3059\u308B\u7D22\u5F15\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17047=\u578B\u8A18\u8FF0\u5B50\u306E\u89E3\u6790\u3067\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002 ORA-17048=\u578B\u304C\u5B9A\u7FA9\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002 ORA-17049=JAVA\u3068SQL\u306E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u578B\u304C\u9069\u5408\u3057\u307E\u305B\u3093\u3002 ORA-17050=\u30D9\u30AF\u30C8\u30EB\u306B\u305D\u306E\u3088\u3046\u306A\u8981\u7D20\u306F\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17051=\u3053\u306EAPI\u306F\u3001UDT\u4EE5\u5916\u306E\u578B\u306B\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17052=\u3053\u306E\u53C2\u7167\u306F\u6709\u52B9\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17053=\u30B5\u30A4\u30BA\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17054=LOB \u30ED\u30B1\u30FC\u30BF\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17055=\u7121\u52B9\u306A\u30AD\u30E3\u30E9\u30AF\u30BF\u304C\u898B\u3064\u304B\u308A\u307E\u3057\u305F - ORA-17056=\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u306A\u3044\u30AD\u30E3\u30E9\u30AF\u30BF\u30FB\u30BB\u30C3\u30C8\u3067\u3059(orai18n.jar\u3092\u30AF\u30E9\u30B9\u30D1\u30B9\u306B\u8FFD\u52A0\u3057\u3066\u304F\u3060\u3055\u3044) ORA-17057=\u30AF\u30ED\u30FC\u30BA\u3055\u308C\u305FLOB\u3067\u3059\u3002 ORA-17058=\u5185\u90E8\u30A8\u30E9\u30FC: NLS\u5909\u63DB\u7387\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17059=\u5185\u90E8\u8868\u73FE\u306E\u5909\u63DB\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002 ORA-17060=\u8A18\u8FF0\u5B50\u306E\u69CB\u6210\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002 ORA-17061=\u8A18\u8FF0\u5B50\u304C\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17062=\u53C2\u7167\u30AB\u30FC\u30BD\u30EB\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17063=\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u4E2D\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17064=\u69CB\u6587\u304C\u7121\u52B9\u3001\u307E\u305F\u306F\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u540D\u304CNULL\u3067\u3059\u3002 ORA-17065=\u5909\u63DB\u30AF\u30E9\u30B9\u304CNULL\u3067\u3059\u3002 ORA-17066=\u30A2\u30AF\u30BB\u30B9\u30FB\u30EC\u30A4\u30E4\u30FC\u306B\u306F\u56FA\u6709\u306E\u5B9F\u88C5\u304C\u5FC5\u8981\u3067\u3059\u3002 ORA-17067=\u7121\u52B9\u306AOracle URL\u304C\u6307\u5B9A\u3055\u308C\u307E\u3057\u305F\u3002 ORA-17068=\u30B3\u30FC\u30EB\u306B\u7121\u52B9\u306A\u5F15\u6570\u304C\u3042\u308A\u307E\u3059\u3002 ORA-17069=\u660E\u793A\u7684\u306AXA\u30B3\u30FC\u30EB\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044\u3002 ORA-17070=\u30C7\u30FC\u30BF\u30FB\u30B5\u30A4\u30BA\u304C\u3053\u306E\u578B\u306E\u6700\u5927\u30B5\u30A4\u30BA\u3092\u8D85\u3048\u3066\u3044\u307E\u3059\u3002 ORA-17071=\u6700\u5927VARRAY\u5236\u9650\u3092\u8D85\u3048\u307E\u3057\u305F\u3002 ORA-17072=\u5217\u306B\u5BFE\u3057\u3066\u633F\u5165\u5024\u304C\u5927\u304D\u3059\u304E\u307E\u3059\u3002 ORA-17074=\u540D\u524D\u30D1\u30BF\u30FC\u30F3\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17075=\u8EE2\u9001\u5C02\u7528\u306E\u7D50\u679C\u30BB\u30C3\u30C8\u306B\u5BFE\u3059\u308B\u64CD\u4F5C\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17076=\u8AAD\u53D6\u308A\u5C02\u7528\u306E\u7D50\u679C\u30BB\u30C3\u30C8\u306B\u5BFE\u3059\u308B\u64CD\u4F5C\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17077=REF\u5024\u306E\u8A2D\u5B9A\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002 ORA-17078=\u63A5\u7D9A\u306F\u3059\u3067\u306B\u30AA\u30FC\u30D7\u30F3\u3057\u3066\u3044\u308B\u305F\u3081\u3001\u64CD\u4F5C\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17079=\u65E2\u5B58\u306E\u30E6\u30FC\u30B6\u30FC\u8CC7\u683C\u8A3C\u660E\u3068\u4E00\u81F4\u3057\u307E\u305B\u3093\u3002 ORA-17080=\u7121\u52B9\u306A\u30D0\u30C3\u30C1\u30FB\u30B3\u30DE\u30F3\u30C9\u3067\u3059\u3002 ORA-17081=\u30D0\u30C3\u30C1\u51E6\u7406\u3067\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002 ORA-17082=\u73FE\u884C\u306E\u884C\u304C\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17083=\u633F\u5165\u884C\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17084=\u633F\u5165\u884C\u3067\u30B3\u30FC\u30EB\u3055\u308C\u307E\u3057\u305F\u3002 ORA-17085=\u5024\u306E\u7AF6\u5408\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002 ORA-17086=\u633F\u5165\u884C\u306E\u5217\u5024\u304C\u672A\u5B9A\u7FA9\u3067\u3059\u3002 ORA-17087=\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9\u30FB\u30D2\u30F3\u30C8\u304C\u7121\u8996\u3055\u308C\u307E\u3057\u305F: setFetchDirection() ORA-17088=\u30EA\u30AF\u30A8\u30B9\u30C8\u3057\u305F\u7D50\u679C\u30BB\u30C3\u30C8\u306E\u578B\u3068\u540C\u6642\u5B9F\u884C\u30EC\u30D9\u30EB\u306E\u69CB\u6587\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002 ORA-17089=\u5185\u90E8\u30A8\u30E9\u30FC ORA-17090=\u64CD\u4F5C\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17091=\u30EA\u30AF\u30A8\u30B9\u30C8\u3057\u305F\u578B\u304A\u3088\u3073/\u307E\u305F\u306F\u540C\u6642\u5B9F\u884C\u30EC\u30D9\u30EB\u3067\u7D50\u679C\u30BB\u30C3\u30C8\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17092=JDBC\u6587\u3067\u30B3\u30FC\u30EB\u51E6\u7406\u306E\u7D42\u4E86\u3092\u4F5C\u6210\u307E\u305F\u306F\u5B9F\u884C\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17093=OCI\u64CD\u4F5C\u3067OCI_SUCCESS_WITH_INFO\u304C\u623B\u308A\u307E\u3057\u305F\u3002 ORA-17094=\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u30FB\u30BF\u30A4\u30D7\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u304C\u9069\u5408\u3057\u307E\u305B\u3093\u3002 ORA-17095=\u6587\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u30FB\u30B5\u30A4\u30BA\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002 ORA-17096=\u6587\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u306F\u3053\u306E\u8AD6\u7406\u63A5\u7D9A\u306B\u5BFE\u3057\u3066\u4F7F\u7528\u53EF\u80FD\u306B\u3067\u304D\u307E\u305B\u3093\u3002 ORA-17097=PL/SQL\u306E\u7D22\u5F15\u8868\u306E\u8981\u7D20\u30BF\u30A4\u30D7\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17098=\u7A7A\u306ELOB\u64CD\u4F5C\u306F\u7121\u52B9\u3067\u3059\u3002 ORA-17099=PL/SQL\u306E\u7D22\u5F15\u8868\u306E\u914D\u5217\u306E\u9577\u3055\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17100=\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u306EJava\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17101=OCI\u63A5\u7D9A\u30D7\u30FC\u30EB\u30FB\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306B\u7121\u52B9\u306A\u30D7\u30ED\u30D1\u30C6\u30A3\u304C\u3042\u308A\u307E\u3059\u3002 ORA-17102=Bfile\u306F\u8AAD\u53D6\u308A\u5C02\u7528\u3067\u3059 ORA-17103=getConnection\u7D4C\u7531\u3067\u623B\u308B\u63A5\u7D9A\u30BF\u30A4\u30D7\u306F\u7121\u52B9\u3067\u3059\u3002\u304B\u308F\u308A\u306BgetJavaSqlConnection\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044 ORA-17104=\u5B9F\u884C\u3059\u308BSQL\u6587\u306F\u7A7A\u307E\u305F\u306FNULL\u306B\u3067\u304D\u307E\u305B\u3093 ORA-17105=\u63A5\u7D9A\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u30BF\u30A4\u30E0\u30BE\u30FC\u30F3\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093 ORA-17106=\u6307\u5B9A\u3055\u308C\u305FJDBC-OCI\u30C9\u30E9\u30A4\u30D0\u306E\u63A5\u7D9A\u30D7\u30FC\u30EB\u69CB\u6210\u304C\u7121\u52B9\u3067\u3059 ORA-17107=\u7121\u52B9\u306A\u30D7\u30ED\u30AD\u30B7\u30FB\u30BF\u30A4\u30D7\u304C\u6307\u5B9A\u3055\u308C\u307E\u3057\u305F ORA-17108=defineColumnType\u306B\u6700\u5927\u9577\u304C\u6307\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093 ORA-17109=\u6A19\u6E96\u306EJava\u6587\u5B57\u30A8\u30F3\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093 ORA-17110=\u5B9F\u884C\u304C\u8B66\u544A\u3067\u5B8C\u4E86\u3057\u307E\u3057\u305F ORA-17111=\u7121\u52B9\u306A\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5TTL\u306E\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u304C\u6307\u5B9A\u3055\u308C\u307E\u3057\u305F\u3002 ORA-17112=\u6307\u5B9A\u3055\u308C\u305F\u30B9\u30EC\u30C3\u30C9\u9593\u9694\u304C\u7121\u52B9\u3067\u3059 ORA-17113=\u30B9\u30EC\u30C3\u30C9\u9593\u9694\u5024\u304C\u3001\u30AD\u30E3\u30C3\u30B7\u30E5\u306E\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u5024\u3088\u308A\u5927\u304D\u3044\u3067\u3059 ORA-17114=\u30B0\u30ED\u30FC\u30D0\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3067\u30ED\u30FC\u30AB\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u30FB\u30B3\u30DF\u30C3\u30C8\u3092\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 ORA-17115=\u30B0\u30ED\u30FC\u30D0\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3067\u30ED\u30FC\u30AB\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u30FB\u30ED\u30FC\u30EB\u30D0\u30C3\u30AF\u3092\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 ORA-17116=\u30A2\u30AF\u30C6\u30A3\u30D6\u306A\u30B0\u30ED\u30FC\u30D0\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3067\u81EA\u52D5\u30B3\u30DF\u30C3\u30C8\u3092\u30AA\u30F3\u306B\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F ORA-17117=\u30A2\u30AF\u30C6\u30A3\u30D6\u306A\u30B0\u30ED\u30FC\u30D0\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3067\u30BB\u30FC\u30D6\u30DD\u30A4\u30F3\u30C8\u3092\u8A2D\u5B9A\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F ORA-17118=\u540D\u524D\u4ED8\u304D\u30BB\u30FC\u30D6\u30DD\u30A4\u30F3\u30C8\u306EID\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 ORA-17119=\u540D\u524D\u4ED8\u304D\u3067\u306A\u3044\u30BB\u30FC\u30D6\u30DD\u30A4\u30F3\u30C8\u306E\u540D\u524D\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 ORA-17120=\u81EA\u52D5\u30B3\u30DF\u30C3\u30C8\u304C\u30AA\u30F3\u306E\u72B6\u614B\u3067\u30BB\u30FC\u30D6\u30DD\u30A4\u30F3\u30C8\u3092\u8A2D\u5B9A\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 ORA-17121=\u81EA\u52D5\u30B3\u30DF\u30C3\u30C8\u304C\u30AA\u30F3\u306E\u72B6\u614B\u3067\u30BB\u30FC\u30D6\u30DD\u30A4\u30F3\u30C8\u306B\u30ED\u30FC\u30EB\u30D0\u30C3\u30AF\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 ORA-17122=\u30B0\u30ED\u30FC\u30D0\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3067\u30ED\u30FC\u30AB\u30EB\u30FB\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u30FB\u30BB\u30FC\u30D6\u30DD\u30A4\u30F3\u30C8\u306B\u30ED\u30FC\u30EB\u30D0\u30C3\u30AF\u3067\u304D\u307E\u305B\u3093 ORA-17123=\u7121\u52B9\u306A\u6587\u30AD\u30E3\u30C3\u30B7\u30E5\u30FB\u30B5\u30A4\u30BA\u304C\u6307\u5B9A\u3055\u308C\u307E\u3057\u305F\u3002 ORA-17124=\u7121\u52B9\u306A\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u306EInactivity\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u304C\u6307\u5B9A\u3055\u308C\u307E\u3057\u305F ORA-17125=\u660E\u793A\u7684\u306A\u30AD\u30E3\u30C3\u30B7\u30E5\u306B\u3088\u308A\u4E0D\u9069\u5207\u306A\u6587\u306E\u7A2E\u985E\u304C\u623B\u3055\u308C\u307E\u3057\u305F\u3002 ORA-17126=\u6307\u5B9A\u5F85\u6A5F\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u3092\u7D4C\u904E\u3057\u307E\u3057\u305F ORA-17127=\u6307\u5B9A\u3055\u308C\u305F\u56FA\u5B9A\u5F85\u6A5F\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u304C\u7121\u52B9\u3067\u3059 ORA-17128=SQL\u6587\u5B57\u5217\u304C\u554F\u5408\u305B\u3067\u306F\u3042\u308A\u307E\u305B\u3093 ORA-17129=SQL\u6587\u5B57\u5217\u304CDML\u6587\u3067\u306F\u3042\u308A\u307E\u305B\u3093 ORA-17132=\u7121\u52B9\u306A\u5909\u63DB\u304C\u30EA\u30AF\u30A8\u30B9\u30C8\u3055\u308C\u307E\u3057\u305F ORA-17133=UNUSED ORA-17134=SQL\u306E\u540D\u524D\u6307\u5B9A\u30D1\u30E9\u30E1\u30FC\u30BF\u306E\u9577\u3055\u304C32\u6587\u5B57\u3092\u8D85\u3048\u3066\u3044\u307E\u3059 ORA-17135=setXXXStream\u3067\u4F7F\u7528\u3055\u308C\u305F\u30D1\u30E9\u30E1\u30FC\u30BF\u540D\u304C\u3001SQL\u3067\u8907\u6570\u56DE\u4F7F\u7528\u3055\u308C\u3066\u3044\u307E\u3059 ORA-17136=DATALINK URL\u306E\u5F62\u5F0F\u306B\u8AA4\u308A\u304C\u3042\u308A\u307E\u3059\u3002\u304B\u308F\u308A\u306BgetString()\u3092\u8A66\u884C\u3057\u3066\u304F\u3060\u3055\u3044 ORA-17137=\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u304C\u4F7F\u7528\u53EF\u80FD\u3067\u306F\u306A\u3044\u304B\u3001\u307E\u305F\u306F\u30AD\u30E3\u30C3\u30B7\u30E5\u304C\u4F7F\u7528\u53EF\u80FD\u306A\u6709\u52B9\u306ADataSource\u3067\u306F\u3042\u308A\u307E\u305B\u3093 ORA-17138=\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u540D\u304C\u7121\u52B9\u3067\u3059\u3002\u6709\u52B9\u306A\u6587\u5B57\u5217\u3067\u4E00\u610F\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059 ORA-17139=\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u304C\u7121\u52B9\u3067\u3059 ORA-17140=\u3053\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u540D\u306E\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u306F\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059 ORA-17141=\u3053\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u540D\u306E\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u306F\u5B58\u5728\u3057\u307E\u305B\u3093 ORA-17142=\u3053\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u540D\u306E\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u306F\u7121\u52B9\u3067\u3059 ORA-17143=\u7121\u52B9\u307E\u305F\u306F\u5931\u52B9\u3057\u3066\u3044\u308B\u63A5\u7D9A\u304C\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u5185\u306B\u898B\u3064\u304B\u308A\u307E\u3057\u305F ORA-17144=\u6587\u306E\u51E6\u7406\u304C\u5B9F\u884C\u3055\u308C\u307E\u305B\u3093 ORA-17145=\u7121\u52B9\u306AONS\u30A4\u30D9\u30F3\u30C8\u3092\u53D7\u4FE1\u3057\u307E\u3057\u305F ORA-17146=\u7121\u52B9\u306AONS\u30A4\u30D9\u30F3\u30C8\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u53D7\u4FE1\u3057\u307E\u3057\u305F ORA-17147=SQL\u306B\u5B58\u5728\u3057\u306A\u3044\u30D1\u30E9\u30E1\u30FC\u30BF\u540D\u306E\u8A2D\u5B9A\u3092\u8A66\u884C\u3057\u307E\u3057\u305F ORA-17148=Thin\u3067\u306E\u307F\u5B9F\u88C5\u3055\u308C\u308B\u30E1\u30BD\u30C3\u30C9 ORA-17149=\u3053\u308C\u306F\u3059\u3067\u306B\u30D7\u30ED\u30AD\u30B7\u30FB\u30BB\u30C3\u30B7\u30E7\u30F3\u3067\u3059 ORA-17150=\u30D7\u30ED\u30AD\u30B7\u30FB\u30BB\u30C3\u30B7\u30E7\u30F3\u306E\u4E0D\u6B63\u306A\u5F15\u6570\u3067\u3059 ORA-17151=CLOB\u306F\u5927\u304D\u3059\u304E\u3066Java\u6587\u5B57\u5217\u306B\u683C\u7D0D\u3067\u304D\u307E\u305B\u3093 ORA-17152=\u3053\u306E\u30E1\u30BD\u30C3\u30C9\u306F\u8AD6\u7406\u63A5\u7D9A\u3067\u306E\u307F\u5B9F\u88C5\u3055\u308C\u307E\u3059 ORA-17153=\u3053\u306E\u30E1\u30BD\u30C3\u30C9\u306F\u7269\u7406\u63A5\u7D9A\u3067\u306E\u307F\u5B9F\u88C5\u3055\u308C\u307E\u3059 ORA-17154=Oracle\u30AD\u30E3\u30E9\u30AF\u30BF\u3092Unicode\u306B\u30DE\u30C3\u30D7\u3067\u304D\u307E\u305B\u3093 ORA-17155=Unicode\u3092Oracle\u30AD\u30E3\u30E9\u30AF\u30BF\u306B\u30DE\u30C3\u30D7\u3067\u304D\u307E\u305B\u3093 ORA-17156=\u30A8\u30F3\u30C9\u30C4\u30FC\u30A8\u30F3\u30C9\u306E\u30E1\u30C8\u30EA\u30C3\u30AF\u5024\u306E\u914D\u5217\u30B5\u30A4\u30BA\u304C\u7121\u52B9\u3067\u3059 ORA-17157=setString\u3067\u306F\u300132766\u6587\u5B57\u672A\u6E80\u306E\u6587\u5B57\u5217\u306E\u307F\u51E6\u7406\u3067\u304D\u307E\u3059 ORA-17158=\u3053\u306E\u95A2\u6570\u3067\u306F\u7D99\u7D9A\u6642\u9593\u304C\u7121\u52B9\u3067\u3059 ORA-17159=\u30A8\u30F3\u30C9\u30C4\u30FC\u30A8\u30F3\u30C9\u306E\u30C8\u30EC\u30FC\u30B9\u306E\u30E1\u30C8\u30EA\u30C3\u30AF\u5024\u304C\u9577\u3059\u304E\u307E\u3059 ORA-17160=\u5B9F\u884C\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8ID\u306E\u9806\u5E8F\u756A\u53F7\u304C\u7BC4\u56F2\u5916\u3067\u3059 ORA-17161=\u4F7F\u7528\u3055\u308C\u305F\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u30FB\u30E2\u30FC\u30C9\u304C\u7121\u52B9\u3067\u3059 ORA-17162=\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044holdability\u5024\u3067\u3059 ORA-17163=\u63A5\u7D9A\u30AD\u30E3\u30C3\u30B7\u30E5\u304C\u4F7F\u7528\u53EF\u80FD\u306A\u5834\u5408\u306F\u3001getXAConnection()\u3092\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093 ORA-17164=\u30AD\u30E3\u30C3\u30B7\u30E5\u304C\u6709\u52B9\u306A\u7269\u7406\u63A5\u7D9A\u304B\u3089\u306FgetXAResource()\u3092\u30B3\u30FC\u30EB\u3067\u304D\u307E\u305B\u3093 ORA-17165=\u3053\u306E\u63A5\u7D9A\u306E\u30B5\u30FC\u30D0\u30FC\u306B\u306FDBMS_JDBC\u30D1\u30C3\u30B1\u30FC\u30B8\u304C\u4E8B\u524D\u306B\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093 ORA-17166=PLSQL\u6587\u3067fetch\u3092\u5B9F\u884C\u3067\u304D\u307E\u305B\u3093 ORA-17167=PKI\u30AF\u30E9\u30B9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002'connect /'\u6A5F\u80FD\u3092\u4F7F\u7528\u3059\u308B\u306B\u306F\u3001oraclepki.jar\u3092CLASSPATH\u306B\u6307\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059 ORA-17168=Secret Store\u3067\u554F\u984C\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002\u30A6\u30A9\u30EC\u30C3\u30C8\u30FB\u30ED\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u8ABF\u3079\u3001\u30AA\u30FC\u30D7\u30F3\u30FB\u30A6\u30A9\u30EC\u30C3\u30C8(cwallet.sso)\u306E\u6709\u7121\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u307E\u305F\u3001mkstore\u30E6\u30FC\u30C6\u30A3\u30EA\u30C6\u30A3\u3092\u4F7F\u7528\u3057\u3066\u3001\u3053\u306E\u30A6\u30A9\u30EC\u30C3\u30C8\u306B\u9069\u5207\u306A\u8CC7\u683C\u8A3C\u660E\u304C\u542B\u307E\u308C\u3066\u3044\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002 ORA-17169=\u30B9\u30C8\u30EA\u30FC\u30E0\u3092ScrollableResultSet\u307E\u305F\u306FUpdatableResultSet\u306B\u30D0\u30A4\u30F3\u30C9\u3067\u304D\u307E\u305B\u3093 ORA-17170=\u30CD\u30FC\u30E0\u30B9\u30DA\u30FC\u30B9\u306F\u7A7A\u306B\u3067\u304D\u307E\u305B\u3093 ORA-17171=\u5C5E\u6027\u306E\u9577\u3055\u306F30\u6587\u5B57\u3092\u8D85\u3048\u3066\u306F\u3044\u3051\u307E\u305B\u3093 ORA-17172=\u5C5E\u6027\u306E\u5024\u306F400\u6587\u5B57\u3092\u8D85\u3048\u3066\u306F\u3044\u3051\u307E\u305B\u3093 ORA-17173=\u3059\u3079\u3066\u306E\u30EA\u30BF\u30FC\u30F3\u30FB\u30D1\u30E9\u30E1\u30FC\u30BF\u304C\u767B\u9332\u3055\u308C\u3066\u3044\u307E\u305B\u3093 ORA-17174=\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u308B\u30CD\u30FC\u30E0\u30B9\u30DA\u30FC\u30B9\u306FCLIENTCONTEXT\u3060\u3051\u3067\u3059 ORA-17175=\u30EA\u30E2\u30FC\u30C8ONS\u69CB\u6210\u4E2D\u306E\u30A8\u30E9\u30FC ORA-17200=XA open\u6587\u5B57\u5217\u3092Java\u304B\u3089C\u3078\u6B63\u3057\u304F\u5909\u63DB\u3067\u304D\u307E\u305B\u3093 ORA-17201=XA close\u6587\u5B57\u5217\u3092Java\u304B\u3089C\u3078\u6B63\u3057\u304F\u5909\u63DB\u3067\u304D\u307E\u305B\u3093 ORA-17202=RM\u540D\u3092Java\u304B\u3089C\u3078\u6B63\u3057\u304F\u5909\u63DB\u3067\u304D\u307E\u305B\u3093 ORA-17203=\u30DD\u30A4\u30F3\u30BF\u30FB\u30BF\u30A4\u30D7\u3092jlong\u306B\u30AD\u30E3\u30B9\u30C8\u3067\u304D\u307E\u305B\u3093 ORA-17204=\u5165\u529B\u914D\u5217\u304C\u77ED\u304B\u3059\u304E\u3066OCI\u30CF\u30F3\u30C9\u30EB\u3092\u4FDD\u6301\u3067\u304D\u307E\u305B\u3093 ORA-17205=xaoSvcCtx\u3092\u4F7F\u7528\u3057\u3066C-XA\u304B\u3089OCISvcCtx\u30CF\u30F3\u30C9\u30EB\u3092\u53D6\u5F97\u3059\u308B\u306E\u306B\u5931\u6557\u3057\u307E\u3057\u305F ORA-17206=xaoEnv\u3092\u4F7F\u7528\u3057\u3066C-XA\u304B\u3089OCIEnv\u3092\u53D6\u5F97\u3059\u308B\u306E\u306B\u5931\u6557\u3057\u307E\u3057\u305F ORA-17207=tnsEntry\u30D7\u30ED\u30D1\u30C6\u30A3\u304CDataSource\u306B\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093 ORA-17213=xa_open\u3067C-XA\u304B\u3089XAER_RMERR\u304C\u623B\u3055\u308C\u307E\u3057\u305F ORA-17215=xa_open\u3067C-XA\u304B\u3089XAER_INVAL\u304C\u623B\u3055\u308C\u307E\u3057\u305F ORA-17216=xa_open\u3067C-XA\u304B\u3089XAER_PROTO\u304C\u623B\u3055\u308C\u307E\u3057\u305F ORA-17233=xa_close\u3067C-XA\u304B\u3089XAER_RMERR\u304C\u623B\u3055\u308C\u307E\u3057\u305F ORA-17235=xa_close\u3067C-XA\u304B\u3089XAER_INVAL\u304C\u623B\u3055\u308C\u307E\u3057\u305F ORA-17236=xa_close\u3067C-XA\u304B\u3089XAER_PROTO\u304C\u623B\u3055\u308C\u307E\u3057\u305F # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u30D7\u30ED\u30C8\u30B3\u30EB\u9055\u53CD\u3067\u3059\u3002 ORA-17402=RPA\u30E1\u30C3\u30BB\u30FC\u30B8\u306F1\u3064\u306E\u306F\u305A\u3067\u3059\u3002 ORA-17403=RXH\u30E1\u30C3\u30BB\u30FC\u30B8\u306F1\u3064\u306E\u306F\u305A\u3067\u3059\u3002 ORA-17404=\u4E88\u5B9A\u3088\u308A\u591A\u3044RXD\u3092\u53D7\u3051\u53D6\u308A\u307E\u3057\u305F\u3002 ORA-17405=UAC\u306E\u9577\u3055\u306F\u30BC\u30ED\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17406=\u6700\u5927\u30D0\u30C3\u30D5\u30A1\u9577\u3092\u8D85\u3048\u3066\u3044\u307E\u3059\u3002 ORA-17407=\u578B\u8868\u73FE\u304C\u7121\u52B9\u3067\u3059(setRep)\u3002 ORA-17408=\u578B\u8868\u73FE\u304C\u7121\u52B9\u3067\u3059(getRep)\u3002 ORA-17409=\u30D0\u30C3\u30D5\u30A1\u9577\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17410=\u30BD\u30B1\u30C3\u30C8\u304B\u3089\u8AAD\u307F\u8FBC\u3080\u30C7\u30FC\u30BF\u306F\u3053\u308C\u4EE5\u4E0A\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17411=\u30C7\u30FC\u30BF\u578B\u306E\u8868\u73FE\u304C\u9069\u5408\u3057\u307E\u305B\u3093\u3002 ORA-17412=\u578B\u306E\u9577\u3055\u304C\u6700\u5927\u3092\u8D85\u3048\u3066\u3044\u307E\u3059\u3002 ORA-17413=\u30AD\u30FC\u30FB\u30B5\u30A4\u30BA\u304C\u5927\u304D\u3059\u304E\u307E\u3059\u3002 ORA-17414=\u5217\u540D\u3092\u4FDD\u5B58\u3059\u308B\u306B\u306F\u30D0\u30C3\u30D5\u30A1\u30FB\u30B5\u30A4\u30BA\u304C\u4E0D\u5341\u5206\u3067\u3059\u3002 ORA-17415=\u3053\u306E\u578B\u306F\u672A\u51E6\u7406\u3067\u3059\u3002 ORA-17416=FATAL ORA-17417=NLS\u306E\u554F\u984C\u3067\u3001\u5217\u540D\u306E\u30C7\u30B3\u30FC\u30C9\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002 ORA-17418=\u5185\u90E8\u69CB\u9020\u4F53\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u9577\u30A8\u30E9\u30FC\u3067\u3059\u3002 ORA-17419=\u7121\u52B9\u306A\u5217\u306E\u6570\u304C\u623B\u308A\u307E\u3057\u305F\u3002 ORA-17420=Oracle\u30D0\u30FC\u30B8\u30E7\u30F3\u304C\u5B9A\u7FA9\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002 ORA-17421=\u578B\u307E\u305F\u306F\u63A5\u7D9A\u304C\u5B9A\u7FA9\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002 ORA-17422=\u30D5\u30A1\u30AF\u30C8\u30EA\u306B\u7121\u52B9\u306A\u30AF\u30E9\u30B9\u304C\u3042\u308A\u307E\u3059\u3002 ORA-17423=IOV\u306E\u5B9A\u7FA9\u306A\u3057\u3067PLSQL\u30D6\u30ED\u30C3\u30AF\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002 ORA-17424=\u7570\u306A\u308B\u914D\u5217\u64CD\u4F5C\u3092\u8A66\u307F\u3066\u3044\u307E\u3059\u3002 ORA-17425=PLSQL\u30D6\u30ED\u30C3\u30AF\u3067\u30B9\u30C8\u30EA\u30FC\u30E0\u3092\u623B\u3057\u3066\u3044\u307E\u3059\u3002 ORA-17426=IN\u30D0\u30A4\u30F3\u30C9\u3001OUT\u30D0\u30A4\u30F3\u30C9\u3068\u3082\u306BNULL\u3067\u3059\u3002 ORA-17427=\u521D\u671F\u5316\u3055\u308C\u3066\u3044\u306A\u3044OAC\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002 ORA-17428=\u63A5\u7D9A\u5F8C\u306B\u30ED\u30B0\u30AA\u30F3\u306E\u30B3\u30FC\u30EB\u304C\u5FC5\u8981\u3067\u3059\u3002 ORA-17429=\u5C11\u306A\u304F\u3068\u3082\u30B5\u30FC\u30D0\u30FC\u306B\u63A5\u7D9A\u3057\u3066\u3044\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002 ORA-17430=\u30B5\u30FC\u30D0\u30FC\u3078\u306E\u30ED\u30B0\u30AA\u30F3\u304C\u5FC5\u8981\u3067\u3059\u3002 ORA-17431=\u89E3\u6790\u3059\u308BSQL\u6587\u304CNULL\u3067\u3059\u3002 ORA-17432=all7\u3067\u30AA\u30D7\u30B7\u30E7\u30F3\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17433=\u30B3\u30FC\u30EB\u306E\u5F15\u6570\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17434=\u30B9\u30C8\u30EA\u30FC\u30E0\u30FB\u30E2\u30FC\u30C9\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002 ORA-17435=IOV\u3067in_out_binds\u306E\u6570\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17436=\u30A2\u30A6\u30C8\u30D0\u30A4\u30F3\u30C9\u306E\u6570\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17437=PLSQL\u30D6\u30ED\u30C3\u30AF\u306EIN/OUT\u5F15\u6570\u306B\u30A8\u30E9\u30FC\u304C\u3042\u308A\u307E\u3059\u3002 ORA-17438=\u5185\u90E8 - \u4E88\u671F\u3057\u306A\u3044\u5024\u3067\u3059\u3002 ORA-17439=SQL\u306E\u578B\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17440=DBItem/DBType\u304CNULL\u3067\u3059\u3002 ORA-17441=\u3053\u306EOracle\u30D0\u30FC\u30B8\u30E7\u30F3\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u307E\u305B\u3093\u30027.2.3\u4EE5\u4E0A\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u307E\u3059\u3002 ORA-17442=Refcursor\u5024\u304C\u7121\u52B9\u3067\u3059\u3002 ORA-17443=NULL\u306E\u30E6\u30FC\u30B6\u30FC\u307E\u305F\u306F\u30D1\u30B9\u30EF\u30FC\u30C9\u306F\u3001THIN\u30C9\u30E9\u30A4\u30D0\u3067\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u307E\u305B\u3093\u3002 ORA-17444=\u30B5\u30FC\u30D0\u30FC\u304B\u3089\u53D7\u3051\u53D6\u3063\u305FTTC\u30D7\u30ED\u30C8\u30B3\u30EB\u30FB\u30D0\u30FC\u30B8\u30E7\u30F3\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u307E\u305B\u3093\u3002 ORA-17445=LOB\u306F\u3001\u540C\u3058\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3067\u3059\u3067\u306B\u30AA\u30FC\u30D7\u30F3\u3055\u308C\u3066\u3044\u307E\u3059 ORA-17446=LOB\u306F\u3001\u540C\u3058\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3067\u3059\u3067\u306B\u30AF\u30ED\u30FC\u30BA\u3055\u308C\u3066\u3044\u307E\u3059 ORA-17447=OALL8\u77DB\u76FE\u3057\u305F\u72B6\u614B\u306B\u3042\u308A\u307E\u3059 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_ko.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\uB0B4\uBD80 \uC624\uB958 ORA-17002=IO \uC608\uC678 \uC0C1\uD669 ORA-17003=\uBD80\uC801\uD569\uD55C \uC5F4 \uC778\uB371\uC2A4 ORA-17004=\uBD80\uC801\uD569\uD55C \uC5F4 \uC720\uD615 ORA-17005=\uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uC5F4 \uC720\uD615 ORA-17006=\uBD80\uC801\uD569\uD55C \uC5F4 \uC774\uB984 ORA-17007=\uBD80\uC801\uD569\uD55C \uB3D9\uC801 \uC5F4 ORA-17008=\uC811\uC18D \uC885\uB8CC ORA-17009=\uBA85\uB839\uBB38 \uC885\uB8CC ORA-17010=\uACB0\uACFC \uC9D1\uD569\uC744 \uC885\uB8CC\uD588\uC74C ORA-17011=\uACB0\uACFC \uC9D1\uD569\uC744 \uBAA8\uB450 \uC18C\uBAA8\uD588\uC74C ORA-17012=\uB9E4\uAC1C\uBCC0\uC218 \uC720\uD615 \uCDA9\uB3CC ORA-17014=ResultSet.next\uAC00 \uD638\uCD9C\uB418\uC9C0 \uC54A\uC558\uC74C ORA-17015=\uBA85\uB839\uBB38\uC774 \uCDE8\uC18C\uB418\uC5C8\uC74C ORA-17016=\uBA85\uB839\uBB38\uC774 \uC2DC\uAC04 \uCD08\uACFC\uB418\uC5C8\uC74C ORA-17017=\uCEE4\uC11C\uAC00 \uC774\uBBF8 \uCD08\uAE30\uD654\uB418\uC5C8\uC74C ORA-17018=\uBD80\uC801\uD569\uD55C \uCEE4\uC11C ORA-17019=\uC9C8\uC758\uB9CC \uC124\uBA85\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4 ORA-17020=\uBD80\uC801\uD569\uD55C \uD589 \uC0AC\uC804 \uC778\uCD9C\uC785\uB2C8\uB2E4 ORA-17021=\uC815\uC758 \uB204\uB77D ORA-17022=\uC778\uB371\uC2A4\uC5D0\uC11C \uC815\uC758 \uB204\uB77D ORA-17023=\uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uAE30\uB2A5\uC785\uB2C8\uB2E4 ORA-17024=\uC77D\uC740 \uB370\uC774\uD130\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17025=defines.isNull ()\uC5D0 \uC624\uB958\uAC00 \uC788\uC2B5\uB2C8\uB2E4 ORA-17026=\uC22B\uC790 \uC624\uBC84\uD50C\uB85C\uC6B0 ORA-17027=\uC2A4\uD2B8\uB9BC\uC774 \uC774\uBBF8 \uC885\uB8CC\uB418\uC5C8\uC2B5\uB2C8\uB2E4 ORA-17028=\uD604\uC7AC ResultSet\uC774 \uC885\uB8CC\uB420 \uB54C\uAE4C\uC9C0 \uC0C8\uB85C\uC6B4 \uC815\uC758\uB97C \uC218\uD589\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17029=setReadOnly: \uC77D\uAE30 \uC804\uC6A9 \uC5F0\uACB0\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4 ORA-17030=READ_COMMITTED\uC640 SERIALIZABLE\uB9CC\uC774 \uC801\uD569\uD55C \uD2B8\uB79C\uC7AD\uC158 \uB808\uBCA8\uC785\uB2C8\uB2E4 ORA-17031=setAutoClose: \uC790\uB3D9 \uC885\uB8CC \uBAA8\uB4DC \uC2E4\uD589\uB9CC \uC9C0\uC6D0\uD569\uB2C8\uB2E4 ORA-17032=\uD589 \uC0AC\uC804 \uC778\uCD9C\uC744 0\uC73C\uB85C \uC124\uC815\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17033=\uD574\uB2F9 \uC704\uCE58\uC5D0 \uD3D0\uAE30\uB41C SQL92 \uBB38\uC790\uC5F4 ORA-17034=\uD574\uB2F9 \uC704\uCE58\uC5D0 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 SQL92 \uD1A0\uD070 ORA-17035=\uBB38\uC790 \uC9D1\uD569\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4!! ORA-17036=OracleNumber\uC5D0 \uC608\uC678 \uC0C1\uD669\uC774 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4 ORA-17037=UTF8\uACFC UCS2 \uAC04\uC5D0 \uC11C\uB85C \uBCC0\uD658\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17038=\uBC14\uC774\uD2B8 \uBC30\uC5F4\uC774 \uCDA9\uBD84\uD788 \uAE38\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4 ORA-17039=\uBB38\uC790 \uBC30\uC5F4\uC774 \uCDA9\uBD84\uD788 \uAE38\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4 ORA-17040=\uC5F0\uACB0 URL\uC5D0 \uD558\uC704 \uD504\uB85C\uD1A0\uCF5C\uC774 \uC9C0\uC815\uB418\uC5B4\uC57C \uD569\uB2C8\uB2E4 ORA-17041=\uC778\uB371\uC2A4\uC5D0\uC11C \uB204\uB77D\uB41C IN \uB610\uB294 OUT \uB9E4\uAC1C\uBCC0\uC218: ORA-17042=\uBD80\uC801\uD569\uD55C \uC77C\uAD04\uCC98\uB9AC \uAC12\uC785\uB2C8\uB2E4 ORA-17043=\uBD80\uC801\uD569\uD55C \uC2A4\uD2B8\uB9BC \uCD5C\uB300 \uD06C\uAE30\uC785\uB2C8\uB2E4 ORA-17044=\uB0B4\uBD80 \uC624\uB958: \uB370\uC774\uD130 \uBC30\uC5F4\uC774 \uD560\uB2F9\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4 ORA-17045=\uB0B4\uBD80 \uC624\uB958: \uC77C\uAD04\uCC98\uB9AC \uAC12\uC744 \uCD08\uACFC\uD558\uB294 \uBC14\uC778\uB4DC \uAC12\uC5D0 \uC561\uC138\uC2A4\uB97C \uC2DC\uB3C4\uD569\uB2C8\uB2E4 ORA-17046=\uB0B4\uBD80 \uC624\uB958: \uB370\uC774\uD130 \uC561\uC138\uC2A4\uC5D0 \uBD80\uC801\uD569\uD55C \uC778\uB371\uC2A4\uC785\uB2C8\uB2E4 ORA-17047=\uC720\uD615 \uAE30\uC220\uC790 \uAD6C\uBB38 \uBD84\uC11D\uC5D0 \uC624\uB958\uAC00 \uC788\uC2B5\uB2C8\uB2E4 ORA-17048=\uC815\uC758\uB418\uC9C0 \uC54A\uC740 \uC720\uD615\uC785\uB2C8\uB2E4 ORA-17049=java \uBC0F sql \uAC1D\uCCB4 \uC720\uD615\uC5D0 \uC77C\uAD00\uC131\uC774 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17050=\uD574\uB2F9 \uC694\uC18C\uAC00 \uBCA1\uD130\uC5D0 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17051=\uC774 API\uB294 UDT\uAC00 \uC544\uB2CC \uC720\uD615\uC5D0 \uC0AC\uC6A9\uB420 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17052=\uBD80\uC801\uD569\uD55C \uCC38\uC870\uC785\uB2C8\uB2E4 ORA-17053=\uBD80\uC801\uD569\uD55C \uD06C\uAE30\uC785\uB2C8\uB2E4 ORA-17054=\uBD80\uC801\uD569\uD55C LOB \uB85C\uCF00\uC774\uD130\uC785\uB2C8\uB2E4 ORA-17055=\uBD80\uC801\uD569\uD55C \uBB38\uC790\uC785\uB2C8\uB2E4 ORA-17056=\uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uBB38\uC790 \uC9D1\uD569(\uD074\uB798\uC2A4 \uACBD\uB85C\uC5D0 orai18n.jar \uCD94\uAC00) ORA-17057=LOB\uB97C \uC885\uB8CC\uD588\uC2B5\uB2C8\uB2E4 ORA-17058=\uB0B4\uBD80 \uC624\uB958: NLS \uBCC0\uD658 \uBE44\uC728\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4 ORA-17059=\uB0B4\uBD80 \uD45C\uAE30\uB85C \uBCC0\uD658\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17060=\uAE30\uC220\uC790\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17061=\uAE30\uC220\uC790 \uB204\uB77D ORA-17062=\uBD80\uC801\uD569\uD55C \uCC38\uC870 \uCEE4\uC11C\uC785\uB2C8\uB2E4 ORA-17063=\uD2B8\uB79C\uC7AD\uC158 \uC911\uC774 \uC544\uB2D9\uB2C8\uB2E4 ORA-17064=\uAD6C\uBB38\uC774 \uBD80\uC801\uD569\uD558\uAC70\uB098 \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uC774\uB984\uC774 \uB110\uC785\uB2C8\uB2E4 ORA-17065=\uBCC0\uD658 \uD074\uB798\uC2A4\uAC00 \uB110\uC785\uB2C8\uB2E4 ORA-17066=\uC561\uC138\uC2A4 \uCE35\uC5D0 \uC801\uD569\uD55C \uAD6C\uD604\uC774 \uD544\uC694\uD569\uB2C8\uB2E4 ORA-17067=\uBD80\uC801\uD569\uD55C Oracle URL\uC774 \uC9C0\uC815\uB418\uC5C8\uC2B5\uB2C8\uB2E4 ORA-17068=\uD638\uCD9C\uC5D0 \uBD80\uC801\uD569\uD55C \uC778\uC218\uC785\uB2C8\uB2E4 ORA-17069=\uBA85\uC2DC\uC801 XA \uD638\uCD9C\uC744 \uC0AC\uC6A9\uD569\uB2C8\uB2E4 ORA-17070=\uB370\uC774\uD130 \uD06C\uAE30\uAC00 \uD574\uB2F9 \uC720\uD615\uC758 \uCD5C\uB300 \uD06C\uAE30\uBCF4\uB2E4 \uD07D\uB2C8\uB2E4 ORA-17071=\uCD5C\uB300 VARRAY \uD55C\uACC4\uB97C \uCD08\uACFC\uD588\uC2B5\uB2C8\uB2E4 ORA-17072=\uC5F4\uC5D0 \uB108\uBB34 \uD070 \uAC12\uC774 \uC0BD\uC785\uB418\uC5C8\uC2B5\uB2C8\uB2E4 ORA-17074=\uBD80\uC801\uD569\uD55C \uC774\uB984 \uD328\uD134\uC785\uB2C8\uB2E4 ORA-17075=\uC804\uBC29\uD5A5 \uC804\uC6A9 \uACB0\uACFC \uC9D1\uD569\uC5D0 \uBD80\uC801\uD569\uD55C \uC791\uC5C5\uC774 \uC218\uD589\uB418\uC5C8\uC2B5\uB2C8\uB2E4 ORA-17076=\uC77D\uAE30 \uC804\uC6A9 \uACB0\uACFC \uC9D1\uD569\uC5D0 \uBD80\uC801\uD569\uD55C \uC791\uC5C5\uC774 \uC218\uD589\uB418\uC5C8\uC2B5\uB2C8\uB2E4 ORA-17077=REF \uAC12 \uC124\uC815\uC744 \uC124\uC815\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17078=\uC5F0\uACB0\uC774 \uC5F4\uB824 \uC788\uC73C\uBBC0\uB85C \uC791\uC5C5\uC744 \uC218\uD589\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17079=\uC0AC\uC6A9\uC790 \uC778\uC99D\uC11C\uAC00 \uAE30\uC874 \uC778\uC99D\uC11C\uC640 \uC77C\uCE58\uD558\uC9C0 \uC54A\uC74C ORA-17080=\uBD80\uC801\uD569\uD55C \uC77C\uAD04\uCC98\uB9AC \uBA85\uB839\uC785\uB2C8\uB2E4 ORA-17081=\uC77C\uAD04\uCC98\uB9AC \uC791\uC5C5 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4 ORA-17082=\uD604\uC7AC \uD589\uC774 \uC544\uB2D9\uB2C8\uB2E4 ORA-17083=\uC0BD\uC785 \uD589\uC5D0 \uC788\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4 ORA-17084=\uC0BD\uC785 \uD589\uC5D0\uC11C \uD638\uCD9C\uD588\uC2B5\uB2C8\uB2E4 ORA-17085=\uAC12 \uCDA9\uB3CC\uC774 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4 ORA-17086=\uC0BD\uC785 \uD589\uC5D0\uC11C \uC5F4 \uAC12\uC774 \uC815\uC758\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4 ORA-17087=\uC131\uB2A5 \uD78C\uD2B8 \uBB34\uC2DC: setFetchDirection() ORA-17088=\uC694\uCCAD\uB41C \uACB0\uACFC \uC9D1\uD569 \uC720\uD615\uACFC \uB3D9\uC2DC\uC131 \uC218\uC900\uC744 \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294 \uAD6C\uBB38\uC785\uB2C8\uB2E4 ORA-17089=\uB0B4\uBD80 \uC624\uB958 ORA-17090=\uD5C8\uC6A9\uB418\uC9C0 \uC54A\uC740 \uC791\uC5C5 ORA-17091=\uC694\uCCAD\uB41C \uC720\uD615 \uBC0F \uB3D9\uC2DC\uC131 \uC218\uC900\uC5D0\uC11C \uACB0\uACFC \uC9D1\uD569\uC744 \uC0DD\uC131\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17092=\uD638\uCD9C \uCC98\uB9AC \uC885\uB8CC \uC2DC JDBC \uBB38\uC744 \uC0DD\uC131\uD558\uAC70\uB098 \uC2E4\uD589\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17093=OCI \uC791\uC5C5\uC774 OCI_SUCCESS_WITH_INFO\uB97C \uBC18\uD658\uD588\uC2B5\uB2C8\uB2E4. ORA-17094=\uAC1D\uCCB4 \uC720\uD615 \uBC84\uC804\uC774 \uB9DE\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. ORA-17095=\uBA85\uB839\uBB38 \uCE90\uC2DC \uD06C\uAE30\uAC00 \uC124\uC815\uB418\uC9C0 \uC54A\uC74C ORA-17096=\uC774 \uB17C\uB9AC\uC801 \uC811\uC18D\uC5D0 \uBA85\uB839\uBB38\uC744 \uCE90\uC2DC\uB85C \uC800\uC7A5\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17097=\uBD80\uC801\uD569\uD55C PL/SQL \uC778\uB371\uC2A4 \uD14C\uC774\uBE14 \uC694\uC18C \uC720\uD615 ORA-17098=\uBD80\uC801\uD569\uD55C \uBE48 lob \uC791\uC5C5 ORA-17099=\uBD80\uC801\uD569\uD55C PL/SQL \uC778\uB371\uC2A4 \uD14C\uC774\uBE14 \uBC30\uC5F4 \uAE38\uC774 ORA-17100=\uBD80\uC801\uD569\uD55C \uB370\uC774\uD130\uBCA0\uC774\uC2A4 Java \uAC1D\uCCB4 ORA-17101=OCI \uC811\uC18D \uD480 \uAC1D\uCCB4\uC5D0 \uBD80\uC801\uD569\uD55C \uB4F1\uB85D\uC815\uBCF4 ORA-17102=Bfile\uC774 \uC77D\uAE30 \uC804\uC6A9\uC784 ORA-17103=getConnection\uC744 \uD1B5\uD574 \uBC18\uD658\uD558\uAE30\uC5D0 \uBD80\uC801\uD569\uD55C \uC811\uC18D \uC720\uD615\uC785\uB2C8\uB2E4. \uB300\uC2E0 getJavaSqlConnection\uC744 \uC0AC\uC6A9\uD558\uC2ED\uC2DC\uC624. ORA-17104=\uC2E4\uD589\uD560 SQL \uBB38\uC740 \uBE44\uC5B4 \uC788\uAC70\uB098 \uB110\uC77C \uC218 \uC5C6\uC74C ORA-17105=\uC811\uC18D \uC138\uC158 \uC2DC\uAC04\uB300\uAC00 \uC124\uC815\uB418\uC9C0 \uC54A\uC74C ORA-17106=\uBD80\uC801\uD569\uD55C JDBC-OCI \uB4DC\uB77C\uC774\uBC84 \uC811\uC18D \uD480 \uAD6C\uC131\uC774 \uC9C0\uC815\uB428 ORA-17107=\uBD80\uC801\uD569\uD55C proxy \uC720\uD615\uC774 \uC9C0\uC815\uB428 ORA-17108=defineColumnType\uC5D0 \uCD5C\uB300 \uAE38\uC774\uAC00 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC74C ORA-17109=\uD45C\uC900 Java \uBB38\uC790 \uC778\uCF54\uB529\uC744 \uCC3E\uC744 \uC218 \uC5C6\uC74C ORA-17110=\uACBD\uACE0\uC640 \uD568\uAED8 \uC2E4\uD589\uC774 \uC644\uB8CC\uB428 ORA-17111=\uBD80\uC801\uD569\uD55C \uC811\uC18D \uCE90\uC2DC TTL \uC2DC\uAC04 \uCD08\uACFC\uAC00 \uC9C0\uC815\uB428 ORA-17112=\uBD80\uC801\uD569\uD55C \uC2A4\uB808\uB4DC \uAC04\uACA9\uC774 \uC9C0\uC815\uB428 ORA-17113=\uC2A4\uB808\uB4DC \uAC04\uACA9 \uAC12\uC774 \uCE90\uC2DC \uC2DC\uAC04 \uCD08\uACFC \uAC12\uBCF4\uB2E4 \uD07C ORA-17114=\uC740(\uB294) \uC804\uC5ED \uD2B8\uB79C\uC7AD\uC158\uC5D0 \uB85C\uCEEC \uD2B8\uB79C\uC7AD\uC158 \uCEE4\uBC0B\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC74C ORA-17115=\uC804\uC5ED \uD2B8\uB79C\uC7AD\uC158\uC5D0 \uB85C\uCEEC \uD2B8\uB79C\uC7AD\uC158 \uB864\uBC31\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC74C ORA-17116=\uD65C\uC131 \uC804\uC5ED \uD2B8\uB79C\uC7AD\uC158\uC5D0 \uC790\uB3D9 \uCEE4\uBC0B\uC744 \uC124\uC815\uD560 \uC218 \uC5C6\uC74C ORA-17117=\uD65C\uC131 \uC804\uC5ED \uD2B8\uB79C\uC7AD\uC158\uC5D0 \uC800\uC7A5\uC810\uC744 \uC124\uC815\uD560 \uC218 \uC5C6\uC74C ORA-17118=\uC774\uB984\uC774 \uC9C0\uC815\uB41C \uC800\uC7A5\uC810\uC5D0 \uB300\uD55C ID\uB97C \uAC00\uC838\uC62C \uC218 \uC5C6\uC74C ORA-17119=\uC774\uB984\uC774 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC740 \uC800\uC7A5\uC810\uC5D0 \uB300\uD55C \uC774\uB984\uC744 \uAC00\uC838\uC62C \uC218 \uC5C6\uC74C ORA-17120=\uC790\uB3D9 \uCEE4\uBC0B\uC744 \uC124\uC815\uD55C \uC0C1\uD0DC\uB85C \uC800\uC7A5\uC810\uC744 \uC124\uC815\uD560 \uC218 \uC5C6\uC74C ORA-17121=\uC790\uB3D9 \uCEE4\uBC0B\uC744 \uC124\uC815\uD55C \uC0C1\uD0DC\uB85C \uC800\uC7A5\uC810\uC73C\uB85C \uB864\uBC31\uD560 \uC218 \uC5C6\uC74C ORA-17122=\uC804\uC5ED \uD2B8\uB79C\uC7AD\uC158\uC758 \uB85C\uCEEC txn \uC800\uC7A5\uC810\uC73C\uB85C \uB864\uBC31\uD560 \uC218 \uC5C6\uC74C ORA-17123=\uBD80\uC801\uD569\uD55C \uBA85\uB839\uBB38 \uCE90\uC2DC \uD06C\uAE30\uAC00 \uC9C0\uC815\uB428 ORA-17124=\uBD80\uC801\uD569\uD55C \uC811\uC18D \uCE90\uC2DC \uBE44\uD65C\uC131 \uC2DC\uAC04 \uCD08\uACFC\uAC00 \uC9C0\uC815\uB428 ORA-17125=\uBA85\uC2DC\uC801 \uCE90\uC2DC\uC5D0 \uC758\uD574 \uBD80\uC801\uC808\uD55C \uBA85\uB839\uBB38 \uC720\uD615\uC774 \uBC18\uD658\uB428 ORA-17126=\uACE0\uC815\uB41C \uB300\uAE30 \uC2DC\uAC04 \uCD08\uACFC\uAC00 \uACBD\uACFC\uB428 ORA-17127=\uACE0\uC815\uB41C \uB300\uAE30 \uC2DC\uAC04 \uCD08\uACFC\uAC00 \uBD80\uC801\uD569\uD558\uAC8C \uC9C0\uC815\uB428 ORA-17128=SQL \uBB38\uC790\uC5F4\uC774 \uC9C8\uC758\uAC00 \uC544\uB2D8 ORA-17129=SQL \uBB38\uC790\uC5F4\uC774 DML \uBB38\uC774 \uC544\uB2D8 ORA-17132=\uBD80\uC801\uD569\uD55C \uBCC0\uD658\uC774 \uC694\uCCAD\uB428 ORA-17133=UNUSED ORA-17134=SQL\uC5D0\uC11C \uC774\uB984\uC774 \uC9C0\uC815\uB41C \uB9E4\uAC1C\uBCC0\uC218\uC758 \uAE38\uC774\uAC00 32\uC790\uB97C \uCD08\uACFC\uD568 ORA-17135=setXXXStream\uC5D0 \uC0AC\uC6A9\uB41C \uB9E4\uAC1C\uBCC0\uC218 \uC774\uB984\uC774 SQL\uC5D0 \uB450 \uBC88 \uC774\uC0C1 \uB098\uD0C0\uB0A8 ORA-17136=\uB370\uC774\uD130 \uB9C1\uD06C URL\uC758 \uD615\uC2DD\uC774 \uC798\uBABB\uB418\uC5B4 getString()\uC744 \uB300\uC2E0 \uC0AC\uC6A9\uD568 ORA-17137=\uC811\uC18D \uCE90\uC2F1\uC774 \uD65C\uC131\uD654\uB418\uC9C0 \uC54A\uC558\uAC70\uB098 \uC801\uD569\uD55C \uCE90\uC2DC \uD65C\uC131 \uB370\uC774\uD130 \uC18C\uC2A4\uAC00 \uC544\uB2D8 ORA-17138=\uBD80\uC801\uD569\uD55C \uC811\uC18D \uCE90\uC2DC \uC774\uB984\uC785\uB2C8\uB2E4. \uC801\uD569\uD55C \uBB38\uC790\uC5F4\uC774\uBA74\uC11C \uACE0\uC720\uD574\uC57C \uD569\uB2C8\uB2E4. ORA-17139=\uBD80\uC801\uD569\uD55C \uC811\uC18D \uCE90\uC2DC \uC18D\uC131 ORA-17140=\uC774 \uCE90\uC2DC \uC774\uB984\uC744 \uAC00\uC9C4 \uC811\uC18D \uCE90\uC2DC\uAC00 \uC874\uC7AC\uD568 ORA-17141=\uC774 \uCE90\uC2DC \uC774\uB984\uC744 \uAC00\uC9C4 \uC811\uC18D \uCE90\uC2DC\uAC00 \uC874\uC7AC\uD558\uC9C0 \uC54A\uC74C ORA-17142=\uC774 \uCE90\uC2DC \uC774\uB984\uC744 \uAC00\uC9C4 \uC811\uC18D \uCE90\uC2DC\uAC00 \uBE44\uD65C\uC131\uD654\uB428 ORA-17143=\uC811\uC18D \uCE90\uC2DC\uC5D0\uC11C \uBD80\uC801\uD569\uD558\uAC70\uB098 \uBB34\uD6A8\uD654\uB41C \uC811\uC18D\uC774 \uBC1C\uACAC\uB428 ORA-17144=\uBA85\uB839\uBB38 \uD578\uB4E4\uC774 \uC2E4\uD589\uB418\uC9C0 \uC54A\uC74C ORA-17145=\uBD80\uC801\uD569\uD55C ONS \uC774\uBCA4\uD2B8\uAC00 \uC218\uC2E0\uB428 ORA-17146=\uBD80\uC801\uD569\uD55C ONS \uC774\uBCA4\uD2B8 \uBC84\uC804\uC774 \uC218\uC2E0\uB428 ORA-17147=SQL\uC5D0\uC11C \uBC1C\uC0DD\uD558\uC9C0 \uC54A\uB294 \uB9E4\uAC1C\uBCC0\uC218 \uC774\uB984\uC744 \uC124\uC815\uD558\uB824\uACE0 \uD568 ORA-17148=\uBA54\uC18C\uB4DC\uAC00 Thin\uC5D0\uC11C\uB9CC \uAD6C\uD604\uB428 ORA-17149=\uC774\uBBF8 Proxy \uC138\uC158\uC784 ORA-17150=Proxy \uC138\uC158\uC5D0 \uB300\uD55C \uC778\uC218\uAC00 \uC798\uBABB\uB428 ORA-17151=Java \uBB38\uC790\uC5F4\uC5D0 \uC800\uC7A5\uD558\uAE30\uC5D0 CLOB\uC774 \uB108\uBB34 \uD07C ORA-17152=\uC774 \uBA54\uC18C\uB4DC\uB294 \uB17C\uB9AC\uC801 \uC811\uC18D\uC5D0\uC11C\uB9CC \uAD6C\uD604\uB428 ORA-17153=\uC774 \uBA54\uC18C\uB4DC\uB294 \uBB3C\uB9AC\uC801 \uC811\uC18D\uC5D0\uC11C\uB9CC \uAD6C\uD604\uB428 ORA-17154=Oracle \uBB38\uC790\uB294 \uC720\uB2C8\uCF54\uB4DC\uC5D0 \uB9E4\uD551\uD560 \uC218 \uC5C6\uC74C ORA-17155=\uC720\uB2C8\uCF54\uB4DC\uB294 Oracle \uBB38\uC790\uC5D0 \uB9E4\uD551\uD560 \uC218 \uC5C6\uC74C ORA-17156=\uC5D4\uB4DC \uD22C \uC5D4\uB4DC \uCE21\uC815 \uB2E8\uC704 \uAC12\uC5D0 \uB300\uD55C \uBC30\uC5F4 \uD06C\uAE30\uAC00 \uBD80\uC801\uD569\uD568 ORA-17157=setString\uC740 32766\uC790 \uBBF8\uB9CC\uC758 \uBB38\uC790\uC5F4\uB9CC \uCC98\uB9AC\uD560 \uC218 \uC788\uC74C ORA-17158=\uC774 \uD568\uC218\uC758 \uAE30\uAC04\uC774 \uBD80\uC801\uD569\uD568 ORA-17159=\uC5D4\uB4DC \uD22C \uC5D4\uB4DC \uCD94\uC801\uC5D0 \uB300\uD55C \uCE21\uC815 \uB2E8\uC704 \uAC12\uC774 \uB108\uBB34 \uAE40 ORA-17160=\uC2E4\uD589 \uCEE8\uD14D\uC2A4\uD2B8 ID \uC2DC\uD000\uC2A4 \uBC88\uD638\uAC00 \uBC94\uC704\uB97C \uBC97\uC5B4\uB0A8 ORA-17161=\uBD80\uC801\uD569\uD55C \uD2B8\uB79C\uC7AD\uC158 \uBAA8\uB4DC\uAC00 \uC0AC\uC6A9\uB418\uC5C8\uC2B5\uB2C8\uB2E4. ORA-17162=\uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \"holdability\" \uAC12\uC785\uB2C8\uB2E4. ORA-17163=\uC811\uC18D \uCE90\uC2F1\uC774 \uD65C\uC131\uD654\uB41C \uACBD\uC6B0 getXAConnection()\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17164=\uCE90\uC2F1\uC774 \uC124\uC815\uB41C \uACBD\uC6B0 \uBB3C\uB9AC\uC801 \uC811\uC18D\uC5D0\uC11C getXAResource()\uB97C \uD638\uCD9C\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17165=\uC774 \uC811\uC18D\uC5D0 \uB300\uD574 DBMS_JDBC \uD328\uD0A4\uC9C0\uAC00 \uC11C\uBC84\uC5D0 \uC0AC\uC804 \uC124\uC815\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4. ORA-17166=PLSQL \uBB38\uC5D0\uC11C \uC778\uCD9C\uC744 \uC218\uD589\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17167=PKI \uD074\uB798\uC2A4\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. 'connect /' \uAE30\uB2A5\uC744 \uC0AC\uC6A9\uD558\uB824\uBA74 oraclepki.jar\uAC00 \uD074\uB798\uC2A4 \uACBD\uB85C\uC5D0 \uC788\uC5B4\uC57C \uD569\uB2C8\uB2E4. ORA-17168=Secret Store\uC5D0 \uBB38\uC81C\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4. \uC5F4\uB9B0 \uC804\uC790 \uC9C0\uAC11(cwallet.sso)\uC774 \uC788\uC744 \uACBD\uC6B0 \uC804\uC790 \uC9C0\uAC11\uC758 \uC704\uCE58\uB97C \uD655\uC778\uD558\uACE0 \uC774 \uC9C0\uAC11\uC5D0 mkstore \uC720\uD2F8\uB9AC\uD2F0\uB97C \uC0AC\uC6A9\uD558\uB294 \uC62C\uBC14\uB978 \uC778\uC99D\uC11C\uAC00 \uD3EC\uD568\uB418\uC5B4 \uC788\uB294\uC9C0 \uD655\uC778\uD558\uC2ED\uC2DC\uC624. ORA-17169=ScrollableResultSet \uB610\uB294 UpdatableResultSet\uC5D0 \uC2A4\uD2B8\uB9BC\uC744 \uBC14\uC778\uB4DC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17170=\uB124\uC784\uC2A4\uD398\uC774\uC2A4\uB294 \uBE44\uC6CC \uB458 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17171=\uC18D\uC131 \uAE38\uC774\uB294 30\uC790\uB97C \uCD08\uACFC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17172=\uC18D\uC131 \uAC12\uC740 400\uC790\uB97C \uCD08\uACFC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. ORA-17173=\uC77C\uBD80 \uBC18\uD658 \uB9E4\uAC1C\uBCC0\uC218\uB9CC \uB4F1\uB85D\uB418\uC5C8\uC2B5\uB2C8\uB2E4. ORA-17174=CLIENTCONTEXT \uB124\uC784\uC2A4\uD398\uC774\uC2A4\uB9CC \uC9C0\uC6D0\uB429\uB2C8\uB2E4. ORA-17175=\uC6D0\uACA9 ONS \uAD6C\uC131 \uC911 \uC624\uB958 \uBC1C\uC0DD ORA-17200=Java\uC5D0\uC11C C\uB85C XA \uC5F4\uAE30 \uBB38\uC790\uC5F4\uC744 \uC81C\uB300\uB85C \uBCC0\uD658\uD560 \uC218 \uC5C6\uC74C ORA-17201=Java\uC5D0\uC11C C\uB85C XA \uB2EB\uAE30 \uBB38\uC790\uC5F4\uC744 \uC81C\uB300\uB85C \uBCC0\uD658\uD560 \uC218 \uC5C6\uC74C ORA-17202=Java\uC5D0\uC11C C\uB85C RM \uC774\uB984\uC744 \uC81C\uB300\uB85C \uBCC0\uD658\uD560 \uC218 \uC5C6\uC74C ORA-17203=jlong\uC73C\uB85C \uD3EC\uC778\uD130 \uC720\uD615\uC744 \uBCC0\uD658\uD560 \uC218 \uC5C6\uC74C ORA-17204=\uC785\uB825 \uBC30\uC5F4\uC774 OCI \uD578\uB4E4\uC744 \uBCF4\uC720\uD558\uAE30\uC5D0 \uB108\uBB34 \uC9E7\uC74C ORA-17205=xaoSvcCtx\uB97C \uC0AC\uC6A9\uD558\uC5EC C-XA\uC5D0\uC11C OCISvcCtx \uD578\uB4E4 \uC5BB\uAE30 \uC2E4\uD328 ORA-17206=xaoEnv\uB97C \uC0AC\uC6A9\uD558\uC5EC C-XA\uC5D0\uC11C OCIEnv \uD578\uB4E4 \uC5BB\uAE30 \uC2E4\uD328 ORA-17207=tnsEntry \uB4F1\uB85D\uC815\uBCF4\uAC00 DataSource\uC5D0 \uC124\uC815\uB418\uC9C0 \uC54A\uC74C ORA-17213=xa_open \uB3C4\uC911 C-XA\uAC00 XAER_RMERR \uBC18\uD658 ORA-17215=xa_open \uB3C4\uC911 C-XA\uAC00 XAER_INVAL \uBC18\uD658 ORA-17216=xa_open \uB3C4\uC911 C-XA\uAC00 XAER_PROTO \uBC18\uD658 ORA-17233=xa_close \uB3C4\uC911 C-XA\uAC00 XAER_RMERR \uBC18\uD658 ORA-17235=xa_close \uB3C4\uC911 C-XA\uAC00 XAER_INVAL \uBC18\uD658 ORA-17236=xa_close \uB3C4\uC911 C-XA\uAC00 XAER_PROTO \uBC18\uD658 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\uD504\uB85C\uD1A0\uCF5C \uC704\uBC18 ORA-17402=\uD558\uB098\uC758 RPA \uBA54\uC2DC\uC9C0\uB9CC \uD544\uC694 ORA-17403=\uD558\uB098\uC758 RXH \uBA54\uC2DC\uC9C0\uB9CC \uD544\uC694 ORA-17404=\uC608\uC0C1\uBCF4\uB2E4 \uB9CE\uC740 RXD \uC218\uC2E0 ORA-17405=UAC \uAE38\uC774\uAC00 0\uC774 \uC544\uB2D8 ORA-17406=\uCD5C\uB300 \uBC84\uD37C \uAE38\uC774 \uCD08\uACFC ORA-17407=\uBD80\uC801\uD569\uD55C \uC720\uD615 \uD45C\uAE30(set \uBC29\uC2DD)\r\n ORA-17408=\uBD80\uC801\uD569\uD55C \uC720\uD615 \uD45C\uAE30(get \uBC29\uC2DD) ORA-17409=\uBC84\uD37C \uAE38\uC774\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4 ORA-17410=\uC18C\uCF13\uC5D0\uC11C \uC77D\uC744 \uB370\uC774\uD130\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17411=\uB370\uC774\uD130 \uC720\uD615 \uD45C\uAE30\uAC00 \uC77C\uCE58\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4 ORA-17412=\uC720\uD615 \uAE38\uC774\uAC00 \uCD5C\uB300\uAC12\uBCF4\uB2E4 \uD07D\uB2C8\uB2E4 ORA-17413=\uD0A4 \uD06C\uAE30\uB97C \uCD08\uACFC\uD569\uB2C8\uB2E4 ORA-17414=\uC5F4 \uC774\uB984\uC744 \uC800\uC7A5\uD558\uAE30\uC5D0 \uBC84\uD37C \uD06C\uAE30\uAC00 \uBD80\uC871\uD569\uB2C8\uB2E4 ORA-17415=\uD574\uB2F9 \uC720\uD615\uC774 \uCC98\uB9AC\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4 ORA-17416=FATAL ORA-17417=NLS \uBB38\uC81C, \uC5F4 \uC774\uB984\uC744 \uD574\uB3C5\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4 ORA-17418=\uB0B4\uBD80 \uAD6C\uC870\uC758 \uD544\uB4DC \uAE38\uC774\uC5D0 \uC624\uB958\uAC00 \uC788\uC2B5\uB2C8\uB2E4 ORA-17419=\uBD80\uC801\uD569\uD55C \uAC1C\uC218\uC758 \uC5F4\uC774 \uBC18\uD658\uB418\uC5C8\uC2B5\uB2C8\uB2E4 ORA-17420=Oracle \uBC84\uC804\uC774 \uC815\uC758\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4 ORA-17421=\uC720\uD615 \uB610\uB294 \uC5F0\uACB0\uC774 \uC815\uC758\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4 ORA-17422=factory\uC5D0 \uBD80\uC801\uD569\uD55C \uD074\uB798\uC2A4 ORA-17423=\uC815\uC758\uB41C IOV\uAC00 \uC5C6\uC774 PLSQL \uBE14\uB85D \uC0AC\uC6A9 ORA-17424=\uB2E4\uB978 \uB9C8\uC15C\uB9C1 \uC791\uC5C5\uC744 \uC2DC\uB3C4 \uC911 ORA-17425=PLSQL \uBE14\uB85D\uC5D0 \uC788\uB294 \uC2A4\uD2B8\uB9BC\uC744 \uBC18\uD658 ORA-17426=IN \uB9E4\uAC1C\uBCC0\uC218\uC640 OUT \uB9E4\uAC1C\uBCC0\uC218\uAC00 \uBAA8\uB450 NULL\uC784 ORA-17427=\uCD08\uAE30\uD654\uB418\uC9C0 \uC54A\uC740 OAC\uB97C \uC0AC\uC6A9\uD569\uB2C8\uB2E4 ORA-17428=\uB85C\uADF8\uC778\uC740 \uC811\uC18D \uD6C4\uC5D0 \uD638\uCD9C\uB418\uC5B4\uC57C \uD569\uB2C8\uB2E4 ORA-17429=\uC801\uC5B4\uB3C4 \uC11C\uBC84\uC5D0 \uC5F0\uACB0\uB418\uC5B4 \uC788\uC5B4\uC57C \uD569\uB2C8\uB2E4 ORA-17430=\uC11C\uBC84\uC5D0 \uB85C\uADF8\uC628\uB418\uC5B4 \uC788\uC5B4\uC57C \uD569\uB2C8\uB2E4 ORA-17431=\uAD6C\uBB38 \uBD84\uC11D\uD560 SQL \uBB38\uC774 \uB110\uC785\uB2C8\uB2E4 ORA-17432=oracle 7\uC5D0 \uBD80\uC801\uD569\uD55C \uC635\uC158 ORA-17433=\uD638\uCD9C\uC5D0 \uBD80\uC801\uD569\uD55C \uC778\uC218\uC785\uB2C8\uB2E4 ORA-17434=\uC2A4\uD2B8\uB9BC \uBAA8\uB4DC\uAC00 \uC544\uB2D9\uB2C8\uB2E4 ORA-17435=IOV\uC5D0\uC11C in_out_binds \uC218\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4 ORA-17436=\uBD80\uC801\uD569\uD55C OUT \uB9E4\uAC1C\uBCC0\uC218 \uC218 ORA-17437=PLSQL \uBE14\uB85D\uC758 IN/OUT \uC778\uC218\uC5D0 \uC624\uB958 ORA-17438=\uB0B4\uBD80 - \uC608\uAE30\uCE58 \uBABB\uD55C \uAC12\uC785\uB2C8\uB2E4 ORA-17439=\uBD80\uC801\uD569\uD55C SQL \uC720\uD615\uC785\uB2C8\uB2E4 ORA-17440=DBItem/DBType\uC774 \uB110\uC785\uB2C8\uB2E4 ORA-17441=Oracle \uBC84\uC804\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uCD5C\uC18C\uD55C 7.2.3 \uBC84\uC804 \uC774\uC0C1\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4. ORA-17442=\uBD80\uC801\uD569\uD55C Refcursor \uAC12\uC785\uB2C8\uB2E4 ORA-17443=\uB110 \uC0AC\uC6A9\uC790\uB098 \uC554\uD638\uAC00 THIN \uB4DC\uB77C\uC774\uBC84\uC5D0\uC11C \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4 ORA-17444=\uC11C\uBC84\uB85C\uBD80\uD130 \uC218\uC2E0\uB41C TTC \uD504\uB85C\uD1A0\uCF5C \uBC84\uC804\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4 ORA-17445=LOB\uAC00 \uB3D9\uC77C\uD55C \uD2B8\uB79C\uC7AD\uC158\uC5D0\uC11C \uC774\uBBF8 \uC5F4\uB824 \uC788\uC2B5\uB2C8\uB2E4. ORA-17446=LOB\uAC00 \uB3D9\uC77C\uD55C \uD2B8\uB79C\uC7AD\uC158\uC5D0\uC11C \uC774\uBBF8 \uB2EB\uD614\uC2B5\uB2C8\uB2E4. ORA-17447=OALL8\uC774 \uBD88\uC77C\uCE58 \uC0C1\uD0DC\uC785\uB2C8\uB2E4. # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_nl.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Interne fout ORA-17002=I/O-uitzondering ORA-17003=Ongeldige kolomindex. ORA-17004=Ongeldig kolomtype. ORA-17005=Kolomtype wordt niet ondersteund. ORA-17006=Ongeldige kolomnaam ORA-17007=Ongeldige dynamische kolom ORA-17008=Gesloten verbinding ORA-17009=Gesloten statement ORA-17010=Gesloten resultatenset ORA-17011=Geen resultatenset meer beschikbaar. ORA-17012=Parametertypen conflicteren. ORA-17014=ResultSet.next is niet aangeroepen. ORA-17015=Statement is geannuleerd. ORA-17016=Timeout voor statement ORA-17017=Cursor al ge\u00EFnitialiseerd. ORA-17018=Ongeldige cursor. ORA-17019=Kan alleen een zoekvraag beschrijven. ORA-17020=Ongeldige rij-prefetch. ORA-17021=Definities ontbreken. ORA-17022=Definities ontbreken bij index. ORA-17023=Functie wordt niet ondersteund. ORA-17024=Geen gegevens gelezen. ORA-17025=Fout in defines.isNull (). ORA-17026=Numerieke overloop ORA-17027=Gegevensstroom is al gesloten. ORA-17028=Er kunnen geen nieuwe definities worden gemaakt totdat de huidige resultatenset is gesloten. ORA-17029=setReadOnly: alleen-lezen-verbindingen worden niet ondersteund. ORA-17030=READ_COMMITTED en SERIALIZABLE zijn de enige geldige transactieniveaus. ORA-17031=setAutoClose: alleen de modus automatisch sluiten 'aan' wordt ondersteund. ORA-17032=Kan rij-prefetch niet op nul instellen. ORA-17033=Onjuiste SQL92-string op positie ORA-17034=Niet-ondersteund SQL92-token op positie ORA-17035=Tekenset wordt niet ondersteund. ORA-17036=Uitzondering in OracleNumber. ORA-17037=Converteren tussen UTF8 en UCS2 is mislukt. ORA-17038=Byte-array is niet lang genoeg. ORA-17039=Tekenarray is niet lang genoeg. ORA-17040=Subprotocol moet worden opgegeven in verbindings-URL. ORA-17041=Parameter IN of UIT ontbreekt bij index. ORA-17042=Ongeldige batchwaarde. ORA-17043=Ongeldige maximumgrootte van gegevensstroom. ORA-17044=Interne fout: gegevensarray is niet toegewezen. ORA-17045=Interne fout: poging om bindwaarden te benaderen die boven de batchwaarde liggen. ORA-17046=Interne fout: ongeldige index voor gegevenstoegang. ORA-17047=Fout bij ontleden typedescriptor. ORA-17048=Niet-gedefinieerd type. ORA-17049=Inconsistente java- en sql-objecttypen ORA-17050=Een dergelijk element komt niet voor in de vector. ORA-17051=Deze API kan niet worden gebruikt voor andere dan UDT-typen. ORA-17052=Deze referentie is niet geldig. ORA-17053=De grootte is niet geldig. ORA-17054=De LOB-locator is niet geldig. ORA-17055=Ongeldig teken aangetroffen in ORA-17056=Niet-ondersteunde tekenset (voeg orai18n.jar toe aan het klassenpad) ORA-17057=Gesloten LOB ORA-17058=Interne fout: ongeldige NLS-conversieverhouding. ORA-17059=Converteren naar interne representatie is mislukt. ORA-17060=Maken van descriptor is mislukt. ORA-17061=Descriptor ontbreekt. ORA-17062=Ongeldige ref.-cursor ORA-17063=Niet in een transactie ORA-17064=Ongeldige syntaxis of databasenaam is NULL. ORA-17065=Conversieklasse is NULL. ORA-17066=Specifieke implementatie voor de toegangslaag vereist. ORA-17067=Ongeldige Oracle-URL opgegeven. ORA-17068=Ongeldig argument of argumenten in aanroep. ORA-17069=Gebruik expliciete XA-aanroep. ORA-17070=Gegevensgrootte overschrijdt maximumgrootte voor dit type. ORA-17071=Maximum VARRAY-limiet overschreden. ORA-17072=Ingevoegde waarde is te groot voor kolom. ORA-17074=Ongeldig naampatroon. ORA-17075=Ongeldige bewerking voor alleen-doorsturen resultatenset. ORA-17076=Ongeldige bewerking voor alleen-lezen resultatenset. ORA-17077=Instellen REF-waarde is mislukt. ORA-17078=Kan bewerking niet uitvoeren, omdat de verbindingen al zijn geopend. ORA-17079=Gebruikersreferenties komen niet overeen met bestaande gegevens. ORA-17080=Ongeldige batchopdracht. ORA-17081=Er is een fout opgetreden bij het uitvoeren van de batchopdracht. ORA-17082=Geen huidige rij. ORA-17083=Niet in de rij voor invoegen. ORA-17084=Aangeroepen vanuit de rij voor invoegen. ORA-17085=Er is een waardenconflict opgetreden. ORA-17086=Ongedefinieerde kolomwaarde in de rij voor invoegen. ORA-17087=Genegeerde prestatiehint: setFetchDirection(). ORA-17088=Syntaxis voor het aangevraagde type resultatenset en het concurrency-niveau wordt niet ondersteund. ORA-17089=Interne fout ORA-17090=Bewerking is niet toegestaan. ORA-17091=Kan geen resultatenset aanmaken van het aangevraagde type en/of concurrency-niveau. ORA-17092=JDBC-statements kunnen niet worden aangemaakt of uitgevoerd bij het afhandelen van een aanroep ORA-17093=OCI-bewerking heeft OCI_SUCCESS_WITH_INFO geretourneerd. ORA-17094=Objecttypeversies komen niet overeen. ORA-17095=Grootte van statementcache is niet ingesteld. ORA-17096=Statementcaching kan niet worden geactiveerd voor deze logische verbinding. ORA-17097=Ongeldig elementtype PL/SQL-indextabel. ORA-17098=Ongeldige lege LOB-bewerking. ORA-17099=Ongeldige arraylengte PL/SQL-indextabel. ORA-17100=Ongeldig Java-object van database. ORA-17101=Ongeldige eigenschappen in OCI-verbindingsgroepobject. ORA-17102=Bfile is alleen-lezen. ORA-17103=Ongeldig verbindingstype via getConnection. Gebruik in plaats daarvan getJavaSqlConnection. ORA-17104=Uit te voeren SQL-statement kan niet leeg of NULL zijn. ORA-17105=Tijdzone van verbindingssessie is niet ingesteld. ORA-17106=Ongeldige configuratie voor verbindingsgroep JDBC-OCI-driver opgegeven. ORA-17107=Er is een ongeldig proxytype opgegeven. ORA-17108=Geen maximale lengte opgegeven in defineColumnType. ORA-17109=Standaard Java-tekencodering niet gevonden. ORA-17110=Uitvoering voltooid met waarschuwing. ORA-17111=Ongeldige cache TLL-timeout voor verbinding opgegeven ORA-17112=Ongeldig threadinterval opgegeven. ORA-17113=Threadintervalwaarde is hoger dan de waarde van de cache-timeout. ORA-17114=Kon geen lokale transactie-commit gebruiken in een algemene transactie. ORA-17115=Kon geen lokale transactie-rollback gebruiken in een algemene transactie. ORA-17116=Kon automatisch vastleggen niet inschakelen in een actieve, algemene transactie. ORA-17117=Kon savepoint niet instellen in een actieve, algemene transactie. ORA-17118=Kon geen ID krijgen voor een benoemd savepoint. ORA-17119=Kon geen naam krijgen voor een niet-benoemd savepoint. ORA-17120=Kon geen savepoint instellen als automatisch vastleggen is ingeschakeld. ORA-17121=Kon geen rollback naar een savepoint uitvoeren als automatisch vastleggen is ingeschakeld. ORA-17122=Kon geen rollback naar een lokaal txn-savepoint in een globale transactie uitvoeren. ORA-17123=Ongeldige grootte voor statementcache opgegeven. ORA-17124=Ongeldige timeout voor inactiviteit van verbinding cache opgegeven. ORA-17125=Onjuist statementtype geretourneerd door expliciete cache ORA-17126=Timeout voor vaste wachttijd verstreken ORA-17127=Ongeldige timeout voor vaste wachttijd opgegeven ORA-17128=SQL-string is geen zoekvraag ORA-17129=SQL-string is geen DML-statement ORA-17132=Ongeldige conversie aangevraagd ORA-17133=UNUSED ORA-17134=De benoemde parameter in SQL is langer dan 32 tekens. ORA-17135=Een parameternaam die in setXXXStream wordt gebruikt, komt meerdere keren in SQL voor. ORA-17136=Onjuiste DATALINK URL. Probeer getString() te gebruiken. ORA-17137=De verbindingscache is niet actief of de gegevensbron bevat geen geldige cache. ORA-17138=Ongeldige naam voor verbindingscache. Deze naam moet een string zijn en uniek. ORA-17139=Ongeldige eigenschappen voor verbindingscache ORA-17140=Er bestaat al een verbindingscache met deze cachenaam. ORA-17141=Er bestaat geen verbindingscache met deze cachenaam. ORA-17142=De verbindingscache met deze cachenaam is inactief. ORA-17143=Er is een ongeldige of verlopen verbinding aangetroffen in de verbindingscache. ORA-17144=Statementhandle is niet uitgevoerd. ORA-17145=Ongeldig ONS-event ontvangen ORA-17146=Ongeldige ONS-eventversie ontvangen ORA-17147=Er is geprobeerd een parameternaam in te stellen die niet voorkomt in de SQL-code. ORA-17148=Methode alleen ge\u00EFmplementeerd in THIN-driver ORA-17149=Dit is al een proxysessie. ORA-17150=Onjuiste argumenten voor proxysessie ORA-17151=De CLOB-waarde is te groot voor opslag in een Java-string. ORA-17152=Deze methode wordt alleen toegepast bij logische verbindingen. ORA-17153=Deze methode wordt alleen toegepast bij fysieke verbindingen. ORA-17154=Kan Oracle teken niet toewijzen aan Unicode-teken. ORA-17155=Kan Unicode-teken niet toewijzen aan Oracle teken. ORA-17156=Ongeldige arraygrootte voor end-to-end metricwaarden ORA-17157=setString kan alleen strings van minder dan 32.766 tekens verwerken ORA-17158=Tijdsduur is ongeldig voor deze functie. ORA-17159=metricswaarde voor end-to-end tracering is te lang ORA-17160=volgnummer van uitvoeringscontext-ID buiten bereik ORA-17161=Ongeldige transactiemodus gebruikt. ORA-17162=Waarde holdability niet ondersteund. ORA-17163=Kan getXAConnection() niet gebruiken wanneer verbindingscache is ingeschakeld. ORA-17164=Kan getXAResource() niet aanroepen vanuit fysieke verbinding met cache ingeschakeld. ORA-17165=Pakket DBMS_JDBC niet vooraf ingesteld in server voor deze verbinding. ORA-17166=Kan geen ophaalbewerking uitvoeren op een PLSQL-statement. ORA-17167=PKI-klassen niet gevonden. Als u de functionaliteit voor verbinden wilt gebruiken, moet het klassenpad oraclepki.jar bevatten. ORA-17168=Probleem met de geheime opslag geconstateerd. Controleer of de walletlocatie een open wallet (cwallet.sso) bevat en zorg ervoor dat deze wallet de juiste referentiegegevens bevat. Gebruik hiervoor het hulpprogramma 'mkstore'. ORA-17169=Kan stroom niet binden aan ScrollableResultSet of UpdatableResultSet. ORA-17170=De naamruimte mag niet leeg zijn. ORA-17171=Het attribuut mag niet langer zijn dan 30 tekens. ORA-17172=De waarde van het attribuut mag niet langer zijn dan 400 tekens. ORA-17173=Niet alle retourparameters geregistreerd. ORA-17174=De enige naamruimte die wordt ondersteund is CLIENTCONTEXT ORA-17175=Fout tijdens externe ONS-configuratie ORA-17200=Kan de XA open-string niet goed converteren van Java naar C. ORA-17201=Kan de XA sluit-string niet goed converteren van Java naar C. ORA-17202=Kan de RM-naam niet goed converteren van Java naar C. ORA-17203=Kon aanwijzertype niet toedelen aan jlong. ORA-17204=Capaciteit invoerarray te klein voor OCI-handles. ORA-17205=Verkrijgen van OCISvcCtx-handle van C-XA met behulp van xaoSvcCtx is mislukt. ORA-17206=Verkrijgen van OCIEnv-handle van C-XA met behulp van xaoEnv is mislukt. ORA-17207=De eigenschap tnsEntry is niet ingesteld in DataSource. ORA-17213=C-XA retourneert XAER_RMERR tijdens xa_open. ORA-17215=C-XA retourneert XAER_INVAL tijdens xa_open. ORA-17216=C-XA retourneert XAER_PROTO tijdens xa_open. ORA-17233=C-XA retourneert XAER_RMERR tijdens xa_close. ORA-17235=C-XA retourneert XAER_INVAL tijdens xa_close. ORA-17236=C-XA retourneert XAER_PROTO tijdens xa_close. # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Protocolschending ORA-17402=Er wordt slechts \u00E9\u00E9n RPA-bericht verwacht. ORA-17403=Er wordt slechts \u00E9\u00E9n RXH-bericht verwacht. ORA-17404=Er zijn meer RXD's ontvangen dan verwacht. ORA-17405=UAC-lengte is niet nul. ORA-17406=Maximumbufferlengte wordt overschreden. ORA-17407=Ongeldige typerepresentatie (setRep). ORA-17408=Ongeldige typerepresentatie (getRep). ORA-17409=Ongeldige bufferlengte. ORA-17410=Geen gegevens meer te lezen vanuit socket. ORA-17411=Representaties van gegevenstypen komen niet overeen. ORA-17412=Typelengte groter dan maximum. ORA-17413=Sleutelgrootte wordt overschreden. ORA-17414=Niet genoeg bufferruimte om kolomnamen op te slaan. ORA-17415=Dit type is niet verwerkt. ORA-17416=FATAL ORA-17417=NLS-probleem: decoderen van kolomnamen mislukt. ORA-17418=Fout in veldlengte van interne structuur. ORA-17419=Ongeldig aantal kolommen geretourneerd. ORA-17420=Oracle versie niet gedefinieerd. ORA-17421=Typen of verbinding niet gedefinieerd. ORA-17422=Ongeldige klasse in factory. ORA-17423=Er wordt een PLSQL-blok gebruikt zonder dat een IOV is gedefinieerd. ORA-17424=Er wordt een poging gedaan een andere Marshalingbewerking uit te voeren. ORA-17425=Gegevensstroom wordt geretourneerd in PLSQL-blok. ORA-17426=Zowel IN- als OUT-binds zijn NULL. ORA-17427=Er wordt een onge\u00EFnitaliseerde OAC gebruikt. ORA-17428=Inlogprocedure moet worden aangeroepen na verbinding. ORA-17429=Moet ten minste met de server zijn verbonden. ORA-17430=Moet bij de server zijn ingelogd. ORA-17431=SQL-statement dat moet worden ontleed, is NULL. ORA-17432=Ongeldige opties in all7. ORA-17433=Ongeldige argumenten in aanroep. ORA-17434=Niet in onbeperkt doorgaande modus. ORA-17435=Ongeldig aantal in_out_binds in IOV. ORA-17436=Ongeldig aantal outbinds. ORA-17437=Fout in PLSQL-blok IN/OUT-argumenten. ORA-17438=Intern - onverwachte waarde. ORA-17439=Ongeldig SQL-type. ORA-17440=DBItem/DBType is NULL. ORA-17441=Oracle versie wordt niet ondersteund. Laagste ondersteunde versie is 7.2.3. ORA-17442=Waarde refcursor is ongeldig. ORA-17443=Null-gebruiker of -wachtwoord wordt niet ondersteund in THIN-stuurprogramma. ORA-17444=TTC-protocolversie die is ontvangen van server, wordt niet ondersteund. ORA-17445=LOB is al geopend in dezelfde transactie. ORA-17446=LOB is al gesloten in dezelfde transactie. ORA-17447=Status van OALL8 is inconsistent. # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_no.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Intern feil ORA-17002=I/U-unntak ORA-17003=Ugyldig kolonneindeks ORA-17004=Ugyldig kolonnetype ORA-17005=Kolonnetypen st\u00F8ttes ikke ORA-17006=Ugyldig kolonnenavn ORA-17007=Ugyldig dynamisk kolonne ORA-17008=Lukket tilkobling ORA-17009=Lukket setning ORA-17010=Lukket resultatsett ORA-17011=Resultatsettet er for lite ORA-17012=Parametertypekonflikt ORA-17014=ResultSet.next ble ikke kalt opp ORA-17015=Setningen ble annullert ORA-17016=Setningen fikk tidsavbrudd ORA-17017=Mark\u00F8ren er allerede initialisert ORA-17018=Ugyldig mark\u00F8r ORA-17019=Kan bare beskrive en sp\u00F8rring ORA-17020=Ugyldig rad-prefetch ORA-17021=Manglende definisjoner ORA-17022=Manglende definisjoner i indeks ORA-17023=Ikke st\u00F8ttet funksjon ORA-17024=Ingen data ble lest ORA-17025=Feil i defines.isNull () ORA-17026=Numerisk overflyt ORA-17027=Datastr\u00F8mmen er allerede lukket ORA-17028=Kan ikke utf\u00F8re nye definisjoner f\u00F8r gjeldende ResultSet er lukket ORA-17029=setReadOnly: Skrivebeskyttede tilkoblinger er ikke st\u00F8ttet ORA-17030=READ_COMMITTED og SERIALIZABLE er de eneste gyldige transaksjonsniv\u00E5ene ORA-17031=setAutoClose: St\u00F8tter bare modus for automatisk lukking p\u00E5 ORA-17032=kan ikke sette rad-prefetch til null ORA-17033=Misformet SQL92-streng i posisjon ORA-17034=Ikke st\u00F8ttet SQL92-symbol i posisjon ORA-17035=Tegnsettet er ikke st\u00F8ttet. ORA-17036=unntak i OracleNumber ORA-17037=Kan ikke konvertere mellom UTF8 og UCS2 ORA-17038=Bytematrisen er ikke lang nok ORA-17039=Tegnmatrisen er ikke lang nok ORA-17040=Underprotokollen m\u00E5 angis i tilkoblings-URLen ORA-17041=Manglende IN- eller OUT-parameter i indeks: ORA-17042=Ugyldig bunkeverdi ORA-17043=Ugyldig maksimumsst\u00F8rrelse for datastr\u00F8mmen ORA-17044=Intern feil: Datamatrisen er ikke tilordnet ORA-17045=Intern feil: Fors\u00F8k p\u00E5 f\u00E5 tilgang til bingingsverdier utenfor bunkeverdien ORA-17046=Intern feil: Ugyldig indeks for datatilgang ORA-17047=Feil i analyse av typedeskriptor ORA-17048=Udefinert type ORA-17049=Inkonsekvente java- og sql-objekttyper ORA-17050=ikke noe slikt element i vektoren ORA-17051=Dette APIet kan ikke brukes for ikke-UDT-typer ORA-17052=Denne referansen er ikke gyldig ORA-17053=St\u00F8rrelsen er ikke gyldig ORA-17054=LOB-posisjonsindikatoren er ikke gyldig ORA-17055=Ugyldig tegn ble funnet i ORA-17056=Ikke st\u00F8ttet tegnsett (legg til orai18n.jar i classpath) ORA-17057=Lukket LOB ORA-17058=Intern feil: Ugyldig forhold for NLS-konvertering ORA-17059=Kunne ikke konvertere til intern representasjon ORA-17060=Kunne ikke konstruere deskriptoren ORA-17061=Manglende deskriptor ORA-17062=Referansemark\u00F8ren er ugyldig ORA-17063=Ikke i en transaksjon ORA-17064=Ugyldig syntaks eller databasenavnet er null ORA-17065=Konverteringsklassen er null ORA-17066=Spesifikk implementering av tilgangslaget er n\u00F8dvendig ORA-17067=Ugyldig Oracle-URL er angitt ORA-17068=Ugyldig(e) argument(er) i kall ORA-17069=Bruk eksplisitt XA-kall ORA-17070=Datast\u00F8rrelsen er st\u00F8rre en maksimal st\u00F8rrelse for denne typen ORA-17071=Maksimal VARRAY-grense er overskredet ORA-17072=Innsatt verdi er for stor for kolonnen ORA-17074=ugyldig navnem\u00F8nster ORA-17075=Ugyldig operasjon for FORWARD-ONLY resultatsett ORA-17076=Ugyldig operasjon for skrivebeskyttet resultatsett ORA-17077=Kunne ikke definere REF-verdi ORA-17078=Kan ikke utf\u00F8re operasjonen fordi tilkoblingene allerede er \u00E5pnet ORA-17079=P\u00E5loggingsinformasjon for brukere samsvarer ikke med eksisterende informasjon ORA-17080=ugyldig bunkekommando ORA-17081=feil oppstod under bunkekj\u00F8ring ORA-17082=Ingen gjeldende rad ORA-17083=Ikke p\u00E5 innsettingsraden ORA-17084=Kalt opp p\u00E5 innsettingsraden ORA-17085=Verdikonflikter oppst\u00E5r ORA-17086=Udefinert kolonneverdi p\u00E5 innsettingsraden ORA-17087=Ytelsestips ble ignorert: setFetchDirection() ORA-17088=Syntaksen st\u00F8ttes ikke for \u00F8nsket type og samtidighetsniv\u00E5 for resultatsettet ORA-17089=intern feil ORA-17090=operasjonen er ikke tillatt ORA-17091=Kan ikke opprette resultatsett med \u00F8nsket type og/eller samtidighetsniv\u00E5 ORA-17092=JDBC-setninger kan ikke opprettes eller utf\u00F8res p\u00E5 slutten av kallbehandling ORA-17093=OCI-operasjonen returnerte OCI_SUCCESS_WITH_INFO ORA-17094=Objekttypeversjonen samsvarer ikke ORA-17095=St\u00F8rrelsen p\u00E5 setningshurtigbufferen er ikke definert ORA-17096=Setningshurtigbufring kan ikke aktiveres for denne logiske tilkoblingen. ORA-17097=Ugyldig elementtype for PL/SQL-indekstabellen ORA-17098=Ugyldig tom LOB-operasjon ORA-17099=Ugyldig matriselengde for PL/SQL-indekstabell ORA-17100=Ugyldig Java-objekt for databasen ORA-17101=Ugyldige egenskaper i objektet for OCI-tilkoblingsgruppe ORA-17102=Bfile er skrivebeskyttet ORA-17103=ugyldig tilkoblingstype for retur via getConnection. Bruk getJavaSqlConnection i stedet ORA-17104=SQL-setningen som skal utf\u00F8res, kan ikke v\u00E6re tom eller null ORA-17105=tidssonen for tilkoblingssesjonen var ikke angitt ORA-17106=ugyldig konfigurasjon av tilkoblingsgruppen for JDBC-OCI-driveren er angitt ORA-17107=en ugyldig proxy-type er angitt ORA-17108=Ingen maksimal lengde er angitt i defineColumnType ORA-17109=standard Java-tegnkoding ble ikke funnet ORA-17110=utf\u00F8ringen ble fullf\u00F8rt med en advarsel ORA-17111=Ugyldig tidsavbrudd for tilkobling av hurtigbuffer-TTL er angitt ORA-17112=Et ugyldig tr\u00E5dintervall er angitt ORA-17113=Verdien for tr\u00E5dintervallet er st\u00F8rre enn tidsavbruddsverdien for hurtigbufring ORA-17114=kunne ikke bruke lokal transaksjonsbekreftelse i en global transaksjon ORA-17115=kunne ikke bruke lokal tilbakestilling av transaksjonen i en global transaksjon ORA-17116=kunne ikke sl\u00E5 p\u00E5 automatisk bekreftelse i en aktiv global transaksjon ORA-17117=kunne ikke definere tilbakestillingspunktet i en aktiv global transaksjon ORA-17118=kunne ikke f\u00E5 tak i IDen for et navngitt tilbakestillingspunkt ORA-17119=kunne ikke f\u00E5 tak i navnet p\u00E5 et tilbakestillingspunkt uten navn ORA-17120=kunne ikke definere et tilbakestillingspunkt med automatisk bekreftelse p\u00E5 ORA-17121=kunne ikke tilbakestille et tilbakestillingspunkt med automatisk lagring p\u00E5 ORA-17122=kunne ikke tilbakestille et lokalt txn-tilbakestillingspunkt i en global transaksjon ORA-17123=En ugyldig st\u00F8rrelse p\u00E5 setningshurtigbufferen er angitt ORA-17124=Det er angitt ugyldig tidsavbrudd ved inaktivitet for tilkoblingshurtigbufferen ORA-17125=Uriktig setningstype returnert av eksplisitt hurtigbuffer ORA-17126=Fast ventetidsavbrudd ble utf\u00F8rt ORA-17127=Det er angitt et ugyldig tidsavbrudd for fast ventetid ORA-17128=SQL-streng er ikke sp\u00F8rring ORA-17129=SQL-streng er ikke en DML-setning ORA-17132=Det er angitt en ugyldig konvertering ORA-17133=UNUSED ORA-17134=Lengden p\u00E5 den navngitte parameteren i SQL overskrider 32 tegn ORA-17135=Parameternavnet som brukes i setXXXStream forekommer mer enn \u00E9n gang i SQL ORA-17136=Misformet DATALINK URL. Pr\u00F8v getString() i stedet ORA-17137=Hurtigbufring for tilkobling er ikke aktivert eller ugyldig hurtigbufferaktivert datakilde ORA-17138=Ugyldig navn for tilkoblingshurtigbuffer. M\u00E5 v\u00E6re en gyldig og unik streng ORA-17139=Ugyldige egenskaper for tilkoblingshurtigbuffer ORA-17140=Det finnes allerede en tilkoblingshurtigbuffer med dette hurtigbuffernavnet ORA-17141=Det finnes ikke en tilkoblingshurtigbuffer med dette hurtigbuffernavnet ORA-17142=Tilkoblingshurtigbufferen med dette hurtigbuffernavnet er deaktivert ORA-17143=Fant ugyldig eller gammel tilkobling i tilkoblingshurtigbufferen ORA-17144=setningsreferanse ikke utf\u00F8rt ORA-17145=Ugyldig ONS-hendelse mottatt ORA-17146=Ugyldig ONS-hendelseversjon mottatt ORA-17147=Fors\u00F8k p\u00E5 \u00E5 angi et parameternavn som ikke forekommer i SQL ORA-17148=Metoden er bare implementert i THIN ORA-17149=Dette er allerede en proxy-sesjon ORA-17150=Feil argumenter for proxy-sesjon ORA-17151=Clob er for stor til \u00E5 lagres i en Java-streng ORA-17152=Denne metoden implementeres bare i logiske tilkoblinger ORA-17153=Denne metoden implementeres bare i fysiske tilkoblinger ORA-17154=Kan ikke tilordne Oracle-tegn til Unicode ORA-17155=Kan ikke tilordne Unicode til Oracle-tegn ORA-17156=Ugyldig matrisest\u00F8rrelse for m\u00E5lingsverdier av typen ende-til-ende ORA-17157=setString kan bare behandle strenger med f\u00E6rre enn 32766 tegn ORA-17158=varigheten er ugyldig for denne funksjonen ORA-17159=m\u00E5lingsverdien for sporing av typen ende-til-ende, er for lang ORA-17160=sekvensnummeret for utf\u00F8ringskontekst-IDen er utenfor verdiomr\u00E5det ORA-17161=Ugyldig transaksjonsmodus er brukt ORA-17162=Ikke st\u00F8ttet verdi som kan holdes ORA-17163=Kan ikke bruke getXAConnection() n\u00E5r hurtigbufring for tilkobling er aktivert ORA-17164=Kan ikke kalle getXAResource() fra en fysisk tilkobling med hurtigbufring p\u00E5 ORA-17165=DBMS_JDBC-pakken finnes ikke p\u00E5 tjeneren for denne tilkoblingen ORA-17166=Kan ikke utf\u00F8re henting p\u00E5 en PLSQL-setning ORA-17167=Finner ikke PKI-klasser. Hvis du vil bruke connect /-funksjonaliteten, m\u00E5 oraclepki.jar v\u00E6re i klassebanen ORA-17168=det oppstod et problem med det hemmelige lageret. Kontroller lommebokplasseringen for \u00E5 se om det finnes en \u00E5pen lommebok (cwallet.sso), og kontroller at denne lommeboken inneholder riktige akkrediteringer, ved hjelp av mkstore-verkt\u00F8yet ORA-17169=Kan ikke binde str\u00F8mmen til et ScrollableResultSet eller UpdatableResultSet ORA-17170=Navneomr\u00E5det kan ikke v\u00E6re tomt ORA-17171=Lengden p\u00E5 attributtet kan ikke v\u00E6re mer enn 30 tegn ORA-17172=Verdien p\u00E5 attributtet kan ikke overstige 400 tegn ORA-17173=Ikke alle returparametrene ble registrert ORA-17174=Det eneste navneomr\u00E5det som st\u00F8ttes, er CLIENTCONTEXT ORA-17175=Feil under konfigurering av ekstern ONS ORA-17200=Kan ikke konvertere XA open-strengen fra Java til C p\u00E5 riktig m\u00E5te ORA-17201=Kan ikke konvertere XA close-strengen fra Java til C p\u00E5 riktig m\u00E5te ORA-17202=Kan ikke konvertere RM-navn fra Java til C p\u00E5 riktig m\u00E5te ORA-17203=Kunne ikke tilordne pekertypen til jlong ORA-17204=Inndatamatrisen er for kort til OCI-referansene ORA-17205=Kan ikke hente OCISvcCtx-referansen fra C-XA ved hjelp av xaoSvcCtx ORA-17206=Kan ikke hente OCIEnv-referansen fra C-XA ved hjelp av xaoEnv ORA-17207=Egenskapen tnsEntry var ikke angitt i DataSource ORA-17213=C-XA returnerte XAER_RMERR under xa_open ORA-17215=C-XA returnerte XAER_INVAL under xa_open ORA-17216=C-XA returnerte XAER_PROTO under xa_open ORA-17233=C-XA returnerte XAER_RMERR under xa_close ORA-17235=C-XA returnerte XAER_INVAL under xa_close ORA-17236=C-XA returnerte XAER_PROTO under xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Protokolloverskridelse ORA-17402=Bare \u00E9n RPA-medling er forventet ORA-17403=Bare \u00E9n RXH-medling er forventet ORA-17404=Mottok flere RXDer enn forventet ORA-17405=UAC-lengden er ikke null ORA-17406=Overskrider maksimal bufferlengde ORA-17407=ugyldig typerepresentasjon (setRep) ORA-17408=ugyldig typerepresentasjon (getRep) ORA-17409=ugyldig bufferlengde ORA-17410=Ikke flere data \u00E5 lese fra porten ORA-17411=Manglende samsvar i representasjon av datatype ORA-17412=Typelengden er st\u00F8rre enn maksimum ORA-17413=Overskrider n\u00F8kkelst\u00F8rrelsen ORA-17414=Ikke tilstrekkelig bufferst\u00F8rrelse til \u00E5 lagre kolonnenavn ORA-17415=Denne typen er ikke h\u00E5ndtert ORA-17416=FATAL ORA-17417=NLS-problem, kunne ikke dekode kolonnenavn ORA-17418=Feil i den interne strukturens feltlengde ORA-17419=Ugyldig antall kolonner ble returnert ORA-17420=Oracle-versjonen er ikke definert ORA-17421=Typer eller tilkobling er ikke definert ORA-17422=Ugyldig klasse i fabrikk ORA-17423=Bruker en PLSQL-blokk uten en definert IOV ORA-17424=Fors\u00F8ker en annen ompakkingsoperasjon ORA-17425=Returnerer en datastr\u00F8m i PLSQL-blokk ORA-17426=B\u00E5de IN- og OUT-bindinger er NULL ORA-17427=Bruker uinitialisert OAC ORA-17428=P\u00E5logging m\u00E5 kalles etter tilkobling ORA-17429=M\u00E5 i det minste v\u00E6re tilkoblet tjeneren ORA-17430=M\u00E5 v\u00E6re logget p\u00E5 tjeneren ORA-17431=SQL-setningen som skal analyseres er null ORA-17432=ugyldige valg i all7 ORA-17433=ugyldige argumenter i kallet ORA-17434=ikke i str\u00F8mmodus ORA-17435=ugyldig antall in_out_binds i IOV ORA-17436=ugyldig antall outbinds ORA-17437=Feil i PLSQL-blokkens IN/OUT-argument(er) ORA-17438=Intern - Uventet verdi ORA-17439=Ugyldig SQL-type ORA-17440=DBItem/DBType er null ORA-17441=Oracle-versjonen er ikke st\u00F8ttet. Minste st\u00F8ttede versjon er 7.2.3. ORA-17442=Refcursor-verdien er ugyldig ORA-17443=Nullbruker eller -passord er ikke st\u00F8ttet i THIN-driver ORA-17444=TTC-protokollversjonen som er mottatt fra tjeneren, er ikke st\u00F8ttet ORA-17445=LOB er allerede \u00E5pnet i den samme transaksjonen ORA-17446=LOB er allerede lukket i den samme transaksjonen ORA-17447=OALL8 er i en inkonsekvent tilstand # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_pl.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=B\u0142\u0105d wewn\u0119trzny ORA-17002=Wyj\u0105tek we-wy ORA-17003=Niepoprawny indeks kolumny ORA-17004=Niepoprawny typ kolumny ORA-17005=Nieobs\u0142ugiwany typ kolumny ORA-17006=Niepoprawna nazwa kolumny ORA-17007=Niepoprawna kolumna dynamiczna ORA-17008=Zamkni\u0119te po\u0142\u0105czenie ORA-17009=Zamkni\u0119ta instrukcja ORA-17010=Zamkni\u0119ty zestaw wynik\u00F3w ORA-17011=Wyczerpany zestaw wynik\u00F3w ORA-17012=Konflikt typu parametru ORA-17014=Nie wywo\u0142ano ResultSet.next ORA-17015=Instrukcja zosta\u0142a anulowana ORA-17016=Przekroczono limit czasu instrukcji ORA-17017=Kursor jest ju\u017C zainicjalizowany ORA-17018=Niepoprawny kursor ORA-17019=Mo\u017Cna tylko opisa\u0107 zapytanie ORA-17020=Niepoprawne wst\u0119pne pobranie wiersza ORA-17021=Brakuj\u0105ce definicje ORA-17022=Brakuj\u0105ce definicje w indeksie ORA-17023=Funkcja nieobs\u0142ugiwana ORA-17024=Nie odczytano danych ORA-17025=B\u0142\u0105d w defines.isNull () ORA-17026=Nadmiar numeryczny ORA-17027=Strumie\u0144 zosta\u0142 ju\u017C zamkni\u0119ty ORA-17028=Nie mo\u017Cna wykona\u0107 nowych definicji, dop\u00F3ki bie\u017C\u0105cy zestaw wynik\u00F3w nie zostanie zamkni\u0119ty ORA-17029=setReadOnly: Po\u0142\u0105czenia \"tylko do odczytu\" nie s\u0105 obs\u0142ugiwane ORA-17030=Jedyne poprawne poziomy transakcji to READ_COMMITTED i SERIALIZABLE ORA-17031=setAutoClose: obs\u0142ugiwany tylko tryb \"on\" ORA-17032=nie mo\u017Cna ustawi\u0107 wst\u0119pnego pobierania wierszy na zero ORA-17033=Zniekszta\u0142cony ci\u0105g SQL92 - pozycja ORA-17034=Nieobs\u0142ugiwany token SQL92 - pozycja ORA-17035=Nieobs\u0142ugiwany zestaw znak\u00F3w! ORA-17036=wyj\u0105tek w OracleNumber ORA-17037=Niepowodzenie konwersji mi\u0119dzy UTF8 i UCS2 ORA-17038=Za ma\u0142a tablica bajtowa ORA-17039=Za ma\u0142a tablica znakowa ORA-17040=Dla URL po\u0142\u0105czenia musi by\u0107 podany protok\u00F3\u0142 podrz\u0119dny ORA-17041=Brakuje parametru IN lub OUT przy indeksie: ORA-17042=Niepoprawna warto\u015B\u0107 wsadowa ORA-17043=Niepoprawny maksymalny rozmiar strumienia ORA-17044=B\u0142\u0105d wewn\u0119trzny: nie przydzielono tablicy danych ORA-17045=B\u0142\u0105d wewn\u0119trzny: pr\u00F3ba uzyskania dost\u0119pu do warto\u015Bci wi\u0105zania poza warto\u015Bci\u0105 wsadow\u0105 ORA-17046=B\u0142\u0105d wewn\u0119trzny: niepoprawny indeks dost\u0119pu do danych ORA-17047=B\u0142\u0105d podczas analizy sk\u0142adniowej deskryptora typu ORA-17048=Niezdefiniowany typ ORA-17049=Niesp\u00F3jne typy obiekt\u00F3w SQL i obiekt\u00F3w Javy ORA-17050=nie ma takiego elementu w wektorze ORA-17051=Ten interfejs API nie mo\u017Ce by\u0107 u\u017Cyty dla typ\u00F3w nie-UDT ORA-17052=To odwo\u0142anie jest niepoprawne ORA-17053=Ten rozmiar jest niepoprawny ORA-17054=Lokalizator LOB jest niepoprawny ORA-17055=Napotkano niepoprawny znak w ORA-17056=Nieobs\u0142ugiwany zestaw znak\u00F3w (prosz\u0119 doda\u0107 orai18n.jar do \u015Bcie\u017Cki classpath) ORA-17057=Zamkni\u0119ty LOB ORA-17058=B\u0142\u0105d wewn\u0119trzny: niepoprawny wsp\u00F3\u0142czynnik konwersji NLS ORA-17059=Nie uda\u0142o si\u0119 przekszta\u0142ci\u0107 w reprezentacj\u0119 wewn\u0119trzn\u0105 ORA-17060=Nie uda\u0142o si\u0119 utworzy\u0107 deskryptora ORA-17061=Brakuj\u0105cy deskryptor ORA-17062=Kursor odwo\u0142ania jest niepoprawny ORA-17063=Nie w transakcji ORA-17064=Niepoprawna sk\u0142adnia lub nazwa bazy danych jest NULL ORA-17065=Klasa konwersji jest NULL ORA-17066=Wymagana specyficzna implementacja warstwy dost\u0119pu ORA-17067=Podano niepoprawny adres Oracle URL ORA-17068=Niepoprawne argumenty w wywo\u0142aniu ORA-17069=Prosz\u0119 u\u017Cy\u0107 bezpo\u015Bredniego wywo\u0142ania XA ORA-17070=Rozmiar danych jest wi\u0119kszy ni\u017C maksymalny, dopuszczalny dla tego typu ORA-17071=Przekroczono maksymaln\u0105 granic\u0119 VARRAY ORA-17072=Wstawiana warto\u015B\u0107 jest zbyt du\u017Ca dla kolumny ORA-17074=niepoprawny wzorzec nazwy ORA-17075=Niepoprawna operacja dla zestawu wynik\u00F3w \"tylko do przes\u0142ania\" ORA-17076=Niepoprawna operacja dla zestawu wynik\u00F3w \"tylko do odczytu\" ORA-17077=Nie uda\u0142o si\u0119 ustawi\u0107 warto\u015Bci REF ORA-17078=Nie mo\u017Cna wykona\u0107 operacji, poniewa\u017C po\u0142\u0105czenia s\u0105 ju\u017C otwarte ORA-17079=Uwierzytelnienia u\u017Cytkownika r\u00F3\u017Cni\u0105 si\u0119 od istniej\u0105cych ORA-17080=niepoprawne polecenie wsadowe ORA-17081=podczas operacji wsadowej wyst\u0105pi\u0142 b\u0142\u0105d ORA-17082=Nie bie\u017C\u0105cy wiersz ORA-17083=Nie we wstawianym wierszu ORA-17084=Wywo\u0142anie wstawianego wiersza ORA-17085=Wyst\u0119puje konflikt warto\u015Bci ORA-17086=Niezdefiniowana warto\u015B\u0107 kolumny we wstawianym wierszu ORA-17087=Zignorowano podpowied\u017A: setFetchDirection() ORA-17088=Nieobs\u0142ugiwana sk\u0142adnia dla \u017C\u0105danego typu zestawu wynik\u00F3w i poziomu wsp\u00F3\u0142bie\u017Cno\u015Bci ORA-17089=b\u0142\u0105d wewn\u0119trzny ORA-17090=niedozwolona operacja ORA-17091=Nie mo\u017Cna utworzy\u0107 zestawu wyniku \u017C\u0105danego typu i/lub poziomu wsp\u00F3\u0142bie\u017Cno\u015Bci ORA-17092=Instrukcje JDBC nie mog\u0105 by\u0107 utworzone lub wykonane na ko\u0144cu przetwarzania wywo\u0142ania ORA-17093=Operacja OCI zwr\u00F3ci\u0142a OCI_SUCCESS_WITH_INFO ORA-17094=Niezgodno\u015B\u0107 wersji typu obiektu ORA-17095=Nie ustawiono rozmiaru podr\u0119cznej pami\u0119ci instrukcji ORA-17096=Buforowanie instrukcji nie mo\u017Ce by\u0107 w\u0142\u0105czone dla tego po\u0142\u0105czenia logicznego. ORA-17097=Niepoprawny typ elementu tabeli indeksu PL/SQL ORA-17098=Niepoprawna operacja opr\u00F3\u017Cnienia LOB ORA-17099=Niepoprawna d\u0142ugo\u015B\u0107 tablicy dla tabeli indeksu PL/SQL ORA-17100=Niepoprawny obiekt Java bazy danych ORA-17101=Niepoprawne w\u0142a\u015Bciwo\u015Bci obiektu puli po\u0142\u0105cze\u0144 OCI ORA-17102=BFILE jest tylko do odczytu ORA-17103=przez getConnection zostanie zwr\u00F3cony niepoprawny typ po\u0142\u0105czenia. Zamiast tego prosz\u0119 u\u017Cy\u0107 getJavaSqlConnection ORA-17104=instrukcja SQL do wykonania nie mo\u017Ce by\u0107 ani pusta, ani Null ORA-17105=nie zosta\u0142a okre\u015Blona strefa czasowa po\u0142\u0105czenia sesji ORA-17106=okre\u015Blono niepoprawn\u0105 konfiguracj\u0119 puli po\u0142\u0105cze\u0144 programu obs\u0142ugi JDBC-OCI ORA-17107=podano niepoprawny typ proxy ORA-17108=W defineColumnType nie podano maksymalnej d\u0142ugo\u015Bci ORA-17109=nie znaleziono standardowego kodowania znak\u00F3w w Javie ORA-17110=wykonywanie uko\u0144czono z ostrze\u017Ceniem ORA-17111=Podano niepoprawny limit czasu TTL pami\u0119ci podr\u0119cznej po\u0142\u0105cze\u0144 ORA-17112=Podano niepoprawny interwa\u0142 w\u0105tku ORA-17113=Interwa\u0142 w\u0105tku jest wi\u0119kszy ni\u017C limit czasu pami\u0119ci podr\u0119cznej ORA-17114=nie uda\u0142o si\u0119 u\u017Cy\u0107 lokalnego zatwierdzania transakcji w transakcji globalnej ORA-17115=nie uda\u0142o si\u0119 u\u017Cy\u0107 lokalnego wycofywania transakcji w transakcji globalnej ORA-17116=nie uda\u0142o si\u0119 w\u0142\u0105czy\u0107 automatycznego zatwierdzania w aktywnej globalnej transakcji ORA-17117=nie uda\u0142o si\u0119 ustawi\u0107 punktu zapisywania w aktywnej globalnej transakcji ORA-17118=nie uda\u0142o si\u0119 uzyska\u0107 identyfikatora dla nazwanego punktu zapisywania ORA-17119=nie uda\u0142o si\u0119 uzyska\u0107 identyfikatora dla nienazwanego punktu zapisywania ORA-17120=nie uda\u0142o si\u0119 ustawi\u0107 punktu zapisywania z w\u0142\u0105czonym automatycznym zatwierdzaniem ORA-17121=nie uda\u0142o si\u0119 wycofa\u0107 do punktu zapisywania z w\u0142\u0105czonym automatycznym zatwierdzaniem ORA-17122=w transakcji globalnej nie uda\u0142o si\u0119 wycofa\u0107 do lokalnego punktu zapisywania transakcji ORA-17123=Podano niepoprawny rozmiar podr\u0119cznej pami\u0119ci instrukcji ORA-17124=Podano niepoprawny limit czasu nieaktywno\u015Bci pami\u0119ci podr\u0119cznej po\u0142\u0105cze\u0144 ORA-17125=Niepoprawny typ instrukcji zwr\u00F3cony przez jawn\u0105 pami\u0119\u0107 podr\u0119czn\u0105 ORA-17126=Up\u0142yn\u0105\u0142 ustalony limit czasu oczekiwania ORA-17127=Podano niepoprawny limit czasu ustalonego oczekiwania ORA-17128=Ci\u0105g znakowy SQL nie jest zapytaniem ORA-17129=Ci\u0105g znakowy SQL nie jest instrukcj\u0105 DML ORA-17132=Za\u017C\u0105dano niepoprawnej konwersji ORA-17133=UNUSED ORA-17134=D\u0142ugo\u015B\u0107 nazwanego parametru w SQL przekroczy\u0142a 32 znaki ORA-17135=Nazwa parametru, u\u017Cyta w setXXXStream, wyst\u0119puje w SQL wi\u0119cej ni\u017C jeden raz ORA-17136=Zniekszta\u0142cony DATALINK URL, prosz\u0119 w zamian spr\u00F3bowa\u0107 u\u017Cy\u0107 getString() ORA-17137=Buforowanie pod\u0142\u0105cze\u0144 nie jest w\u0142\u0105czone lub nie jest poprawne \u017Ar\u00F3d\u0142o danych wsp\u00F3\u0142pracuj\u0105ce z pami\u0119ci\u0105 podr\u0119czn\u0105 ORA-17138=Niepoprawna nazwa pami\u0119ci podr\u0119cznej po\u0142\u0105cze\u0144. Musi by\u0107 poprawnym typem String i unikatow\u0105 ORA-17139=Niepoprawne w\u0142a\u015Bciwo\u015Bci pami\u0119ci podr\u0119cznej po\u0142\u0105cze\u0144 ORA-17140=Pami\u0119\u0107 podr\u0119czna po\u0142\u0105cze\u0144, maj\u0105ca t\u0119 nazw\u0119, ju\u017C istnieje ORA-17141=Pami\u0119\u0107 podr\u0119czna po\u0142\u0105cze\u0144, maj\u0105ca t\u0119 nazw\u0119, nie istnieje ORA-17142=Pami\u0119\u0107 podr\u0119czna po\u0142\u0105cze\u0144, maj\u0105ca t\u0119 nazw\u0119, jest wy\u0142\u0105czona ORA-17143=W pami\u0119ci podr\u0119cznej po\u0142\u0105cze\u0144 wykryto niepoprawne lub przestarza\u0142e po\u0142\u0105czenie ORA-17144=nie by\u0142 wykonany uchwyt instrukcji ORA-17145=Otrzymano niepoprawne zdarzenie ONS ORA-17146=Otrzymano niepoprawn\u0105 wersj\u0119 zdarzenia ONS ORA-17147=Pr\u00F3ba ustawienia nazwy parametru, kt\u00F3ra nie wyst\u0119puje w SQL ORA-17148=Metoda implementowana tylko w formie zubo\u017Conej ORA-17149=To ju\u017C jest sesja proxy ORA-17150=Niepoprawne argumenty dla sesji proxy ORA-17151=CLOB jest zbyt du\u017Cy, aby mo\u017Cna by\u0142o przechowa\u0107 go w danych typu Java String ORA-17152=Ta metoda jest implementowana wy\u0142\u0105cznie w po\u0142\u0105czeniach logicznych ORA-17153=Ta metoda jest implementowana wy\u0142\u0105cznie w po\u0142\u0105czeniach fizycznych ORA-17154=Nie mo\u017Cna odwzorowa\u0107 znaku Oracle na Unicode ORA-17155=Nie mo\u017Cna odwzorowa\u0107 znaku Unicode do Oracle ORA-17156=Niepoprawny rozmiar tablicy dla warto\u015Bci metryk \"koniec-koniec\" ORA-17157=metoda setString mo\u017Ce przetwarza\u0107 tylko napisy o d\u0142ugo\u015Bci mniejszej ni\u017C 32766 znak\u00F3w ORA-17158=niepoprawny czas trwania dla tej funkcji ORA-17159=warto\u015B\u0107 metryki dla \u015Bledzenia \"koniec-koniec\" jest zbyt d\u0142uga ORA-17160=numer sekwencji identyfikatora kontekstu wykonywania jest spoza zakresu ORA-17161=U\u017Cyto niepoprawnego trybu transakcji ORA-17162=Nieobs\u0142ugiwana warto\u015B\u0107 zdolno\u015Bci utrzymywania ORA-17163=Nie mo\u017Cna u\u017Cy\u0107 metody getXAConnection(), gdy jest w\u0142\u0105czone buforowanie po\u0142\u0105czenia ORA-17164=Nie mo\u017Cna wywo\u0142a\u0107 metody getXAResource() z fizycznego po\u0142\u0105czenia o w\u0142\u0105czonym buforowaniu ORA-17165=Pakiet DBMS_JDBC nie zosta\u0142 wst\u0119pnie ustawiony na serwerze dla tego po\u0142\u0105czenia ORA-17166=Nie mo\u017Cna pobra\u0107 dla instrukcji PLSQL ORA-17167=Nie znaleziono klas PKI. Aby mo\u017Cna by\u0142o skorzysta\u0107 z funkcji \"connect /\" w \u015Bcie\u017Cce classpath musi by\u0107 dost\u0119pne archiwum oraclepki.jar. ORA-17168=wyst\u0105pi\u0142 problem z tajnym magazynem. Prosz\u0119 sprawdzi\u0107, czy w miejscu, w kt\u00F3rym znajduje si\u0119 portfel, wyst\u0119puje otwarty portfel (cwallet.sso), a nast\u0119pnie upewni\u0107 si\u0119 za pomoc\u0105 narz\u0119dzia mkstore, \u017Ce portfel ten zawiera poprawne uwierzytelnienia ORA-17169=Nie mo\u017Cna powi\u0105za\u0107 strumienia z przewijalnym zbiorem wynik\u00F3w (ScrollableResultSet) lub z aktualizowalnym zbiorem wynik\u00F3w (UpdatableResultSet) ORA-17170=Przestrze\u0144 nazw nie mo\u017Ce by\u0107 pusta ORA-17171=D\u0142ugo\u015B\u0107 atrybutu nie mo\u017Ce przekracza\u0107 30 znak\u00F3w ORA-17172=Warto\u015B\u0107 atrybutu nie mo\u017Ce przekracza\u0107 400 znak\u00F3w ORA-17173=Nie wszystkie parametry zwrotne zosta\u0142y zarejestrowane ORA-17174=Jedyn\u0105 obs\u0142ugiwan\u0105 przestrzeni\u0105 nazw jest CLIENTCONTEXT ORA-17175=B\u0142\u0105d podczas zdalnej konfiguracji ONS ORA-17200=Nie mo\u017Cna poprawnie przekonwertowa\u0107 ci\u0105gu otwieraj\u0105cego XA z Javy do C ORA-17201=Nie mo\u017Cna poprawnie przekonwertowa\u0107 ci\u0105gu zamykaj\u0105cego XA z Javy do C ORA-17202=Nie mo\u017Cna poprawnie przekonwertowa\u0107 nazwy RM z Javy do C ORA-17203=Nie uda\u0142o si\u0119 zmieni\u0107 typu wska\u017Anika na jlong ORA-17204=Tablica wej\u015Bciowa zbyt ma\u0142a, aby pomie\u015Bci\u0107 uchwyty OCI ORA-17205=Nie uda\u0142o si\u0119 uzyska\u0107 uchwytu OCISvcCtx z C-XA u\u017Cywaj\u0105c xaoSvcCtx ORA-17206=Nie uda\u0142o si\u0119 uzyska\u0107 uchwytu OCIEnv z C-XA u\u017Cywaj\u0105c xaoEnv ORA-17207=W\u0142a\u015Bciwo\u015B\u0107 tnsEntry nie zosta\u0142a okre\u015Blona w DataSource ORA-17213=C-XA zwr\u00F3ci\u0142o XAER_RMERR podczas xa_open ORA-17215=C-XA zwr\u00F3ci\u0142o XAER_INVAL podczas xa_open ORA-17216=C-XA zwr\u00F3ci\u0142o XAER_PROTO podczas xa_open ORA-17233=C-XA zwr\u00F3ci\u0142o XAER_RMERR podczas xa_close ORA-17235=C-XA zwr\u00F3ci\u0142o XAER_INVAL podczas xa_close ORA-17236=C-XA zwr\u00F3ci\u0142o XAER_PROTO podczas xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Naruszenie protoko\u0142u ORA-17402=Jest oczekiwany tylko jeden komunikat RPA ORA-17403=Jest oczekiwany tylko jeden komunikat RXH ORA-17404=Otrzymano wi\u0119cej komunikat\u00F3w RXD ni\u017C oczekiwano ORA-17405=D\u0142ugo\u015B\u0107 UAC nie jest r\u00F3wna zero ORA-17406=Przekroczono maksymalny rozmiar bufora ORA-17407=niepoprawna reprezentacja typu (setRep) ORA-17408=niepoprawna reprezentacja typu (getRep) ORA-17409=niepoprawny rozmiar bufora ORA-17410=Nie ma wi\u0119cej danych do odczytu z gniazda ORA-17411=Niezgodno\u015B\u0107 reprezentacji typ\u00F3w danych ORA-17412=D\u0142ugo\u015B\u0107 typu wi\u0119ksza ni\u017C maksymalna ORA-17413=Przekroczono rozmiar klucza ORA-17414=Za ma\u0142y rozmiar bufora, aby przechowa\u0107 nazwy kolumn ORA-17415=Ten typ nie zosta\u0142 obs\u0142u\u017Cony ORA-17416=FATAL ORA-17417=Problem NLS - nie uda\u0142o si\u0119 zdekodowa\u0107 nazw kolumn ORA-17418=B\u0142\u0105d d\u0142ugo\u015Bci pola wewn\u0119trznej struktury ORA-17419=Zosta\u0142a zwr\u00F3cona niepoprawna liczba kolumn ORA-17420=Niezdefiniowana wersja Oracle ORA-17421=Niezdefiniowane typy lub niezdefiniowane po\u0142\u0105czenie ORA-17422=Niepoprawna klasa w fabryce ORA-17423=U\u017Cycie bloku PLSQL bez zdefiniowanej IOV ORA-17424=Pr\u00F3ba innej operacji zbierania ORA-17425=Zwracany strumie\u0144 w bloku PLSQL ORA-17426=Oba wi\u0119zy IN i OUT s\u0105 NULL ORA-17427=U\u017Cycie niezainicjalizowanego OAC ORA-17428=Po po\u0142\u0105czeniu trzeba wywo\u0142a\u0107 logowanie (logon) ORA-17429=Przynajmniej musi by\u0107 nawi\u0105zane po\u0142\u0105czenie z serwerem ORA-17430=Trzeba by\u0107 zalogowanym do serwera ORA-17431=Instrukcja SQL przeznaczona do analizy sk\u0142adniowej jest NULL ORA-17432=niepoprawne opcje w all7 ORA-17433=niepoprawne argumenty w wywo\u0142aniu ORA-17434=nie w trybie strumieniowania ORA-17435=niepoprawna liczba in_out_binds w IOV ORA-17436=niepoprawna liczba wi\u0119z\u00F3w out ORA-17437=B\u0142\u0105d w argumencie (argumentach) IN/OUT bloku PLSQL ORA-17438=Wewn\u0119trzny - nieoczekiwana warto\u015B\u0107 ORA-17439=Niepoprawny typ SQL ORA-17440=Element bazy danych/Typ bazy danych jest NULL ORA-17441=Nieobs\u0142ugiwana wersja Oracle. Najni\u017Csza obs\u0142ugiwana wersja to 7.2.3. ORA-17442=Niepoprawna warto\u015B\u0107 kursora odwo\u0142ania ORA-17443=W programie obs\u0142ugi THIN nie jest dozwolony ani u\u017Cytkownik NULL, ani has\u0142o NULL ORA-17444=Uzyskana z serwera wersja protoko\u0142u TTC nie jest obs\u0142ugiwana ORA-17445=LOB jest ju\u017C otwarty w tej samej transakcji ORA-17446=LOB jest ju\u017C zamkni\u0119ty w tej samej transakcji ORA-17447=Stan OALL8 jest niesp\u00F3jny # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_pt_BR.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Erro Interno ORA-17002=Exce\u00E7\u00E3o de E/S ORA-17003=\u00CDndice de coluna inv\u00E1lido ORA-17004=Tipo de coluna inv\u00E1lido ORA-17005=Tipo de coluna n\u00E3o suportado ORA-17006=Nome de coluna inv\u00E1lido ORA-17007=Coluna din\u00E2mica inv\u00E1lida ORA-17008=Conex\u00E3o Fechada ORA-17009=Instru\u00E7\u00E3o Fechada ORA-17010=Conjunto de Resultados Fechado ORA-17011=Conjunto de Resultados Esgotado ORA-17012=Conflito de Tipo de Par\u00E2metro ORA-17014=ResultSet.next n\u00E3o foi chamado ORA-17015=Instru\u00E7\u00E3o cancelada ORA-17016=Instru\u00E7\u00E3o sofreu timeout ORA-17017=Cursor j\u00E1 foi inicializado ORA-17018=Cursor inv\u00E1lido ORA-17019=S\u00F3 pode descrever uma consulta ORA-17020=Pr\u00E9-extra\u00E7\u00E3o de linha inv\u00E1lida ORA-17021=Defini\u00E7\u00F5es ausentes ORA-17022=Defini\u00E7\u00F5es ausentes no \u00EDndice ORA-17023=Recurso n\u00E3o suportado ORA-17024=Sem leitura de dados ORA-17025=Erro em defines.isNull () ORA-17026=Overflow Num\u00E9rico ORA-17027=Stream j\u00E1 foi fechado ORA-17028=N\u00E3o \u00E9 poss\u00EDvel criar novas defini\u00E7\u00F5es at\u00E9 que o Conjunto de Resultados seja fechado ORA-17029=setReadOnly: Conex\u00F5es somente para leitura n\u00E3o s\u00E3o suportadas ORA-17030=READ_COMMITTED e SERIALIZABLE s\u00E3o os \u00FAnicos n\u00EDveis de transa\u00E7\u00E3o v\u00E1lidos ORA-17031=setAutoClose: Suporta apenas o modo de fechamento autom\u00E1tico ativo ORA-17032=n\u00E3o \u00E9 poss\u00EDvel definir pr\u00E9-extra\u00E7\u00E3o de linha como zero ORA-17033=String SQL92 incorreta na posi\u00E7\u00E3o ORA-17034=Token SQL92 n\u00E3o suportado na posi\u00E7\u00E3o ORA-17035=Conjunto de Caracteres N\u00E3o Suportado! ORA-17036=exce\u00E7\u00E3o em OracleNumber ORA-17037=Falha ao fazer convers\u00E3o entre UTF8 e UCS2 ORA-17038=Array de byte n\u00E3o \u00E9 suficientemente longo ORA-17039=Array de caractere n\u00E3o \u00E9 suficientemente longo ORA-17040=Subprotocolo deve ser especificado no URL de conex\u00E3o ORA-17041=Par\u00E2metro IN ou OUT ausente do \u00EDndice: ORA-17042=Valor de Lote Inv\u00E1lido ORA-17043=Tamanho m\u00E1ximo de stream inv\u00E1lido ORA-17044=Erro interno: Array de dados n\u00E3o alocado ORA-17045=Erro interno: Tentativa de acessar valores de liga\u00E7\u00E3o ultrapassa o valor do lote ORA-17046=Erro interno: \u00CDndice inv\u00E1lido para acesso a dados ORA-17047=Erro na an\u00E1lise do Descritor de Tipo ORA-17048=Tipo indefinido ORA-17049=Tipos de objeto java e sql inconsistentes ORA-17050=n\u00E3o existe esse elemento no vetor ORA-17051=Esta API n\u00E3o pode ser usada para tipos n\u00E3o-UDT ORA-17052=Esta refer\u00EAncia n\u00E3o \u00E9 v\u00E1lida ORA-17053=Este tamanho n\u00E3o \u00E9 v\u00E1lido ORA-17054=Este localizador de LOB n\u00E3o \u00E9 v\u00E1lido ORA-17055=Caractere inv\u00E1lido encontrado em ORA-17056=Conjunto de caracteres n\u00E3o suportado (adicione orai18n.jar no seu classpath) ORA-17057=LOB fechado ORA-17058=Erro interno: Raz\u00E3o de Convers\u00E3o NLS inv\u00E1lida ORA-17059=Falha ao converter para representa\u00E7\u00E3o interna ORA-17060=Falha ao construir descritor ORA-17061=Descritor ausente ORA-17062=Cursor de refer\u00EAncia \u00E9 inv\u00E1lido ORA-17063=N\u00E3o \u00E9 uma transa\u00E7\u00E3o ORA-17064=Sintaxe Inv\u00E1lida ou nome de Banco de Dados \u00E9 nulo ORA-17065=Classe de convers\u00E3o \u00E9 nula ORA-17066=\u00C9 necess\u00E1ria uma implementa\u00E7\u00E3o espec\u00EDfica para a camada de acesso ORA-17067=URL Oracle Inv\u00E1lido especificado ORA-17068=Argumento(s) inv\u00E1lido(s) na chamada ORA-17069=Use chamada XA expl\u00EDcita ORA-17070=Tamanho dos dados maior que o tamanho m\u00E1ximo para este tipo ORA-17071=Limite m\u00E1ximo de VARRAY excedido ORA-17072=Valor inserido grande demais para a coluna ORA-17074=padr\u00E3o de nome inv\u00E1lido ORA-17075=Opera\u00E7\u00E3o inv\u00E1lida para encaminhar apenas conjunto de resultados ORA-17076=Opera\u00E7\u00E3o inv\u00E1lida para ler apenas conjunto de resultados ORA-17077=Falha ao definir o valor REF ORA-17078=N\u00E3o foi poss\u00EDvel realizar a opera\u00E7\u00E3o uma vez que as conex\u00F5es j\u00E1 est\u00E3o abertas ORA-17079=As credenciais de usu\u00E1rio n\u00E3o correspondem \u00E0s existentes ORA-17080=comando de lote inv\u00E1lido ORA-17081=ocorreu um erro durante a forma\u00E7\u00E3o do lote ORA-17082=Nenhuma linha atual ORA-17083=Fora da linha de inser\u00E7\u00E3o ORA-17084=Chamada na linha de inser\u00E7\u00E3o ORA-17085=Conflitos de valores ORA-17086=Valor de coluna indefinido na linha de inser\u00E7\u00E3o ORA-17087=Dica de desempenho ignorada: setFetchDirection() ORA-17088=Sintaxe n\u00E3o suportada para o tipo de conjunto de resultados e o n\u00EDvel de concorr\u00EAncia solicitados ORA-17089=erro interno ORA-17090=opera\u00E7\u00E3o n\u00E3o permitida ORA-17091=N\u00E3o foi poss\u00EDvel criar conjunto de resultados no tipo e/ou n\u00EDvel de concorr\u00EAncia solicitados ORA-17092=Instru\u00E7\u00F5es JDBC n\u00E3o podem ser criadas ou executadas no final do processamento da chamada ORA-17093=Opera\u00E7\u00E3o OCI retornou OCI_SUCCESS_WITH_INFO ORA-17094=Vers\u00E3o do tipo de objeto inv\u00E1lida ORA-17095=O tamanho do cache de instru\u00E7\u00F5es n\u00E3o foi definido ORA-17096=O Cache de Instru\u00E7\u00F5es n\u00E3o est\u00E1 ativado para esta conex\u00E3o l\u00F3gica. ORA-17097=Tipo de elemento de Tabela de \u00CDndice PL/SQL inv\u00E1lido ORA-17098=Opera\u00E7\u00E3o de lob vazio inv\u00E1lida ORA-17099=Tamanho de array de Tabela de \u00CDndice de PL/SQL inv\u00E1lido ORA-17100=Objeto Java de banco de dados inv\u00E1lido ORA-17101=Propriedades inv\u00E1lidas no Objeto Pool de Conex\u00F5es OCI ORA-17102=Bfile \u00E9 somente para leitura ORA-17103=Tipo de conex\u00E3o inv\u00E1lido a ser retornado via getConnection. Use, em vez disso, getJavaSqlConnection ORA-17104=A instru\u00E7\u00E3o SQL a ser executada n\u00E3o pode ser vazia ou nula ORA-17105=o fuso hor\u00E1rio da sess\u00E3o de conex\u00E3o n\u00E3o foi definido ORA-17106=configura\u00E7\u00E3o inv\u00E1lida especificada para o pool de conex\u00E3o do driver OCI JDBC ORA-17107=tipo de proxy inv\u00E1lido especificado ORA-17108=Tamanho m\u00E1ximo n\u00E3o especificado em defineColumnType ORA-17109=codifica\u00E7\u00E3o de caractere Java padr\u00E3o n\u00E3o encontrada ORA-17110=execu\u00E7\u00E3o conclu\u00EDda com advert\u00EAncia ORA-17111=Timeout TTL inv\u00E1lido especificado para o cache de conex\u00E3o ORA-17112=Intervalo inv\u00E1lido especificado para o thread ORA-17113=O valor do intervalo de thread \u00E9 maior que o valor de timeout do cache ORA-17114=n\u00E3o foi poss\u00EDvel usar o commit de transa\u00E7\u00E3o local em uma transa\u00E7\u00E3o global ORA-17115=n\u00E3o foi poss\u00EDvel usar o rollback de transa\u00E7\u00E3o local em uma transa\u00E7\u00E3o global ORA-17116=n\u00E3o foi poss\u00EDvel ativar o commit autom\u00E1tico em uma transa\u00E7\u00E3o global ativa ORA-17117=n\u00E3o foi poss\u00EDvel definir o ponto de salvamento em uma transa\u00E7\u00E3o global ativa ORA-17118=n\u00E3o foi poss\u00EDvel obter o ID de um Ponto de Salvamento nomeado ORA-17119=n\u00E3o foi poss\u00EDvel obter o nome de um Ponto de Salvamento n\u00E3o-nomeado ORA-17120=n\u00E3o foi poss\u00EDvel definir um Ponto de Salvamento com o commit autom\u00E1tico ativado ORA-17121=n\u00E3o foi poss\u00EDvel executar rollback para um Ponto de Salvamento com o commit autom\u00E1tico ativado ORA-17122=n\u00E3o foi poss\u00EDvel executar rollback para um Ponto de Salvamento de trans. local em uma transa\u00E7\u00E3o global ORA-17123=O tamanho do cache de instru\u00E7\u00F5es especificado \u00E9 inv\u00E1lido ORA-17124=O timeout de Inatividade especificado para o cache de conex\u00E3o \u00E9 inv\u00E1lido ORA-17125=Tipo de instru\u00E7\u00E3o impr\u00F3pria retornada pelo cache expl\u00EDcito ORA-17126=Timeout de Espera Fixa esgotado ORA-17127=Timeout de Espera Fixa inv\u00E1lido especificado ORA-17128=String SQL n\u00E3o \u00E9 uma Consulta ORA-17129=String SQL n\u00E3o \u00E9 uma Instru\u00E7\u00E3o DML ORA-17132=Convers\u00E3o inv\u00E1lida solicitada ORA-17133=UNUSED ORA-17134=Tamanho do par\u00E2metro nomeado no c\u00F3digo SQL excedeu 32 caracteres ORA-17135=Nome do par\u00E2metro usado em setXXXStream aparece mais de uma vez no c\u00F3digo SQL ORA-17136=URL de DATALINK incorreto; tente getString() ORA-17137=Cache de Conex\u00E3o N\u00E3o Ativado ou N\u00E3o \u00E9 uma Origem de Dados V\u00E1lida Ativada para Cache ORA-17138=Nome do Cache de Conex\u00E3o Inv\u00E1lido. Deve ser uma String V\u00E1lida e Exclusiva ORA-17139=Propriedades do Cache de Conex\u00E3o s\u00E3o Inv\u00E1lidas ORA-17140=J\u00E1 existe um Cache de Conex\u00E3o com este Nome ORA-17141=J\u00E1 existe um Nome de Cache com este Nome de Cache ORA-17142=Cache de Conex\u00E3o com este Nome de Cache est\u00E1 Desativado ORA-17143=Conex\u00E3o Desatualizada ou Inv\u00E1lida no Cache de Conex\u00E3o ORA-17144=handle de instru\u00E7\u00E3o n\u00E3o foi executado ORA-17145=Evento ONS inv\u00E1lido recebido ORA-17146=Vers\u00E3o de Evento ONS inv\u00E1lida recebida ORA-17147=Tentativa de definir um nome de par\u00E2metro que n\u00E3o ocorre no c\u00F3digo SQL ORA-17148=M\u00E9todo implementado apenas em thin ORA-17149=Essa j\u00E1 \u00E9 uma sess\u00E3o de proxy ORA-17150=Argumentos incorretos para sess\u00E3o de proxy ORA-17151=Clob \u00E9 grande demais para ser armazenado em uma String Java ORA-17152=Este m\u00E9todo s\u00F3 \u00E9 implementado em conex\u00F5es l\u00F3gicas ORA-17153=Este m\u00E9todo s\u00F3 \u00E9 implementado em conex\u00F5es f\u00EDsicas ORA-17154=N\u00E3o \u00E9 poss\u00EDvel mapear caractere Oracle para Unicode ORA-17155=N\u00E3o \u00E9 poss\u00EDvel mapear Unicode para caractere Oracle ORA-17156=Tamanho de array inv\u00E1lido para valores m\u00E9tricos Ponta a Ponta ORA-17157=setString s\u00F3 pode processar strings com menos de 32766 caracteres ORA-17158=dura\u00E7\u00E3o \u00E9 inv\u00E1lida para esta fun\u00E7\u00E3o ORA-17159=valor m\u00E9trico para rastreamento ponta a ponta \u00E9 muito longo ORA-17160=n\u00FAmero de seq\u00FC\u00EAncia do id de contexto est\u00E1 fora da faixa v\u00E1lida ORA-17161=Modo de transa\u00E7\u00E3o usado inv\u00E1lido. ORA-17162=Valor da capacidade de armazenamento n\u00E3o suportado. ORA-17163=N\u00E3o \u00E9 poss\u00EDvel usar getXAConnection() quando o cache de conex\u00E3o est\u00E1 ativado ORA-17164=N\u00E3o \u00E9 poss\u00EDvel chamar getXAResource() da conex\u00E3o f\u00EDsica com o cache ativado ORA-17165=Pacote DBMS_JDBC n\u00E3o predefinido no servidor para esta conex\u00E3o ORA-17166=N\u00E3o \u00E9 poss\u00EDvel executar extra\u00E7\u00E3o em uma instru\u00E7\u00E3o PLSQL ORA-17167=As classes PKI n\u00E3o foram encontradas. Para usar a funcionalidade 'connect /', \u00E9 necess\u00E1rio que oraclepki.jar esteja no caminho da classe ORA-17168=problema encontrado no Armazenamento Secreto. Verifique se h\u00E1 um wallet aberto (cwallet.sso) na localiza\u00E7\u00E3o do wallet e se esse wallet cont\u00E9m as credenciais corretas usando o utilit\u00E1rio mkstore. ORA-17169=N\u00E3o \u00E9 poss\u00EDvel efetuar bind de fluxo para um ScrollableResultSet ou UpdatableResultSet ORA-17170=O Namespace n\u00E3o pode ficar vazio ORA-17171=O tamanho do atributo n\u00E3o pode exceder 30 caracteres ORA-17172=O valor do atributo n\u00E3o pode exceder 400 caracteres ORA-17173=Nem todos os par\u00E2metros de retorno est\u00E3o registrados ORA-17174=O \u00FAnico namespace suportado \u00E9 CLIENTCONTEXT ORA-17175=Erro durante configura\u00E7\u00E3o de ONS remoto ORA-17200=N\u00E3o foi poss\u00EDvel converter adequadamente a string de abertura XA de Java para C ORA-17201=N\u00E3o foi poss\u00EDvel converter adequadamente a string de fechamento XA de Java para C ORA-17202=N\u00E3o foi poss\u00EDvel converter adequadamente o nome RM de Java para C ORA-17203=N\u00E3o foi poss\u00EDvel transmitir o tipo de ponteiro para jlong ORA-17204=Array de entrada muito pequeno para conter handles OCI ORA-17205=Falha ao obter handle OCISvcCtx de C-XA usando xaoSvcCtx ORA-17206=Falha ao obter handle OCIEnv de C-XA usando xaoEnv ORA-17207=A propriedade tnsEntry n\u00E3o foi definida na Origem de Dados ORA-17213=C-XA retornou XAER_RMERR durante xa_open ORA-17215=C-XA retornou XAER_INVAL durante xa_open ORA-17216=C-XA retornou XAER_PROTO durante xa_open ORA-17233=C-XA retornou XAER_RMERR durante xa_close ORA-17235=C-XA retornou XAER_INVAL durante xa_close ORA-17236=C-XA retornou XAER_PROTO durante xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Viola\u00E7\u00E3o de protocolo ORA-17402=\u00C9 esperada apenas uma mensagem RPA ORA-17403=\u00C9 esperada apenas uma mensagem RXH ORA-17404=Recebidos mais RXDs do que o esperado ORA-17405=Tamanho UAC n\u00E3o \u00E9 zero ORA-17406=Excedendo tamanho m\u00E1ximo do buffer ORA-17407=Representa\u00E7\u00E3o (setRep) de tipo inv\u00E1lida ORA-17408=Representa\u00E7\u00E3o (setRep) de tipo inv\u00E1lida ORA-17409=tamanho do buffer inv\u00E1lido ORA-17410=N\u00E3o ser\u00E3o lidos mais dados do soquete ORA-17411=Incompatibilidade de representa\u00E7\u00F5es de Tipo de Dados ORA-17412=Tamanho de tipo maior que o M\u00E1ximo ORA-17413=Tamanho de chave excede ORA-17414=Tamanho de Buffer Insuficiente para armazenar Nomes de Colunas ORA-17415=Este tipo n\u00E3o foi manipulado ORA-17416=FATAL ORA-17417=Problema de NLS; falha ao decodificar nomes de colunas ORA-17418=Erro de tamanho do campo de estrutura interna ORA-17419=N\u00FAmero inv\u00E1lido de colunas retornado ORA-17420=Vers\u00E3o do Oracle n\u00E3o foi definida ORA-17421=Tipos ou Conex\u00E3o n\u00E3o foi(ram) definido(s) ORA-17422=Classe inv\u00E1lida no factory ORA-17423=Usando um bloco PLSQL sem um IOV (I/O vector) definido ORA-17424=Tentando outra opera\u00E7\u00E3o de marshaling ORA-17425=Retornando um stream no bloco PLSQL ORA-17426=As liga\u00E7\u00F5es IN e OUT s\u00E3o NULL ORA-17427=Usando OAC N\u00E3o-Inicializado ORA-17428=Logon deve ser chamado ap\u00F3s conex\u00E3o ORA-17429=Deve estar pelo menos conectado ao servidor ORA-17430=Deve ter estabelecido logon no servidor ORA-17431=Instru\u00E7\u00E3o SQL a ser analisada \u00E9 nula ORA-17432=op\u00E7\u00F5es inv\u00E1lidas em all7 ORA-17433=argumentos inv\u00E1lidos na chamada ORA-17434=n\u00E3o est\u00E1 no modo de stream ORA-17435=n\u00FAmero inv\u00E1lido de in_out_binds no IOV ORA-17436=n\u00FAmero inv\u00E1lido para liga\u00E7\u00F5es externas ORA-17437=Erro no(s) argumento(s) IN/OUT do bloco PLSQL ORA-17438=Interno - Valor inesperado ORA-17439=Tipo SQL inv\u00E1lido ORA-17440=DBItem/DBType \u00E9 nulo ORA-17441=Vers\u00E3o do Oracle n\u00E3o \u00E9 suportada. A vers\u00E3o m\u00EDnima suportada \u00E9 7.2.3. ORA-17442=Valor do cursor de refer\u00EAncia \u00E9 inv\u00E1lido ORA-17443=Usu\u00E1rio nulo ou senha n\u00E3o suportada no driver THIN ORA-17444=Vers\u00E3o do Protocolo TTC recebida do servidor n\u00E3o \u00E9 suportada ORA-17445=LOB j\u00E1 aberto na mesma transa\u00E7\u00E3o ORA-17446=LOB j\u00E1 fechado na mesma transa\u00E7\u00E3o ORA-17447=OALL8 tem um estado inconsistente # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_pt.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Erro Interno ORA-17002=Excep\u00E7\u00E3o de E/S ORA-17003=\u00CDndice de coluna inv\u00E1lido ORA-17004=Tipo de coluna inv\u00E1lido ORA-17005=Tipo de coluna n\u00E3o suportado ORA-17006=Nome de coluna inv\u00E1lido ORA-17007=Coluna din\u00E2mica inv\u00E1lida ORA-17008=Liga\u00E7\u00E3o Fechada ORA-17009=Instru\u00E7\u00E3o Fechada ORA-17010=Resultset Fechado ORA-17011=Resultset Esgotado ORA-17012=Conflito do Tipo de Par\u00E2metro ORA-17014=ResultSet.next n\u00E3o foi chamado ORA-17015=A instru\u00E7\u00E3o foi cancelada ORA-17016=O tempo de espera da instru\u00E7\u00E3o esgotou ORA-17017=O cursor j\u00E1 foi inicializado ORA-17018=Cursor inv\u00E1lido ORA-17019=S\u00F3 \u00E9 poss\u00EDvel descrever uma consulta ORA-17020=Pr\u00E9-extrac\u00E7\u00E3o de linhas inv\u00E1lida ORA-17021=Falta defines ORA-17022=Falta defines no \u00EDndice ORA-17023=Funcionalidade n\u00E3o suportada ORA-17024=N\u00E3o foram lidos dados ORA-17025=Erro em defines.isNull () ORA-17026=Excesso de Dados Num\u00E9ricos ORA-17027=O fluxo j\u00E1 foi fechado ORA-17028=N\u00E3o \u00E9 poss\u00EDvel efectuar novos defines enquanto o ResultSet actual n\u00E3o estiver fechado ORA-17029=setReadOnly: Liga\u00E7\u00F5es s\u00F3 de leitura n\u00E3o s\u00E3o suportadas ORA-17030=READ_COMMITTED e SERIALIZABLE s\u00E3o os \u00FAnicos n\u00EDveis de transac\u00E7\u00E3o v\u00E1lidos ORA-17031=setAutoClose: Suportar apenas modo de fecho autom\u00E1tico activado ORA-17032=n\u00E3o \u00E9 poss\u00EDvel definir a pr\u00E9-extrac\u00E7\u00E3o de linhas como zero ORA-17033=Cadeia de caracteres SQL92 incorrecta na posi\u00E7\u00E3o ORA-17034=S\u00EDmbolo SQL92 n\u00E3o suportado na posi\u00E7\u00E3o ORA-17035=Conjunto de Caracteres N\u00E3o Suportado !! ORA-17036=excep\u00E7\u00E3o em OracleNumber ORA-17037=Falha na convers\u00E3o entre UTF8 e UCS2 ORA-17038=A matriz de bytes n\u00E3o \u00E9 suficientemente extensa ORA-17039=A matriz de caracteres n\u00E3o \u00E9 suficientemente extensa ORA-17040=\u00C9 necess\u00E1rio especificar o subprotocolo no URL de liga\u00E7\u00E3o ORA-17041=Faltam par\u00E2metros IN ou OUT no \u00EDndice: ORA-17042=Valor Batch Inv\u00E1lido ORA-17043=Dimens\u00E3o m\u00E1xima do fluxo inv\u00E1lida ORA-17044=Erro interno: Matriz de dados n\u00E3o atribu\u00EDda ORA-17045=Erro interno: Tentativa de acesso a valores de associa\u00E7\u00E3o fora do intervalo do valor batch ORA-17046=Erro interno: \u00CDndice inv\u00E1lido para acesso a dados ORA-17047=Erro na an\u00E1lise do Descritor de Tipos ORA-17048=Tipo N\u00E3o Definido ORA-17049=Tipos de objecto java e sql inconsistentes ORA-17050=n\u00E3o existe esse elemento no vector ORA-17051=N\u00E3o \u00E9 poss\u00EDvel utilizar esta API em tipos n\u00E3o-UDT ORA-17052=Esta refer\u00EAncia n\u00E3o \u00E9 v\u00E1lida ORA-17053=A dimens\u00E3o n\u00E3o \u00E9 v\u00E1lida ORA-17054=O identificador de local do LOB n\u00E3o \u00E9 v\u00E1lido ORA-17055=Foi encontrado um car\u00E1cter inv\u00E1lido em ORA-17056=Conjunto de caracteres n\u00E3o suportado (acrescente orai18n.jar ao classpath) ORA-17057=LOB Fechado ORA-17058=Erro Interno: Ratio de Convers\u00E3o de NLS inv\u00E1lido ORA-17059=Falha na convers\u00E3o para representa\u00E7\u00E3o interna ORA-17060=Falha na cria\u00E7\u00E3o do descritor ORA-17061=Falta descritor ORA-17062=O cursor da refer\u00EAncia \u00E9 inv\u00E1lido ORA-17063=N\u00E3o numa transac\u00E7\u00E3o ORA-17064=Sintaxe Inv\u00E1lida ou o nome da Base de Dados \u00E9 nulo ORA-17065=A classe de convers\u00E3o \u00E9 nula ORA-17066=\u00C9 necess\u00E1ria uma implementa\u00E7\u00E3o espec\u00EDfica por camada de acesso ORA-17067=Foi especificado um URL Oracle inv\u00E1lido ORA-17068=Argumento(s) inv\u00E1lido(s) na chamada ORA-17069=Utilize uma chamada XA espec\u00EDfica ORA-17070=A dimens\u00E3o dos dados \u00E9 superior \u00E0 dimens\u00E3o m\u00E1xima para este tipo ORA-17071=Foi excedido o limite m\u00E1ximo de VARRAY ORA-17072=O valor inserido \u00E9 demasiado extenso para a coluna ORA-17074=padr\u00E3o de nomes inv\u00E1lido ORA-17075=Opera\u00E7\u00E3o inv\u00E1lida para resultset s\u00F3 de encaminhamento ORA-17076=Opera\u00E7\u00E3o inv\u00E1lida para resultset s\u00F3 de leitura ORA-17077=Falha na defini\u00E7\u00E3o do valor REF ORA-17078=N\u00E3o \u00E9 poss\u00EDvel efectuar a opera\u00E7\u00E3o porque as liga\u00E7\u00F5es j\u00E1 est\u00E3o abertas ORA-17079=As credenciais do utilizador n\u00E3o correspondem \u00E0s existentes ORA-17080=comando batch inv\u00E1lido ORA-17081=ocorr\u00EAncia de erro durante a coloca\u00E7\u00E3o em batch ORA-17082=N\u00E3o existe linha actual ORA-17083=N\u00E3o se encontra na linha de inser\u00E7\u00E3o ORA-17084=Chamado na linha de inser\u00E7\u00E3o ORA-17085=Ocorr\u00EAncia de conflitos de valores ORA-17086=Valor de coluna n\u00E3o definido na linha de inser\u00E7\u00E3o ORA-17087=Sugest\u00E3o de desempenho ignorada: setFetchDirection() ORA-17088=A sintaxe do tipo de resultset e do n\u00EDvel de concorr\u00EAncia pedidos n\u00E3o \u00E9 suportada ORA-17089=erro interno ORA-17090=opera\u00E7\u00E3o n\u00E3o permitida ORA-17091=Incapaz de criar o resultset com o tipo e/ou o n\u00EDvel de concorr\u00EAncia pedido ORA-17092=N\u00E3o \u00E9 poss\u00EDvel criar ou executar instru\u00E7\u00F5es de JDBC no final do processamento de chamadas ORA-17093=A opera\u00E7\u00E3o da OCI devolveu OCI_SUCCESS_WITH_INFO ORA-17094=N\u00E3o correspond\u00EAncia da vers\u00E3o do tipo de objecto ORA-17095=A dimens\u00E3o da cache de instru\u00E7\u00F5es n\u00E3o foi definida ORA-17096=N\u00E3o \u00E9 poss\u00EDvel activar a Coloca\u00E7\u00E3o de Instru\u00E7\u00F5es na Cache para esta liga\u00E7\u00E3o l\u00F3gica. ORA-17097=Tipo de elemento da Tabela de \u00CDndice de PL/SQL inv\u00E1lido ORA-17098=Opera\u00E7\u00E3o de lob vazio inv\u00E1lida ORA-17099=Comprimento da matriz da Tabela de \u00CDndice de PL/SQL inv\u00E1lido ORA-17100=Objecto Java da base de dados inv\u00E1lido ORA-17101=Propriedades inv\u00E1lidas de Objecto do Pool de Liga\u00E7\u00F5es da OCI ORA-17102=Bfile \u00E9 s\u00F3 de leitura ORA-17103=tipo de liga\u00E7\u00E3o inv\u00E1lido para devolver atrav\u00E9s de getConnection. Utilize getJavaSqlConnection ORA-17104=n\u00E3o \u00E9 poss\u00EDvel que a instru\u00E7\u00E3o de SQL para execu\u00E7\u00E3o esteja vazia ou seja nula ORA-17105=o fuso hor\u00E1rio da sess\u00E3o de liga\u00E7\u00E3o n\u00E3o foi definido ORA-17106=foi especificada uma configura\u00E7\u00E3o inv\u00E1lida do pool de liga\u00E7\u00F5es do driver JDBC-OCI ORA-17107=foi especificado um tipo de proxy inv\u00E1lido ORA-17108=N\u00E3o foi especificado o comprimento m\u00E1ximo em defineColumnType ORA-17109=a codifica\u00E7\u00E3o de caracteres de Java standard n\u00E3o foi encontrada ORA-17110=a execu\u00E7\u00E3o foi conclu\u00EDda com aviso ORA-17111=Foi especificado um tempo de espera de TTL da cache de liga\u00E7\u00F5es inv\u00E1lido ORA-17112=Foi especificado um intervalo de processo leve inv\u00E1lido ORA-17113=O valor do intervalo do processo leve \u00E9 superior ao valor do tempo de espera da cache ORA-17114=n\u00E3o foi poss\u00EDvel utilizar a confirma\u00E7\u00E3o de transac\u00E7\u00E3o local na transac\u00E7\u00E3o global ORA-17115=n\u00E3o foi poss\u00EDvel utilizar a anula\u00E7\u00E3o de transac\u00E7\u00E3o local na transac\u00E7\u00E3o global ORA-17116=n\u00E3o foi poss\u00EDvel activar a confirma\u00E7\u00E3o autom\u00E1tica na transac\u00E7\u00E3o global activa ORA-17117=n\u00E3o foi poss\u00EDvel definir o savepoint na transac\u00E7\u00E3o global activa ORA-17118=n\u00E3o foi poss\u00EDvel obter a ID do Savepoint nomeado ORA-17119=n\u00E3o foi poss\u00EDvel obter o nome do Savepoint n\u00E3o nomeado ORA-17120=n\u00E3o foi poss\u00EDvel definir o Savepoint com a confirma\u00E7\u00E3o autom\u00E1tica activada ORA-17121=n\u00E3o foi poss\u00EDvel anular o Savepoint com a confirma\u00E7\u00E3o autom\u00E1tica activada ORA-17122=n\u00E3o foi poss\u00EDvel anular o Savepoint da transac\u00E7\u00E3o local na transac\u00E7\u00E3o global ORA-17123=A dimens\u00E3o da cache de instru\u00E7\u00F5es especificada \u00E9 inv\u00E1lida ORA-17124=Foi especificado um tempo de espera de Inactividade da cache de liga\u00E7\u00F5es inv\u00E1lido ORA-17125=Tipo de instru\u00E7\u00E3o incorrecto devolvido pela cache expl\u00EDcita ORA-17126=Tempo de espera fixo decorrido ORA-17127=Foi especificado um tempo de espera fixo inv\u00E1lido ORA-17128=A cadeia de caracteres de SQL n\u00E3o \u00E9 Consulta ORA-17129=A cadeia de caracteres de SQL n\u00E3o \u00E9 uma Instru\u00E7\u00E3o de DML ORA-17132=Foi pedida uma convers\u00E3o inv\u00E1lida ORA-17133=UNUSED ORA-17134=O comprimento do par\u00E2metro nomeado no SQL excede 32 caracteres ORA-17135=O nome do par\u00E2metro utilizado em setXXXStream aparece mais de uma vez no SQL ORA-17136=URL de DATALINK incorrecto; em vez disso, tente getString() ORA-17137=A Coloca\u00E7\u00E3o de Liga\u00E7\u00F5es na Cache N\u00E3o Est\u00E1 Activada ou N\u00E3o \u00C9 uma DataSource Activada para Cache V\u00E1lida ORA-17138=Nome da Cache de Liga\u00E7\u00F5es Inv\u00E1lido. \u00C9 necess\u00E1rio que seja uma Cadeia de Caracteres v\u00E1lida e Exclusiva ORA-17139=Propriedades da Cache de Liga\u00E7\u00F5es Inv\u00E1lidas ORA-17140=J\u00E1 existe uma Cache de Liga\u00E7\u00F5es com este Nome da Cache ORA-17141=A Cache de Liga\u00E7\u00F5es com este Nome da Cache n\u00E3o existe ORA-17142=A Cache de Liga\u00E7\u00F5es com este Nome da Cache est\u00E1 Desactivada ORA-17143=Foi encontrada uma Liga\u00E7\u00E3o Inv\u00E1lida ou Desnecess\u00E1ria na Cache de Liga\u00E7\u00F5es ORA-17144=o par\u00E2metro identificador da instru\u00E7\u00E3o n\u00E3o foi executado ORA-17145=Foi recebido um Evento de ONS inv\u00E1lido ORA-17146=Foi recebida uma Vers\u00E3o do Evento de ONS inv\u00E1lida ORA-17147=Tentativa de defini\u00E7\u00E3o de um nome de par\u00E2metro que n\u00E3o ocorre no SQL ORA-17148=M\u00E9todo implementado s\u00F3 no driver THIN ORA-17149=J\u00E1 \u00E9 uma sess\u00E3o de proxy ORA-17150=Argumentos incorrectos para a sess\u00E3o de proxy ORA-17151=CLOB demasiado grande para ser armazenado na Cadeia de Caracteres de Java ORA-17152=Este m\u00E9todo s\u00F3 \u00E9 implementado em liga\u00E7\u00F5es l\u00F3gicas ORA-17153=Este m\u00E9todo s\u00F3 \u00E9 implementado em liga\u00E7\u00F5es f\u00EDsicas ORA-17154=N\u00E3o \u00E9 poss\u00EDvel efectuar a correspond\u00EAncia do car\u00E1cter Oracle com o Unicode ORA-17155=N\u00E3o \u00E9 poss\u00EDvel efectuar a correspond\u00EAncia do Unicode com o car\u00E1cter Oracle ORA-17156=A dimens\u00E3o da matriz \u00E9 inv\u00E1lida para os valores da m\u00E9trica Global ORA-17157=s\u00F3 \u00E9 poss\u00EDvel a setString processar cadeias de caracteres inferiores a 32766 caracteres ORA-17158=a dura\u00E7\u00E3o \u00E9 inv\u00E1lida para a fun\u00E7\u00E3o ORA-17159=o valor da m\u00E9trica do diagn\u00F3stico global \u00E9 demasiado extenso ORA-17160=o n\u00FAmero sequencial da ID do contexto de execu\u00E7\u00E3o est\u00E1 fora do intervalo ORA-17161=O modo de transac\u00E7\u00E3o utilizado \u00E9 inv\u00E1lido ORA-17162=O valor de holdability n\u00E3o \u00E9 suportado ORA-17163=N\u00E3o \u00E9 poss\u00EDvel utilizar getXAConnection() quando a coloca\u00E7\u00E3o de liga\u00E7\u00F5es na cache est\u00E1 activada ORA-17164=N\u00E3o \u00E9 poss\u00EDvel chamar getXAResource() a partir da liga\u00E7\u00E3o f\u00EDsica com a coloca\u00E7\u00E3o na cache activada ORA-17165=O pacote DBMS_JDBC n\u00E3o est\u00E1 predefinido no servidor para esta liga\u00E7\u00E3o ORA-17166=N\u00E3o \u00E9 poss\u00EDvel efectuar extrac\u00E7\u00F5es em instru\u00E7\u00F5es de PLSQL ORA-17167=As classes de PKI n\u00E3o foram encontradas. Para utilizar a funcionalidade 'connect /', \u00E9 necess\u00E1rio que oraclepki.jar esteja no classpath ORA-17168=encontrou um problema no Secret Store. Verifique, na localiza\u00E7\u00E3o do wallet, se existe um wallet aberto (cwallet.sso) e assegure-se de que o wallet cont\u00E9m as credenciais correctas atrav\u00E9s da utiliza\u00E7\u00E3o do utilit\u00E1rio mkstore ORA-17169=N\u00E3o \u00E9 poss\u00EDvel associar o fluxo a um ScrollableResultSet ou UpdatableResultSet ORA-17170=N\u00E3o \u00E9 poss\u00EDvel que o Namespace esteja vazio ORA-17171=N\u00E3o \u00E9 poss\u00EDvel que o comprimento do atributo exceda 30 caracteres ORA-17172=N\u00E3o \u00E9 poss\u00EDvel que o valor do atributo exceda 400 caracteres ORA-17173=N\u00E3o foram registados todos os par\u00E2metros RETURN ORA-17174=O \u00FAnico namespace suportado \u00E9 CLIENTCONTEXT ORA-17175=Erro durante a configura\u00E7\u00E3o do ONS remoto ORA-17200=Incapaz de converter correctamente a cadeia de caracteres de abertura XA de Java para C ORA-17201=Incapaz de converter correctamente a cadeia de caracteres de fecho XA de Java para C ORA-17202=Incapaz de converter correctamente o nome de RM de Java para C ORA-17203=N\u00E3o foi poss\u00EDvel converter o tipo de apontador para jlong ORA-17204=A matriz de entrada de dados \u00E9 demasiado curta para conter par\u00E2metros identificadores da OCI ORA-17205=Falha na obten\u00E7\u00E3o do par\u00E2metro identificador OCISvcCtx a partir de C-XA atrav\u00E9s da utiliza\u00E7\u00E3o de xaoSvcCtx ORA-17206=Falha na obten\u00E7\u00E3o do par\u00E2metro identificador OCIEnv a partir de C-XA atrav\u00E9s da utiliza\u00E7\u00E3o de xaoEnv ORA-17207=A propriedade tnsEntry n\u00E3o foi definida em DataSource ORA-17213=C-XA devolveu XAER_RMERR durante xa_open ORA-17215=C-XA devolveu XAER_INVAL durante xa_open ORA-17216=C-XA devolveu XAER_PROTO durante xa_open ORA-17233=C-XA devolveu XAER_RMERR durante xa_close ORA-17235=C-XA devolveu XAER_INVAL durante xa_close ORA-17236=C-XA devolveu XAER_PROTO durante xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Viola\u00E7\u00E3o de protocolo ORA-17402=Apenas uma mensagem RPA esperada ORA-17403=Apenas uma mensagem RXH esperada ORA-17404=Foram recebidas mais mensagens RXD do que o esperado ORA-17405=O comprimento de UAC n\u00E3o \u00E9 zero ORA-17406=Foi excedido o comprimento m\u00E1ximo do buffer ORA-17407=Representa\u00E7\u00E3o de Tipo (setRep) inv\u00E1lida ORA-17408=Representa\u00E7\u00E3o de Tipo (getRep) inv\u00E1lida ORA-17409=comprimento do buffer inv\u00E1lido ORA-17410=N\u00E3o existem mais dados para leitura a partir do socket ORA-17411=N\u00E3o correspond\u00EAncia entre as representa\u00E7\u00F5es do Tipo de Dados ORA-17412=Comprimento do tipo superior ao M\u00E1ximo ORA-17413=Foi excedida a dimens\u00E3o da chave ORA-17414=A dimens\u00E3o do Buffer \u00E9 insuficiente para armazenar Nomes de Colunas ORA-17415=Este tipo n\u00E3o foi tratado ORA-17416=FATAL ORA-17417=Problema de NLS, falha na descodifica\u00E7\u00E3o dos nomes das colunas ORA-17418=Erro de comprimento de campo na estrutura interna ORA-17419=Foi devolvido um n\u00FAmero de colunas inv\u00E1lido ORA-17420=Vers\u00E3o Oracle n\u00E3o definida ORA-17421=Tipos ou Liga\u00E7\u00E3o n\u00E3o definida ORA-17422=Classe inv\u00E1lida na factory ORA-17423=A utilizar um bloco de PLSQL sem um IOV definido ORA-17424=A tentar uma opera\u00E7\u00E3o do tipo marshaling diferente ORA-17425=Devolu\u00E7\u00E3o de um fluxo no bloco de PLSQL ORA-17426=As associa\u00E7\u00F5es IN e OUT s\u00E3o NULL ORA-17427=A utiliza\u00E7\u00E3o OAC N\u00E3o Inicializado ORA-17428=A entrada em sess\u00E3o tem de ser chamada depois de efectuada a liga\u00E7\u00E3o ORA-17429=\u00C9 necess\u00E1rio estar, pelo menos, ligado ao servidor ORA-17430=\u00C9 necess\u00E1rio ter entrado em sess\u00E3o no servidor ORA-17431=A Instru\u00E7\u00E3o de SQL para an\u00E1lise \u00E9 nula ORA-17432=op\u00E7\u00F5es inv\u00E1lidas em all7 ORA-17433=argumentos inv\u00E1lidos na chamada ORA-17434=n\u00E3o est\u00E1 em modo de fluxo ORA-17435=n\u00FAmero inv\u00E1lido de in_out_binds em IOV ORA-17436=n\u00FAmero inv\u00E1lido de associa\u00E7\u00F5es de sa\u00EDda ORA-17437=Erro em argumentos IN/OUT do bloco de PLSQL ORA-17438=Interno - Valor inesperado ORA-17439=Tipo de SQL inv\u00E1lido ORA-17440=DBItem/DBType \u00E9 nulo ORA-17441=Vers\u00E3o Oracle n\u00E3o suportada.A vers\u00E3o m\u00EDnima suportada \u00E9 a 7.2.3. ORA-17442=Valor de refcursor inv\u00E1lido ORA-17443=Utilizador ou senha nula n\u00E3o suportados no driver THIN ORA-17444=A vers\u00E3o do Protocolo TTC recebida do servidor n\u00E3o \u00E9 suportada ORA-17445=O LOB j\u00E1 foi aberto na mesma transac\u00E7\u00E3o ORA-17446=O LOB j\u00E1 foi fechado na mesma transac\u00E7\u00E3o ORA-17447=OALL8 est\u00E1 num estado inconsistente # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_ro.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Eroare intern\u0103 ORA-17002=Excep\u0163ie I/O ORA-17003=Index coloan\u0103 nevalid ORA-17004=Tip coloan\u0103 nevalid ORA-17005=Tip de coloan\u0103 neacceptat ORA-17006=Nume nevalid de coloan\u0103 ORA-17007=Coloan\u0103 dinamic\u0103 nevalid\u0103 ORA-17008=Conexiunea a fost \u00EEnchis\u0103 ORA-17009=Instruc\u0163iunea a fost \u00EEnchis\u0103 ORA-17010=Setul de rezultate a fost \u00EEnchis ORA-17011=Setul de rezultate este epuizat ORA-17012=Tipuri de parametri \u00EEn conflict ORA-17014=ResultSet.next nu a fost apelat\u0103 ORA-17015=Instruc\u0163iunea a fost anulat\u0103 ORA-17016=Instruc\u0163iunea a expirat ORA-17017=Cursorul a fost deja ini\u0163ializat ORA-17018=Cursor nevalid ORA-17019=Se poate face numai descrierea unei interog\u0103ri ORA-17020=Pre-preluare a unui r\u00E2nd nevalid ORA-17021=Lipsesc definiri ORA-17022=Lipsesc definiri la index ORA-17023=Caracteristic\u0103 neacceptat\u0103 ORA-17024=Nu au fost citite date ORA-17025=Eroare \u00EEn defines.isNull () ORA-17026=Dep\u0103\u015Fire numeric\u0103 ORA-17027=Fluxul a fost deja \u00EEnchis ORA-17028=Nu se pot face noi definiri \u00EEnainte ca setul de rezultate curent s\u0103 fie \u00EEnchis ORA-17029=setReadOnly: Conexiunile read-only nu sunt acceptate ORA-17030=READ_COMMITTED \u015Fi SERIALIZABLE sunt singurele niveluri de tranzac\u0163ie valide ORA-17031=setAutoClose: Modul de \u00EEnchidere automat\u0103 este acceptat numai \u00EEn starea activat ORA-17032=pre-preluarea r\u00E2ndului nu poate fi setat\u0103 la zero ORA-17033=\u015Eir SQL92 deformat la pozi\u0163ia ORA-17034=Simbol SQL92 neacceptat la pozi\u0163ia ORA-17035=Setul de caractere nu este acceptat !! ORA-17036=excep\u0163ie \u00EEn OracleNumber ORA-17037=Nu s-a reu\u015Fit conversia \u00EEntre UTF8 \u015Fi UCS2 ORA-17038=Masivul de octe\u0163i nu este suficient de lung ORA-17039=Masivul de caractere nu este suficient de lung ORA-17040=Trebuie specificat un subprotocol \u00EEn URL-ul de conectare ORA-17041=Lipsesc parametrii IN sau OUT la indexul: ORA-17042=Valoare Batch nevalid\u0103 ORA-17043=Dimensiunea maxim\u0103 a fluxului este nevalid\u0103 ORA-17044=Eroare intern\u0103: Masivul de date nu a fost alocat ORA-17045=Eroare intern\u0103: S-a \u00EEncercat accesarea valorilor de leg\u0103tur\u0103 \u00EEnaintea valorii batch ORA-17046=Eroare intern\u0103: Index nevalid pentru accesarea datelor ORA-17047=Eroare la analizarea descriptorului de tip ORA-17048=Tip nedefinit ORA-17049=Tipuri de obiecte java \u015Fi sql inconsistente ORA-17050=nu exist\u0103 un astfel de element \u00EEn vector ORA-17051=Acest API nu poate fi utilizat dec\u00E2t pentru tipuri definite de utilizator ORA-17052=Aceast\u0103 referin\u0163\u0103 nu este valid\u0103 ORA-17053=Dimensiunea nu este valid\u0103 ORA-17054=Identificatorul LOB nu este valid ORA-17055=Caracter nevalid existent \u00EEn ORA-17056=Set de caractere neacceptat (ad\u0103uga\u0163i orai18n.jar \u00EEn classpath) ORA-17057=LOB a fost \u00EEnchis ORA-17058=Eroare intern\u0103: Rat\u0103 de conversie NLS nevalid\u0103 ORA-17059=Nu s-a reu\u015Fit conversia \u00EEn reprezentare intern\u0103 ORA-17060=Nu s-a reu\u015Fit generarea descriptorului ORA-17061=Descriptor absent ORA-17062=Cursorul de tip REF este nevalid ORA-17063=Nu sunte\u0163i \u00EEntr-o tranzac\u0163ie ORA-17064=Sintaxa este nevalid\u0103 sau numele BD este nul ORA-17065=Clasa de conversie este nul\u0103 ORA-17066=Este necesar\u0103 o implementare specific\u0103 nivelului de acces ORA-17067=A fost specificat un URL Oracle nevalid ORA-17068=Argument(e) nevalid(e) \u00EEn apel ORA-17069=Utiliza\u0163i apelul explicit XA ORA-17070=Dimensiunea datelor dep\u0103\u015Fe\u015Fte valoarea maxim\u0103 admis\u0103 pentru acest tip ORA-17071=Limita maxim\u0103 VARRAY a fost dep\u0103\u015Fit\u0103 ORA-17072=Valoarea introdus\u0103 este prea mare pentru coloan\u0103 ORA-17074=model de nume nevalid ORA-17075=Opera\u0163iune nevalid\u0103 pentru setul de rezultate forward-only ORA-17076=Opera\u0163iune nevalid\u0103 pentru setul de rezultate read-only ORA-17077=Setarea valorii REF a e\u015Fuat ORA-17078=Opera\u0163ia nu se poate efectua deoarece conexiunile sunt deja deschise ORA-17079=Acreditivele utilizatorului nu corespund celor existente ORA-17080=Comanda batch este nevalid\u0103 ORA-17081=Eroare la executarea pe loturi ORA-17082=Nu exist\u0103 nici un r\u00E2nd curent ORA-17083=Nu exist\u0103 pe r\u00E2ndul inserat ORA-17084=Apelat pe r\u00E2ndul inserat ORA-17085=Au survenit conflicte de valori ORA-17086=Valoare de coloan\u0103 nedefinit\u0103 pe r\u00E2ndul inserat ORA-17087=Sugestie de performan\u0163\u0103 ignorat\u0103: setFetchDirection() ORA-17088=Sintax\u0103 neacceptat\u0103 pentru tipul setului de rezultate \u015Fi nivelul de concuren\u0163\u0103 solicitate ORA-17089=eroare intern\u0103 ORA-17090=opera\u0163ia nu este permis\u0103 ORA-17091=Nu s-a putut crea setul de rezultate de tipul \u015Fi/sau de nivelul de concuren\u0163\u0103 solicitate ORA-17092=Instruc\u0163iunile JDBC nu pot fi create sau executate la sf\u00E2r\u015Fitul proces\u0103rii apelurilor ORA-17093=Opera\u0163ia OCI a returnat OCI_SUCCESS_WITH_INFO ORA-17094=Versiunile tipului de obiect sunt diferite ORA-17095=Nu a fost stabilit\u0103 dimensiunea pentru cache-ul de instruc\u0163iuni ORA-17096=Stocarea instruc\u0163iunilor \u00EEn cache nu poate fi activat\u0103 pentru aceast\u0103 conexiune logic\u0103. ORA-17097=Tip de element incorect \u00EEn tabelul de indec\u015Fi PL/SQL ORA-17098=Opera\u0163ie incorect\u0103 asupra unei LOB vide ORA-17099=Lungime de tablou incorect\u0103 \u00EEn tabelul de indec\u015Fi PL/SQL ORA-17100=Obiectul Java din BD este nevalid ORA-17101=Obiectul din centralizatorul partajat OCI are propriet\u0103\u0163i nevalide ORA-17102=Bfile este ReadOnly ORA-17103=tip de conexiune nevalid pentru a fi returnat prin getConnection. Utiliza\u0163i \u00EEn schimb getJavaSqlConnection ORA-17104=instruc\u0163iunea SQL de executat nu poate fi necompletat\u0103 sau nul\u0103 ORA-17105=nu a fost stabilit fusul orar al sesiunii de conectare ORA-17106=a fost specificat\u0103 o configura\u0163ie nevalid\u0103 pentru centralizatorul de conexiuni ale driverului JDBC-OCI ORA-17107=a fost specificat un tip nevalid de proxy ORA-17108=Nu s-a specificat lungimea maxim\u0103 \u00EEn defineColumnType ORA-17109=nu a fost g\u0103sit\u0103 codificarea standard pentru caracterele Java ORA-17110=execu\u0163ia s-a finalizat cu avertisment ORA-17111=A fost specificat un timp de expirare TTL nevalid pentru cache-ul de conexiuni ORA-17112=A fost specificat un interval nevalid pentru firul de execu\u0163ie ORA-17113=Valoarea intervalului pentru firul de execu\u0163ie este mai mare dec\u00E2t valoarea timpului de expirare al cache-ului ORA-17114=nu s-a putut utiliza confirmarea tranzac\u0163iei locale \u00EEntr-o tranzac\u0163ie global\u0103 ORA-17115=nu s-a putut utiliza derularea \u00EEnapoi a tranzac\u0163iei locale \u00EEntr-o tranzac\u0163ie global\u0103 ORA-17116=nu s-a putut activa confirmarea automat\u0103 \u00EEntr-o tranzac\u0163ie global\u0103 activ\u0103 ORA-17117=nu s-a putut stabili punctul de salvare \u00EEntr-o tranzac\u0163ie global\u0103 activ\u0103 ORA-17118=nu s-a putut ob\u0163ine ID-ul pentru un punct de salvare denumit ORA-17119=nu s-a putut ob\u0163ine numele pentru un punct de salvare nedenumit ORA-17120=nu s-a putut stabili un punct de salvare, fiind activat\u0103 confirmarea automat\u0103 ORA-17121=nu s-a putut efectua derularea \u00EEnapoi la un punct de salvare, fiind activat\u0103 confirmarea automat\u0103 ORA-17122=nu s-a putut efectua derularea \u00EEnapoi la un punct de salvare local txn, \u00EEntr-o tranzac\u0163ie global\u0103 ORA-17123=A fost specificat\u0103 o dimensiune nevalid\u0103 pentru cache-ul de instruc\u0163iuni ORA-17124=A fost specificat un timp de expirare nevalid pentru Inactivitate, pentru cache-ul de conexiuni ORA-17125=Tip de instruc\u0163iune impropriu returnat de cache-ul explicit ORA-17126=Durata de a\u015Fteptare fix\u0103 s-a scurs ORA-17127=Durata de a\u015Fteptare fix\u0103 specificat\u0103 nu este valid\u0103 ORA-17128=\u015Eirul SQL nu este o interogare ORA-17129=\u015Eirul SQL nu este o instruc\u0163iune DML ORA-17132=A fost solicitat\u0103 o conversie nevalid\u0103 ORA-17133=UNUSED ORA-17134=Lungimea parametrului denumit \u00EEn SQL a dep\u0103\u015Fit 32 de caractere ORA-17135=Numele parametrului utilizat \u00EEn setXXXStream apare de mai multe ori \u00EEn SQL ORA-17136=URL pentru DATALINK incorect, \u00EEncerca\u0163i s\u0103 utiliza\u0163i getString() ORA-17137=Stocarea conect\u0103rii \u00EEn cache nu este activat\u0103, sau sursa de date cu cache activat nu este valid\u0103 ORA-17138=Numele cache-ului de conectare nu este valid. Trebuie s\u0103 fie un \u015Fir valid \u015Fi unic. ORA-17139=Propriet\u0103\u0163i cache de conectare nevalide ORA-17140=Exist\u0103 deja un cache de conectare cu acest nume ORA-17141=Nu exist\u0103 nici un cache de conectare cu acest nume ORA-17142=Cache-ul de conectare cu acest nume este dezactivat ORA-17143=\u00CEn cache-ul de conectare a fost g\u0103sit\u0103 o conexiune nevalid\u0103 sau perimat\u0103 ORA-17144=specificatorul instruc\u0163iunii nu a fost executat ORA-17145=A fost primit un eveniment ONS nevalid ORA-17146=A fost primit\u0103 o versiune nevalid\u0103 a evenimentului ONS ORA-17147=\u00CEncercare de setare a numelui unui parametru care nu apare \u00EEn SQL ORA-17148=Metod\u0103 implementat\u0103 numai \u00EEn driverul THIN ORA-17149=Aceast\u0103 sesiune este deja proxy ORA-17150=Argumente gre\u015Fite pentru sesiunea proxy ORA-17151=Clob este prea mare pentru a fi stocat \u00EEntr-un \u015Fir Java ORA-17152=Aceast\u0103 metod\u0103 este implementat\u0103 numai \u00EEn conexiunile logice ORA-17153=Aceast\u0103 metod\u0103 este implementat\u0103 numai \u00EEn conexiunile fizice ORA-17154=Caracterul Oracle nu poate fi mapat la Unicode ORA-17155=Unicode nu poate fi mapat la caracterul Oracle ORA-17156=Dimensiunea tabloului este nevalid\u0103 pentru valorile metricilor E2E ORA-17157=setString poate procesa numai \u015Firuri cu mai pu\u0163in de 32766 de caractere ORA-17158=durata este nevalid\u0103 pentru aceast\u0103 func\u0163ie ORA-17159=valoarea metricii pentru urm\u0103rirea E2E este prea mare ORA-17160=num\u0103rul de secven\u0163\u0103 pentru ID-ul contextului de execu\u0163ie este \u00EEn afara intervalului ORA-17161=Mod de tranzac\u0163ie utilizat nevalid ORA-17162=Valoare neacceptat\u0103 pentru holdability ORA-17163=Nu se poate utiliza getXAConnection() atunci c\u00E2nd stocarea conect\u0103rii \u00EEn memoria cache este activat\u0103 ORA-17164=Nu se poate apela getXAResource() printr-o conexiune fizic\u0103 cu stocarea \u00EEn memoria cache activat\u0103 ORA-17165=Pachetul DBMS_JDBC nu este predefinit pe server pentru aceast\u0103 conexiune ORA-17166=Nu se poate efectua preluarea pentru o instruc\u0163iune PLSQL ORA-17167=Clasele PKI nu au fost g\u0103site. Pentru a utiliza func\u0163ionalitatea 'conectare /', oraclepki.jar trebuie s\u0103 se afle \u00EEn classpath ORA-17168=a \u00EEnt\u00E2mpinat o problem\u0103 legat\u0103 de zona Secret Store. Verifica\u0163i \u00EEn loca\u0163ia pentru wallet existen\u0163a unui wallet deschis (cwallet.sso) \u015Fi asigura\u0163i-v\u0103 c\u0103 acesta con\u0163ine acredit\u0103ri corecte utiliz\u00E2nd utilitarul mkstore ORA-17169=Nu se poate face leg\u0103tura pentru flux la un ScrollableResultSet sau UpdatableResultSet ORA-17170=Spa\u0163iul de nume nu poate fi gol ORA-17171=Lungimea atributului nu poate dep\u0103\u015Fi 30 de caractere ORA-17172=Valoarea atributului nu poate dep\u0103\u015Fi 400 de caractere ORA-17173=Nu au fost \u00EEnregistra\u0163i to\u0163i parametrii de returnare ORA-17174=Unicul spa\u0163iu de nume acceptat este CLIENTCONTEXT ORA-17175=Eroare la configurarea ONS la distan\u0163\u0103 ORA-17200=Nu se poate efectua corespunz\u0103tor conversia \u015Firului de deschidere XA din Java \u00EEn C ORA-17201=Nu se poate efectua corespunz\u0103tor conversia \u015Firului de \u00EEnchidere XA din Java \u00EEn C ORA-17202=Nu se poate efectua corespunz\u0103tor conversia numelui RM din Java \u00EEn C ORA-17203=Nu s-a putut face conversia tipului pointer \u00EEn jlong ORA-17204=Tabloul de intrare este prea scurt pentru a re\u0163ine specificatorii OCI ORA-17205=Nu s-a putut ob\u0163ine specificatorul OCISvcCtx din C-XA utiliz\u00E2nd xaoSvcCtx ORA-17206=Nu s-a putut ob\u0163ine specificatorul OCIEnv din C-XA utiliz\u00E2nd xaoEnv ORA-17207=Proprietatea tnsEntry nu a fost setat\u0103 \u00EEn DataSource ORA-17213=C-XA a returnat XAER_RMERR la execu\u0163ia subrutinei xa_open ORA-17215=C-XA a returnat XAER_INVAL la execu\u0163ia subrutinei xa_open ORA-17216=C-XA a returnat XAER_PROTO la execu\u0163ia subrutinei xa_open ORA-17233=C-XA a returnat XAER_RMERR la execu\u0163ia subrutinei xa_close ORA-17235=C-XA a returnat XAER_INVAL la execu\u0163ia subrutinei xa_close ORA-17236=C-XA a returnat XAER_PROTO la execu\u0163ia subrutinei xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Violare de protocol ORA-17402=Este a\u015Fteptat un singur mesaj RPA ORA-17403=Este a\u015Fteptat un singur mesaj RXH ORA-17404=Au fost recep\u0163ionate mai multe RXD-uri dec\u00E2t erau de a\u015Fteptat ORA-17405=Lungimea UAC nu este zero ORA-17406=Lungimea maxim\u0103 a bufferului a fost dep\u0103\u015Fit\u0103 ORA-17407=Reprezentare de tip nevalid\u0103 (setRep) ORA-17408=Reprezentare de tip nevalid\u0103 (getRep) ORA-17409=lungime de buffer nevalid\u0103 ORA-17410=Nu mai exist\u0103 date de citit din socket ORA-17411=Reprezent\u0103rile tipurilor de date sunt diferite ORA-17412=Lungimea tipului dep\u0103\u015Fe\u015Fte valoarea maxim\u0103 ORA-17413=Dimensiunea cheii este dep\u0103\u015Fit\u0103 ORA-17414=Dimensiunea bufferului este insuficient\u0103 pentru a stoca numele coloanelor ORA-17415=Acest tip nu a fost tratat ORA-17416=FATAL ORA-17417=Problem\u0103 NLS; nu s-a reu\u015Fit decodificarea numelor coloanelor ORA-17418=Eroare legat\u0103 de lungimea c\u00E2mpului structurii interne ORA-17419=A fost returnat un num\u0103r de coloane nevalid ORA-17420=Versiunea Oracle nu a fost definit\u0103 ORA-17421=Tipurile sau conexiunea nu au fost definite ORA-17422=Clas\u0103 nevalid\u0103 \u00EEn factory ORA-17423=Blocul PLSQL este utilizat f\u0103r\u0103 s\u0103 fie definit o LV ORA-17424=Se \u00EEncearc\u0103 o alt\u0103 opera\u0163ie de dispunere ORA-17425=Se returneaz\u0103 un flux \u00EEn blocul PLSQL ORA-17426=Ambele leg\u0103turi, IN \u015Fi OUT, au valoarea NULL ORA-17427=Se utilizeaz\u0103 OAC neini\u0163ializat ORA-17428=Logon trebuie apelat\u0103 dup\u0103 conectare ORA-17429=Trebuie s\u0103 fi\u0163i conectat cel pu\u0163in la server ORA-17430=Trebuie s\u0103 fi\u0163i conectat la server ORA-17431=Instruc\u0163iunea SQL de analizat este nul\u0103 ORA-17432=op\u0163iuni nevalide \u00EEn all7 ORA-17433=argumente nevalide \u00EEn apel ORA-17434=nu sunte\u0163i \u00EEn mod dirijare \u00EEn flux ORA-17435=num\u0103rul in_out_binds din LV este nevalid ORA-17436=Num\u0103r nevalid de variabile de leg\u0103tur\u0103 OUT ORA-17437=Eroare \u00EEn argumentele IN/OUT din blocul PLSQL ORA-17438=Intern - Valoare nea\u015Fteptat\u0103 ORA-17439=Tip SQL nevalid ORA-17440=DBItem/DBType este nul ORA-17441=Versiunea Oracle nu este acceptat\u0103. Versiunea minim\u0103 acceptat\u0103 este 7.2.3. ORA-17442=Valoarea Refcursor este nevalid\u0103 ORA-17443=Utilizatorii sau parolele nule nu sunt acceptate in driverul THIN ORA-17444=Versiunea de protocol TTC recep\u0163ionat\u0103 de la server nu este acceptat\u0103 ORA-17445=LOB deja deschis \u00EEn aceea\u015Fi tranzac\u0163ie ORA-17446=LOB deja \u00EEnchis \u00EEn aceea\u015Fi tranzac\u0163ie ORA-17447=OALL8 se afl\u0103 \u00EEntr-o stare inconsecvent\u0103 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_ru.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u0412\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u044F\u044F \u043E\u0448\u0438\u0431\u043A\u0430 ORA-17002=\u0418\u0441\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0435 \u0432\u0432\u043E\u0434\u0430/\u0432\u044B\u0432\u043E\u0434\u0430 ORA-17003=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0438\u043D\u0434\u0435\u043A\u0441 \u0441\u0442\u043E\u043B\u0431\u0446\u0430 ORA-17004=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0442\u0438\u043F \u0441\u0442\u043E\u043B\u0431\u0446\u0430 ORA-17005=\u041D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u044B\u0439 \u0442\u0438\u043F \u0441\u0442\u043E\u043B\u0431\u0446\u0430 ORA-17006=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0438\u043C\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u0430 ORA-17007=\u041D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0441\u0442\u043E\u043B\u0431\u0435\u0446 ORA-17008=\u0417\u0430\u043A\u0440\u044B\u0442\u043E\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435 ORA-17009=\u0417\u0430\u043A\u0440\u044B\u0442\u0430\u044F \u043A\u043E\u043C\u0430\u043D\u0434\u0430 ORA-17010=\u0417\u0430\u043A\u0440\u044B\u0442\u044B\u0439 \u043D\u0430\u0431\u043E\u0440 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 ORA-17011=\u0418\u0441\u0442\u0440\u0430\u0447\u0435\u043D\u043D\u044B\u0439 \u043D\u0430\u0431\u043E\u0440 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 ORA-17012=\u041A\u043E\u043D\u0444\u043B\u0438\u043A\u0442 \u0442\u0438\u043F\u043E\u0432 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043E\u0432 ORA-17014=\u041D\u0435 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D \u0432\u044B\u0437\u043E\u0432 ResultSet.next ORA-17015=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 \u0431\u044B\u043B\u0430 \u043E\u0442\u043C\u0435\u043D\u0435\u043D\u0430 ORA-17016=\u0412\u0440\u0435\u043C\u044F \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u044F \u043A\u043E\u043C\u0430\u043D\u0434\u044B \u0438\u0441\u0442\u0435\u043A\u043B\u043E ORA-17017=\u041A\u0443\u0440\u0441\u043E\u0440 \u0443\u0436\u0435 \u0438\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u043D ORA-17018=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0443\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u044C ORA-17019=\u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0442\u043E\u043B\u044C\u043A\u043E \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 \u043E\u0447\u0435\u0440\u0435\u0434\u0438 ORA-17020=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u0443\u043F\u0440\u0435\u0436\u0434\u0430\u044E\u0449\u0430\u044F \u0432\u044B\u0431\u043E\u0440\u043A\u0430 \u0441\u0442\u0440\u043E\u043A\u0438 ORA-17021=\u041E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044E\u0442 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u044F ORA-17022=\u041E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044E\u0442 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u044F \u0432 \u0438\u043D\u0434\u0435\u043A\u0441\u0435 ORA-17023=\u041D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u0430\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u044F ORA-17024=\u0414\u0430\u043D\u043D\u044B\u0435 \u043D\u0435 \u0441\u0447\u0438\u0442\u0430\u043D\u044B ORA-17025=\u041E\u0448\u0438\u0431\u043A\u0430 \u0432 defines.isNull () ORA-17026=\u041F\u0435\u0440\u0435\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u0447\u0438\u0441\u043B\u0430 ORA-17027=\u041F\u043E\u0442\u043E\u043A \u0443\u0436\u0435 \u0437\u0430\u043A\u0440\u044B\u0442 ORA-17028=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u044F, \u043F\u043E\u043A\u0430 \u0437\u0430\u043A\u0440\u044B\u0442 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043D\u0430\u0431\u043E\u0440 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 ORA-17029=setReadOnly: \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \"\u0442\u043E\u043B\u044C\u043A\u043E \u0434\u043B\u044F \u0447\u0442\u0435\u043D\u0438\u044F\" \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044E\u0442\u0441\u044F ORA-17030=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B \u0442\u043E\u043B\u044C\u043A\u043E \u0443\u0440\u043E\u0432\u043D\u0438 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0439 READ_COMMITTED \u0438 SERIALIZABLE ORA-17031=setAutoClose: \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u0442\u043E\u043B\u044C\u043A\u043E \u0440\u0435\u0436\u0438\u043C \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0433\u043E \u0437\u0430\u043A\u0440\u044B\u0442\u0438\u044F ORA-17032=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0441\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u043F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u044C\u043D\u0443\u044E \u0432\u044B\u0431\u043E\u0440\u043A\u0443 \u0441\u0442\u0440\u043E\u043A\u0438 \u043D\u0430 \u043D\u043E\u043B\u044C ORA-17033=\u0421\u0442\u0440\u043E\u043A\u0430 SQL92 \u043D\u0435\u0432\u0435\u0440\u043D\u043E\u0433\u043E \u0444\u043E\u0440\u043C\u0430\u0442\u0430 \u0432 \u043F\u043E\u0437\u0438\u0446\u0438\u0438 ORA-17034=\u041D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u044B\u0439 \u043C\u0430\u0440\u043A\u0435\u0440 SQL92 \u0432 \u043F\u043E\u0437\u0438\u0446\u0438\u0438 ORA-17035=\u041D\u0430\u0431\u043E\u0440 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F !! ORA-17036=\u0438\u0441\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0435 \u0432 OracleNumber ORA-17037=\u0421\u0431\u043E\u0439 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u043C\u0435\u0436\u0434\u0443 UTF8 \u0438 UCS2 ORA-17038=\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u0434\u043B\u0438\u043D\u043D\u044B\u0439 \u043C\u0430\u0441\u0441\u0438\u0432 \u0431\u0430\u0439\u0442\u043E\u0432 ORA-17039=\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u0434\u043B\u0438\u043D\u043D\u044B\u0439 \u043C\u0430\u0441\u0441\u0438\u0432 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0439 char ORA-17040=\u0412 URL \u0434\u043B\u044F \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u0443\u043A\u0430\u0437\u0430\u043D \u0441\u0443\u0431\u043F\u0440\u043E\u0442\u043E\u043A\u043E\u043B ORA-17041=\u0412 \u0438\u043D\u0434\u0435\u043A\u0441\u0435 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 IN \u0438\u043B\u0438 OUT: ORA-17042=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043F\u0430\u043A\u0435\u0442\u0430 ORA-17043=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u043F\u043E\u0442\u043E\u043A\u0430 ORA-17044=\u0412\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u044F\u044F \u043E\u0448\u0438\u0431\u043A\u0430: \u043C\u0430\u0441\u0441\u0438\u0432 \u0434\u0430\u043D\u043D\u044B\u0445 \u043D\u0435 \u0440\u0430\u0437\u043C\u0435\u0449\u0435\u043D ORA-17045=\u0412\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u044F\u044F \u043E\u0448\u0438\u0431\u043A\u0430: \u043F\u043E\u043F\u044B\u0442\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u0430 \u043A \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u043C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F\u043C \u0432\u043D\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F \u043F\u0430\u043A\u0435\u0442\u0430 ORA-17046=\u0412\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u044F\u044F \u043E\u0448\u0438\u0431\u043A\u0430: \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0438\u043D\u0434\u0435\u043A\u0441 \u0434\u043B\u044F \u0434\u043E\u0441\u0442\u0443\u043F\u0430 \u043A \u0434\u0430\u043D\u043D\u044B\u043C ORA-17047=\u041E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u0440\u0430\u0437\u0431\u043E\u0440\u0435 \u0434\u0435\u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0440\u0430 \u0442\u0438\u043F\u0430 ORA-17048=\u041D\u0435\u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0439 \u0442\u0438\u043F ORA-17049=\u041D\u0435\u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u043C\u044B\u0435 \u0442\u0438\u043F\u044B \u043E\u0431\u044A\u0435\u043A\u0442\u043E\u0432 java \u0438 sql ORA-17050=\u0432 \u0432\u0435\u043A\u0442\u043E\u0440\u0435 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0442\u0430\u043A\u043E\u0439 \u044D\u043B\u0435\u043C\u0435\u043D\u0442 ORA-17051=\u0414\u0430\u043D\u043D\u044B\u0439 API \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u0442\u0438\u043F\u043E\u0432, \u043D\u0435 \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0430\u0449\u0438\u0445 \u043A UDT ORA-17052=\u0414\u0430\u043D\u043D\u0430\u044F \u0441\u0441\u044B\u043B\u043A\u0430 \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u0430 ORA-17053=\u0414\u0430\u043D\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C ORA-17054=\u0414\u0430\u043D\u043D\u044B\u0439 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0438\u0442\u0435\u043B\u044C \u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u044F LOB \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u0435\u043D ORA-17055=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0441\u0438\u043C\u0432\u043E\u043B \u0432 ORA-17056=\u041D\u0435\u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u0430\u044F \u043A\u043E\u0434\u043E\u0432\u0430\u044F \u0442\u0430\u0431\u043B\u0438\u0446\u0430 (\u0434\u043E\u0431\u0430\u0432\u044C\u0442\u0435 orai18n.jar \u0432 \u043C\u0430\u0440\u0448\u0440\u0443\u0442 \u043A\u043B\u0430\u0441\u0441\u043E\u0432) ORA-17057=\u0417\u0430\u043A\u0440\u044B\u0442\u044B\u0439 LOB ORA-17058=\u0412\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u044F\u044F \u043E\u0448\u0438\u0431\u043A\u0430: \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0441\u043E\u043E\u0442\u043D\u043E\u0448\u0435\u043D\u0438\u0435 \u0434\u043B\u044F \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u044F NLS ORA-17059=\u0421\u0431\u043E\u0439 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u0432\u043E \u0432\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u0435\u0435 \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0438\u0435 ORA-17060=\u0421\u0431\u043E\u0439 \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u044F \u0434\u0435\u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0440\u0430 ORA-17061=\u041E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0434\u0435\u0441\u043A\u0440\u0438\u043F\u0442\u043E\u0440 ORA-17062=\u041D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0443\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u044C Ref ORA-17063=\u041D\u0435 \u0432 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17064=\u0421\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u043E\u0448\u0438\u0431\u043A\u0430 \u0438\u043B\u0438 \u043F\u0443\u0441\u0442\u043E\u0435 \u0438\u043C\u044F \u0431\u0430\u0437\u044B \u0434\u0430\u043D\u043D\u044B\u0445 ORA-17065=\u041D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D \u043A\u043B\u0430\u0441\u0441 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u044F ORA-17066=\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u043A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u0430\u044F \u0440\u0435\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u044F \u0443\u0440\u043E\u0432\u043D\u044F \u0434\u043E\u0441\u0442\u0443\u043F\u0430 ORA-17067=\u0417\u0430\u0434\u0430\u043D \u043D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 URL Oracle ORA-17068=\u041D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439(\u0435) \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442(\u044B) \u0432 \u0432\u044B\u0437\u043E\u0432\u0435 ORA-17069=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u044F\u0432\u043D\u044B\u0439 \u0432\u044B\u0437\u043E\u0432 XA ORA-17070=\u041F\u0440\u0435\u0432\u044B\u0448\u0435\u043D \u0440\u0430\u0437\u043C\u0435\u0440 \u0434\u0430\u043D\u043D\u044B\u0445, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u043D\u044B\u0439 \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u0442\u0438\u043F\u0430 ORA-17071=\u041F\u0440\u0435\u0432\u044B\u0448\u0435\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 VARRAY ORA-17072=\u0412\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u043E \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0435 \u0434\u043B\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u0430 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 ORA-17074=\u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0448\u0430\u0431\u043B\u043E\u043D \u0438\u043C\u0435\u043D\u0438 ORA-17075=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u044F \u0434\u043B\u044F \u043F\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0435\u043C\u043E\u0433\u043E \u043D\u0430\u0431\u043E\u0440\u0430 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 ORA-17076=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u044F \u0434\u043B\u044F \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u0433\u043E \u0442\u043E\u043B\u044C\u043A\u043E \u0434\u043B\u044F \u0447\u0442\u0435\u043D\u0438\u044F \u043D\u0430\u0431\u043E\u0440\u0430 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 ORA-17077=\u0421\u0431\u043E\u0439 \u043F\u0440\u0438 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F REF ORA-17078=\u0412\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u0438 \u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u043F\u043E\u0441\u043A\u043E\u043B\u044C\u043A\u0443 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u0443\u0436\u0435 \u043E\u0442\u043A\u0440\u044B\u0442\u044B ORA-17079=\u0420\u0435\u043A\u0432\u0438\u0437\u0438\u0442\u044B \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F \u043D\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0442 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u043C \u0440\u0435\u043A\u0432\u0438\u0437\u0438\u0442\u0430\u043C ORA-17080=\u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u043F\u0430\u043A\u0435\u0442\u043D\u0430\u044F \u043A\u043E\u043C\u0430\u043D\u0434\u0430 ORA-17081=\u043E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u043F\u0430\u043A\u0435\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0438 ORA-17082=\u041E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u0442\u0435\u043A\u0443\u0449\u0435\u0439 \u0441\u0442\u0440\u043E\u043A\u0438 ORA-17083=\u041D\u0435 \u043D\u0430\u0445\u043E\u0434\u0438\u0442\u0441\u044F \u0432 \u0441\u0442\u0440\u043E\u043A\u0435 \u0432\u0441\u0442\u0430\u0432\u043A\u0438 ORA-17084=\u041E\u0431\u0440\u0430\u0442\u0438\u0432\u0448\u0438\u0439\u0441\u044F \u043A \u0441\u0442\u0440\u043E\u043A\u0435 \u0432\u0441\u0442\u0430\u0432\u043A\u0438 ORA-17085=\u0412\u043E\u0437\u043D\u0438\u043A \u043A\u043E\u043D\u0444\u043B\u0438\u043A\u0442 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0439 ORA-17086=\u041D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0441\u0442\u043E\u043B\u0431\u0446\u0430 \u0432 \u0441\u0442\u0440\u043E\u043A\u0435 \u0432\u0441\u0442\u0430\u0432\u043A\u0438 ORA-17087=\u041F\u0440\u043E\u0438\u0433\u043D\u043E\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0441\u043E\u0432\u0435\u0442 \u043E\u0442\u043D\u043E\u0441\u0438\u0442\u0435\u043B\u044C\u043D\u043E \u043F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438: setFetchDirection() ORA-17088=\u041D\u0435\u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u044B\u0439 \u0441\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0441 \u0434\u043B\u044F \u0437\u0430\u043F\u0440\u043E\u0448\u0435\u043D\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430 \u043D\u0430\u0431\u043E\u0440\u0430 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 \u0438 \u0443\u0440\u043E\u0432\u043D\u044F \u043F\u0430\u0440\u0430\u043B\u043B\u0435\u043B\u0438\u0437\u043C\u0430 ORA-17089=\u0432\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u044F\u044F \u043E\u0448\u0438\u0431\u043A\u0430 ORA-17090=\u043E\u043F\u0435\u0440\u0430\u0446\u0438\u044F \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430 ORA-17091=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u0430\u0431\u043E\u0440 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 \u0441 \u0437\u0430\u043F\u0440\u043E\u0448\u0435\u043D\u043D\u044B\u043C \u0442\u0438\u043F\u043E\u043C \u0438/\u0438\u043B\u0438 \u0443\u0440\u043E\u0432\u043D\u0435\u043C \u043F\u0430\u0440\u0430\u043B\u043B\u0435\u043B\u0438\u0437\u043C\u0430 ORA-17092=\u0412 \u043A\u043E\u043D\u0446\u0435 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0438 \u0432\u044B\u0437\u043E\u0432\u0430 \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u0438 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u043E\u0432 JDBC \u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E ORA-17093=\u041E\u043F\u0435\u0440\u0430\u0446\u0438\u044F OCI \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B\u0430 OCI_SUCCESS_WITH_INFO ORA-17094=\u041D\u0435\u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435 \u0432\u0435\u0440\u0441\u0438\u0438 \u0442\u0438\u043F\u0430 \u043E\u0431\u044A\u0435\u043A\u0442\u0430 ORA-17095=\u041D\u0435 \u043D\u0430\u0437\u043D\u0430\u0447\u0435\u043D \u0440\u0430\u0437\u043C\u0435\u0440 \u043A\u044D\u0448\u0430 \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u043E\u0432 ORA-17096=\u0414\u043B\u044F \u0434\u0430\u043D\u043D\u043E\u0433\u043E \u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u043E\u0433\u043E \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0430\u043A\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u043E\u0432. ORA-17097=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0442\u0438\u043F \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0430 \u0442\u0430\u0431\u043B\u0438\u0446\u044B \u0438\u043D\u0434\u0435\u043A\u0441\u043E\u0432 PL/SQL ORA-17098=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u044F \u0441 \u043F\u0443\u0441\u0442\u044B\u043C LOB ORA-17099=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u0434\u043B\u0438\u043D\u0430 \u0442\u0430\u0431\u043B\u0438\u0446\u044B \u0438\u043D\u0434\u0435\u043A\u0441\u043E\u0432 PL/SQL ORA-17100=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 Java-\u043E\u0431\u044A\u0435\u043A\u0442 \u0431\u0430\u0437\u044B \u0434\u0430\u043D\u043D\u044B\u0445 ORA-17101=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0435 \u0441\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043E\u0431\u044A\u0435\u043A\u0442\u0430 \u043F\u0443\u043B\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 OCI ORA-17102=\u0414\u0432\u043E\u0438\u0447\u043D\u044B\u0439 \u043C\u0430\u0441\u0441\u0438\u0432\u043D\u044B\u0439 \u0444\u0430\u0439\u043B\u043E\u0432\u044B\u0439 \u043E\u0431\u044A\u0435\u043A\u0442 \u0442\u043E\u043B\u044C\u043A\u043E \u0434\u043B\u044F \u0447\u0442\u0435\u043D\u0438\u044F ORA-17103=\u043D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0442\u0438\u043F \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0430 \u0447\u0435\u0440\u0435\u0437 getConnection. \u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 getJavaSqlConnection ORA-17104=\u041F\u043E\u0434\u043B\u0435\u0436\u0430\u0449\u0438\u0439 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044E \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440 SQL \u043D\u0435 \u0434\u043E\u043B\u0436\u0435\u043D \u0431\u044B\u0442\u044C \u043F\u0443\u0441\u0442\u044B\u043C \u0438\u043B\u0438 \u043D\u0435\u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u043C ORA-17105=\u043D\u0435 \u0437\u0430\u0434\u0430\u043D \u0447\u0430\u0441\u043E\u0432\u043E\u0439 \u043F\u043E\u044F\u0441 \u0441\u0435\u0430\u043D\u0441\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F ORA-17106=\u0437\u0430\u0434\u0430\u043D\u0430 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043F\u0443\u043B\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 \u0434\u0440\u0430\u0439\u0432\u0435\u0440\u0430 JDBC-OCI ORA-17107=\u0437\u0430\u0434\u0430\u043D \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0442\u0438\u043F \u043C\u043E\u0434\u0443\u043B\u044F \u0434\u043E\u0441\u0442\u0443\u043F\u0430 ORA-17108=\u0412 defineColumnType \u043D\u0435 \u0437\u0430\u0434\u0430\u043D\u0430 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0434\u043B\u0438\u043D\u0430 ORA-17109=\u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0435 \u043A\u043E\u0434\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 Java ORA-17110=\u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043E \u0441 \u043F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0436\u0434\u0435\u043D\u0438\u0435\u043C ORA-17111=\u0417\u0430\u0434\u0430\u043D\u043E \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0432\u0440\u0435\u043C\u044F \u0436\u0438\u0437\u043D\u0438 \u0434\u043B\u044F \u043A\u044D\u0448\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 ORA-17112=\u0417\u0430\u0434\u0430\u043D \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0438\u043D\u0442\u0435\u0440\u0432\u0430\u043B \u043C\u0435\u0436\u0434\u0443 \u043F\u043E\u0442\u043E\u043A\u0430\u043C\u0438 ORA-17113=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0438\u043D\u0442\u0435\u0440\u0432\u0430\u043B\u0430 \u043C\u0435\u0436\u0434\u0443 \u043F\u043E\u0442\u043E\u043A\u0430\u043C\u0438 \u043F\u0440\u0435\u0432\u044B\u0448\u0430\u0435\u0442 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u044F \u0434\u043B\u044F \u043A\u044D\u0448\u0430 ORA-17114=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0444\u0438\u043A\u0441\u0430\u0446\u0438\u044E \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 \u0432 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17115=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043E\u0442\u043A\u0430\u0442 \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 \u0432 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17116=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u0444\u0438\u043A\u0441\u0430\u0446\u0438\u044E \u0432 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0439 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17117=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0437\u0430\u0434\u0430\u0442\u044C \u0442\u043E\u0447\u043A\u0443 \u043E\u0442\u043A\u0430\u0442\u0430 \u0432 \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0439 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17118=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440 \u0434\u043B\u044F \u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u043D\u043E\u0439 \u0442\u043E\u0447\u043A\u0438 \u043E\u0442\u043A\u0430\u0442\u0430 ORA-17119=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0438\u043C\u044F \u0434\u043B\u044F \u0431\u0435\u0437\u044B\u043C\u044F\u043D\u043D\u043E\u0439 \u0442\u043E\u0447\u043A\u0438 \u043E\u0442\u043A\u0430\u0442\u0430 ORA-17120=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043D\u0430\u0437\u043D\u0430\u0447\u0438\u0442\u044C \u0442\u043E\u0447\u043A\u0443 \u043E\u0442\u043A\u0430\u0442\u0430 \u0441\u043E \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u043E\u0439 \u0430\u0432\u0442\u043E\u0444\u0438\u043A\u0441\u0430\u0446\u0438\u0435\u0439 ORA-17121=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0432\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A \u0442\u043E\u0447\u043A\u0435 \u043E\u0442\u043A\u0430\u0442\u0430 \u0441\u043E \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u043E\u0439 \u0430\u0432\u0442\u043E\u0444\u0438\u043A\u0441\u0430\u0446\u0438\u0435\u0439 ORA-17122=\u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0432\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u043E\u0447\u043A\u0435 \u043E\u0442\u043A\u0430\u0442\u0430 txn \u0432 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0439 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17123=\u0417\u0430\u0434\u0430\u043D \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u043A\u044D\u0448\u0430 \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u043E\u0432 ORA-17124=\u0417\u0430\u0434\u0430\u043D\u043E \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0432\u0440\u0435\u043C\u044F \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u044F \u0434\u043B\u044F \u0431\u0435\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F \u043A\u044D\u0448\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 ORA-17125=\u042F\u0432\u043D\u044B\u0439 \u043A\u044D\u0448 \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B \u043D\u0435\u0432\u0435\u0440\u043D\u044B\u0439 \u0442\u0438\u043F \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u0430 ORA-17126=\u0418\u0441\u0442\u0435\u043A\u043B\u043E \u0432\u0440\u0435\u043C\u044F '\u0444\u0438\u043A\u0441\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u044F' ORA-17127=\u0417\u0430\u0434\u0430\u043D\u043E \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 '\u0444\u0438\u043A\u0441\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u043E\u0436\u0438\u0434\u0430\u043D\u0438\u0435' ORA-17128=\u0421\u0442\u0440\u043E\u043A\u0430 SQL \u043D\u0435 \u044F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0437\u0430\u043F\u0440\u043E\u0441\u043E\u043C ORA-17129=\u0421\u0442\u0440\u043E\u043A\u0430 SQL \u043D\u0435 \u044F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u043E\u043C DML ORA-17132=\u0417\u0430\u043F\u0440\u043E\u0448\u0435\u043D\u043E \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u043D\u0438\u0435 ORA-17133=UNUSED ORA-17134=\u0414\u043B\u0438\u043D\u0430 \u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430 \u0432 SQL \u043F\u0440\u0435\u0432\u044B\u0448\u0430\u0435\u0442 32 \u0441\u0438\u043C\u0432\u043E\u043B\u0430 ORA-17135=\u0418\u043C\u044F \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0432 setXXXStream, \u043F\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 SQL \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0440\u0430\u0437 ORA-17136=\u041D\u0435\u0432\u0435\u0440\u043D\u043E \u0441\u0444\u043E\u0440\u043C\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 URL DATALINK, \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C getString() ORA-17137=\u041A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u043D\u0435 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043E \u0438\u043B\u0438 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 DataSource \u0434\u043B\u044F \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u044F \u043A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F ORA-17138=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0438\u043C\u044F \u043A\u044D\u0448\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439. \u0414\u043E\u043B\u0436\u043D\u043E \u0431\u044B\u0442\u044C \u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u043E\u0439 \u0438 \u0443\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u044B\u043C ORA-17139=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0435 \u0441\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043A\u044D\u0448\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 ORA-17140=\u041A\u044D\u0448 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 \u0441 \u044D\u0442\u0438\u043C \u0438\u043C\u0435\u043D\u0435\u043C \u043A\u044D\u0448\u0430 \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 ORA-17141=\u041A\u044D\u0448 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 \u0441 \u044D\u0442\u0438\u043C \u0438\u043C\u0435\u043D\u0435\u043C \u043A\u044D\u0448\u0430 \u043D\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 ORA-17142=\u041A\u044D\u0448 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 \u0441 \u044D\u0442\u0438\u043C \u0438\u043C\u0435\u043D\u0435\u043C \u043A\u044D\u0448\u0430 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D ORA-17143=\u0412 \u043A\u044D\u0448\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0439 \u043E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u043E \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0438\u043B\u0438 \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0435\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435 ORA-17144=\u0443\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u044C \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u0430 \u043D\u0435 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D ORA-17145=\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043E \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0441\u043E\u0431\u044B\u0442\u0438\u0435 ONS ORA-17146=\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u0430 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F ONS ORA-17147=\u041F\u043E\u043F\u044B\u0442\u043A\u0430 \u043F\u0440\u0438\u0441\u0432\u043E\u0435\u043D\u0438\u044F \u0438\u043C\u0435\u043D\u0438 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430, \u043A\u043E\u0442\u043E\u0440\u043E\u0435 \u043D\u0435 \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u0435\u0442\u0441\u044F \u0432 \u0434\u0430\u043D\u043D\u043E\u043C SQL ORA-17148=\u041C\u0435\u0442\u043E\u0434 \u0440\u0435\u0430\u043B\u0438\u0437\u043E\u0432\u0430\u043D \u0442\u043E\u043B\u044C\u043A\u043E \u0432 '\u0442\u043E\u043D\u043A\u043E\u043C' ORA-17149=\u0423\u0436\u0435 \u044F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0441\u0435\u0430\u043D\u0441\u043E\u043C \u043F\u0440\u043E\u043A\u0441\u0438 ORA-17150=\u041D\u0435\u0432\u0435\u0440\u043D\u044B\u0435 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u044B \u0434\u043B\u044F \u0441\u0435\u0430\u043D\u0441\u0430 \u043F\u0440\u043E\u043A\u0441\u0438 ORA-17151=Clob \u0438\u043C\u0435\u0435\u0442 \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u0431\u043E\u043B\u044C\u0448\u043E\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0434\u043B\u044F \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u0438\u044F \u0432 \u0441\u0442\u0440\u043E\u043A\u0435 Java ORA-17152=\u042D\u0442\u043E\u0442 \u043C\u0435\u0442\u043E\u0434 \u0440\u0435\u0430\u043B\u0438\u0437\u043E\u0432\u0430\u043D \u0442\u043E\u043B\u044C\u043A\u043E \u0432 \u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F\u0445 ORA-17153=\u042D\u0442\u043E\u0442 \u043C\u0435\u0442\u043E\u0434 \u0440\u0435\u0430\u043B\u0438\u0437\u043E\u0432\u0430\u043D \u0442\u043E\u043B\u044C\u043A\u043E \u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F\u0445 ORA-17154=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043E\u0442\u043E\u0431\u0440\u0430\u0437\u0438\u0442\u044C \u0441\u0438\u043C\u0432\u043E\u043B Oracle \u0432 \u0441\u0438\u043C\u0432\u043E\u043B Unicode ORA-17155=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043E\u0442\u043E\u0431\u0440\u0430\u0437\u0438\u0442\u044C \u0441\u0438\u043C\u0432\u043E\u043B Unicode \u0432 \u0441\u0438\u043C\u0432\u043E\u043B Oracle ORA-17156=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u043C\u0430\u0441\u0441\u0438\u0432\u0430 \u0434\u043B\u044F \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0439 \u043C\u0435\u0442\u0440\u0438\u043A\u0438 \u0441\u043A\u0432\u043E\u0437\u043D\u043E\u0439 \u043F\u0435\u0440\u0435\u0434\u0430\u0447\u0438 ORA-17157=setString \u043C\u043E\u0436\u0435\u0442 \u043E\u0431\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E \u0441\u0442\u0440\u043E\u043A\u0438 \u043A\u043E\u0440\u043E\u0447\u0435 32766 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 ORA-17158=\u043D\u0435\u0432\u0435\u0440\u043D\u0430\u044F \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C \u0434\u043B\u044F \u0434\u0430\u043D\u043D\u043E\u0439 \u0444\u0443\u043D\u043A\u0446\u0438\u0438 ORA-17159=\u0447\u0440\u0435\u0437\u043C\u0435\u0440\u043D\u043E \u0431\u043E\u043B\u044C\u0448\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043C\u0435\u0442\u0440\u0438\u043A\u0438 \u0434\u043B\u044F \u0441\u043A\u0432\u043E\u0437\u043D\u043E\u0439 \u0442\u0440\u0430\u0441\u0441\u0438\u0440\u043E\u0432\u043A\u0438 ORA-17160=\u043F\u043E\u0440\u044F\u0434\u043A\u043E\u0432\u044B\u0439 \u043D\u043E\u043C\u0435\u0440 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440\u0430 \u043A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u0430 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044F \u0432\u043D\u0435 \u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0433\u043E \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D\u0430 ORA-17161=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0440\u0435\u0436\u0438\u043C \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438. ORA-17162=\u041D\u0435\u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043C\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0441\u043F\u043E\u0441\u043E\u0431\u043D\u043E\u0441\u0442\u0438 \u0443\u0434\u0435\u0440\u0436\u0430\u043D\u0438\u044F ORA-17163=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C getXAConnection() \u043F\u0440\u0438 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u043E\u043C \u043A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0438 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F ORA-17164=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0432\u044B\u0437\u0432\u0430\u0442\u044C getXAResource() \u0447\u0435\u0440\u0435\u0437 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043A\u043E\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435 \u043F\u0440\u0438 \u0432\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u043E\u043C \u043A\u044D\u0448\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0438 ORA-17165=\u041F\u0430\u043A\u0435\u0442 DBMS_JDBC \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 ORA-17166=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0432\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0432\u044B\u0431\u043E\u0440\u043A\u0443 \u0434\u043B\u044F \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u0430 PLSQL ORA-17167=\u041A\u043B\u0430\u0441\u0441\u044B PKI \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u044B. \u0414\u043B\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0445 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0435\u0439 /'connect /' oraclepki.jar \u0434\u043E\u043B\u0436\u0435\u043D \u043D\u0430\u0445\u043E\u0434\u0438\u0442\u044C\u0441\u044F \u043D\u0430 \u043F\u0443\u0442\u0438 \u043A\u043B\u0430\u0441\u0441\u043E\u0432 ORA-17168=\u043E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u0430 \u043E\u0448\u0438\u0431\u043A\u0430, \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u0430\u044F \u0441 \u0441\u0435\u043A\u0440\u0435\u0442\u043D\u044B\u043C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435\u043C. \u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u043C\u0435\u0441\u0442\u043E\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0444\u0443\u0442\u043B\u044F\u0440\u0430 \u043D\u0430 \u043D\u0430\u043B\u0438\u0447\u0438\u0435 \u043E\u0442\u043A\u0440\u044B\u0442\u043E\u0433\u043E \u0444\u0443\u0442\u043B\u044F\u0440\u0430 (cwallet.sso) \u0438 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0441\u043B\u0443\u0436\u0435\u0431\u043D\u043E\u0439 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u044B mkstore \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044C, \u0447\u0442\u043E \u044D\u0442\u043E\u0442 \u0444\u0443\u0442\u043B\u044F\u0440 \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u0442 \u043D\u0430\u0434\u043B\u0435\u0436\u0430\u0449\u0438\u0435 \u0440\u0435\u043A\u0432\u0438\u0437\u0438\u0442\u044B ORA-17169=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0432\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u043F\u0440\u0438\u0432\u044F\u0437\u043A\u0443 \u043F\u043E\u0442\u043E\u043A\u0430 \u043A ScrollableResultSet \u0438\u043B\u0438 UpdatableResultSet ORA-17170=\u041F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E \u0438\u043C\u0435\u043D \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u0443\u0441\u0442\u044B\u043C ORA-17171=\u0414\u043B\u0438\u043D\u0430 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u043F\u0440\u0435\u0432\u044B\u0448\u0430\u0442\u044C 30 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 ORA-17172=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u043F\u0440\u0435\u0432\u044B\u0448\u0430\u0442\u044C \u0432 \u0434\u043B\u0438\u043D\u0443 400 \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u0432 ORA-17173=\u041D\u0435 \u0432\u0441\u0435 \u0432\u043E\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u043C\u044B\u0435 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u044B ORA-17174=\u041F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u0442\u043E\u043B\u044C\u043A\u043E \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E \u0438\u043C\u0435\u043D CLIENTCONTEXT ORA-17175=\u041E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0435 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u043D\u043E\u0433\u043E ONS ORA-17200=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u043E\u0442\u043A\u0440\u044B\u0442\u0438\u044F XA \u0438\u0437 Java \u0432 C ORA-17201=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0437\u0430\u043A\u0440\u044B\u0442\u0438\u044F XA \u0438\u0437 Java \u0432 C ORA-17202=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u0442\u044C \u0438\u043C\u044F RM \u0438\u0437 Java \u0432 C ORA-17203=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u0442\u044C \u0442\u0438\u043F \u0443\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u044F \u0432 jlong ORA-17204=\u0412\u0445\u043E\u0434\u043D\u043E\u0439 \u043C\u0430\u0441\u0441\u0438\u0432 \u0438\u043C\u0435\u0435\u0442 \u0441\u043B\u0438\u0448\u043A\u043E\u043C \u043C\u0430\u043B\u0443\u044E \u0434\u043B\u0438\u043D\u0443 \u0434\u043B\u044F \u0445\u0440\u0430\u043D\u0435\u043D\u0438\u044F \u0443\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u0435\u0439 OCI ORA-17205=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0443\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u044C OCISvcCtx \u0438\u0437 C-XA \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E xaoSvcCtx ORA-17206=\u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0443\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u044C OCIEnv \u0438\u0437 C-XA \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E xaoEnv ORA-17207=\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u043E tnsEntry \u043D\u0435 \u0437\u0430\u0434\u0430\u043D\u043E \u0432 DataSource ORA-17213=C-XA \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B XAER_RMERR \u0432\u043E \u0432\u0440\u0435\u043C\u044F xa_open ORA-17215=C-XA \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B XAER_INVAL \u0432\u043E \u0432\u0440\u0435\u043C\u044F xa_open ORA-17216=C-XA \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B XAER_PROTO \u0432\u043E \u0432\u0440\u0435\u043C\u044F xa_open ORA-17233=C-XA \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B XAER_RMERR \u0432\u043E \u0432\u0440\u0435\u043C\u044F xa_close ORA-17235=C-XA \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B XAER_INVAL \u0432\u043E \u0432\u0440\u0435\u043C\u044F xa_close ORA-17236=C-XA \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0438\u043B XAER_PROTO \u0432\u043E \u0432\u0440\u0435\u043C\u044F xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u041D\u0430\u0440\u0443\u0448\u0435\u043D\u0438\u0435 \u043F\u0440\u043E\u0442\u043E\u043A\u043E\u043B\u0430 ORA-17402=\u041E\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044F \u0442\u043E\u043B\u044C\u043A\u043E \u043E\u0434\u043D\u043E \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0435 RPA ORA-17403=\u041E\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044F \u0442\u043E\u043B\u044C\u043A\u043E \u043E\u0434\u043D\u043E \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0435 RXH ORA-17404=\u0427\u0438\u0441\u043B\u043E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0445 RXD \u0431\u043E\u043B\u044C\u0448\u0435 \u043E\u0436\u0438\u0434\u0430\u0435\u043C\u043E\u0433\u043E ORA-17405=\u0414\u043B\u0438\u043D\u0430 UAC \u043D\u0435 \u0440\u0430\u0432\u043D\u0430 \u043D\u0443\u043B\u044E ORA-17406=\u041F\u0440\u0435\u0432\u044B\u0448\u0435\u043D \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0431\u0443\u0444\u0435\u0440\u0430 ORA-17407=\u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0442\u0438\u043F Representation(setRep) ORA-17408=\u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0442\u0438\u043F Representation(getRep) ORA-17409=\u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0431\u0443\u0444\u0435\u0440\u0430 ORA-17410=\u0414\u0430\u043D\u043D\u044B\u0435 \u0434\u043B\u044F \u0441\u0447\u0438\u0442\u044B\u0432\u0430\u043D\u0438\u044F \u0438\u0437 \u0441\u043E\u043A\u0435\u0442\u0430 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044E\u0442 ORA-17411=\u041D\u0435\u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435 \u0432\u043D\u0443\u0442\u0440. \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0442\u0438\u043F\u0430 \u0434\u0430\u043D\u043D\u044B\u0445 ORA-17412=\u0414\u043B\u0438\u043D\u0430 \u0442\u0438\u043F\u0430 \u043F\u0440\u0435\u0432\u044B\u0448\u0430\u0435\u0442 \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C ORA-17413=\u041F\u0440\u0435\u0432\u044B\u0448\u0435\u043D\u0438\u0435 \u0440\u0430\u0437\u043C\u0435\u0440\u0430 \u043A\u043B\u044E\u0447\u0430 ORA-17414=\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u044B\u0439 \u0440\u0430\u0437\u043C\u0435\u0440 \u0431\u0443\u0444\u0435\u0440\u0430 \u0434\u043B\u044F \u0445\u0440\u0430\u043D\u0435\u043D\u0438\u044F \u0438\u043C\u0435\u043D \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432 ORA-17415=\u0414\u0430\u043D\u043D\u044B\u0439 \u0442\u0438\u043F \u043D\u0435 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u0430\u043D ORA-17416=FATAL ORA-17417=\u041E\u0448\u0438\u0431\u043A\u0430 NLS, \u0441\u0431\u043E\u0439 \u0434\u0435\u043A\u043E\u0434\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0438\u043C\u0435\u043D \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432 ORA-17418=\u041E\u0448\u0438\u0431\u043A\u0430 \u0434\u043B\u0438\u043D\u044B \u043F\u043E\u043B\u044F \u0432\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u0435\u0439 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u044B ORA-17419=\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D\u043E \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432 ORA-17420=\u041D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0430 \u0432\u0435\u0440\u0441\u0438\u044F Oracle ORA-17421=\u041D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u044B \u0442\u0438\u043F\u044B \u0438\u043B\u0438 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435 ORA-17422=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u043A\u043B\u0430\u0441\u0441 \u0432 \u0433\u0435\u043D\u0435\u0440\u0430\u0442\u043E\u0440\u0435 ORA-17423=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435 \u0431\u043B\u043E\u043A\u0430 PLSQL \u0431\u0435\u0437 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u044F IOV ORA-17424=\u041F\u043E\u043F\u044B\u0442\u043A\u0430 \u043F\u0440\u0438\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0434\u0440\u0443\u0433\u043E\u0439 \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u0438 \u043C\u0430\u0440\u0448\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u0438 ORA-17425=\u0412\u043E\u0437\u0432\u0440\u0430\u0442 \u043F\u043E\u0442\u043E\u043A\u0430 \u0432 \u0431\u043B\u043E\u043A PLSQL ORA-17426=\u0421\u0432\u044F\u0437\u0438 IN \u0438 OUT \u043D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u044B ORA-17427=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435 \u043D\u0435 \u0438\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E OAC ORA-17428=\u041F\u043E\u0441\u043B\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u0434\u043E\u043B\u0436\u0435\u043D \u0441\u043B\u0435\u0434\u043E\u0432\u0430\u0442\u044C \u0432\u044B\u0437\u043E\u0432 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 ORA-17429=\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u043C \u0442\u0440\u0435\u0431\u043E\u0432\u0430\u043D\u0438\u0435\u043C \u044F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435 \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043E\u043C ORA-17430=\u041D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u043F\u0440\u043E\u0439\u0442\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 ORA-17431=\u041A\u043E\u043C\u0430\u043D\u0434\u0430 SQL \u0434\u043B\u044F \u0440\u0430\u0437\u0431\u043E\u0440\u0430 \u043D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0430 ORA-17432=\u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u0430\u044F \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u044F \u0432 all7 ORA-17433=\u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u044B \u0432 \u0432\u044B\u0437\u043E\u0432\u0435 ORA-17434=\u043D\u0435 \u043D\u0430\u0445\u043E\u0434\u0438\u0442\u0441\u044F \u0432 \u043F\u043E\u0442\u043E\u043A\u043E\u0432\u043E\u043C \u0440\u0435\u0436\u0438\u043C\u0435 ORA-17435=\u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0447\u0438\u0441\u043B\u043E in_out_binds \u0432 IOV ORA-17436=\u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0432\u043D\u0435\u0448\u043D\u0438\u0445 \u0441\u0432\u044F\u0437\u0435\u0439 ORA-17437=\u041E\u0448\u0438\u0431\u043A\u0430 \u0432 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u0435(\u0430\u0445) IN/OUT \u0431\u043B\u043E\u043A\u0430 PLSQL ORA-17438=\u0412\u043D\u0443\u0442\u0440\u0435\u043D\u043D\u044F\u044F - \u043D\u0435\u043F\u0440\u0435\u0434\u0432\u0438\u0434\u0435\u043D\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 ORA-17439=\u041D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u0442\u0438\u043F SQL ORA-17440=DBItem/DBType \u043D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D ORA-17441=\u042D\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044F Oracle \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F. \u041F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u0432\u0435\u0440\u0441\u0438\u0438 \u043D\u0435 \u043D\u0438\u0436\u0435 7.2.3. ORA-17442=\u041D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 Refcursor ORA-17443=\u0412 \u0434\u0440\u0430\u0439\u0432\u0435\u0440\u0435 THIN \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u043D\u0435\u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 \u0438 \u043F\u0430\u0440\u043E\u043B\u0438 ORA-17444=\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u0430\u044F \u0438\u0437 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u044F \u043F\u0440\u043E\u0442\u043E\u043A\u043E\u043B\u0430 TTC \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F ORA-17445=LOB \u0443\u0436\u0435 \u043E\u0442\u043A\u0440\u044B\u0442 \u0432 \u0442\u043E\u0439 \u0436\u0435 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17446=LOB \u0443\u0436\u0435 \u0437\u0430\u043A\u0440\u044B\u0442 \u0432 \u0442\u043E\u0439 \u0436\u0435 \u0442\u0440\u0430\u043D\u0437\u0430\u043A\u0446\u0438\u0438 ORA-17447=OALL8 \u043D\u0430\u0445\u043E\u0434\u0438\u0442\u0441\u044F \u0432 \u043F\u0440\u043E\u0442\u0438\u0432\u043E\u0440\u0435\u0447\u0438\u0432\u043E\u043C \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0438 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_sk.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Intern\u00E1 chyba ORA-17002=Vstupno-v\u00FDstupn\u00E1 chyba ORA-17003=Neplatn\u00FD index st\u013Apca ORA-17004=Neplatn\u00FD typ st\u013Apca ORA-17005=Nepodporovan\u00FD typ st\u013Apca ORA-17006=Neplatn\u00FD n\u00E1zov st\u013Apca ORA-17007=Neplatn\u00FD dynamick\u00FD st\u013Apec ORA-17008=Uzatvoren\u00E9 spojenie ORA-17009=Uzatvoren\u00FD pr\u00EDkaz ORA-17010=Uzatvoren\u00FD Resultset ORA-17011=Vy\u010Derpan\u00FD Resultset ORA-17012=Konflikt typov parametrov ORA-17014=ResultSet.next nebolo volan\u00E9 ORA-17015=Pr\u00EDkaz bol zru\u0161en\u00FD ORA-17016=\u010Casov\u00FD limit pr\u00EDkazu uplynul ORA-17017=Kurzor je u\u017E iniciovan\u00FD ORA-17018=Neplatn\u00FD kurzor ORA-17019=Op\u00EDsa\u0165 mo\u017Eno iba dopyt ORA-17020=Neplatn\u00E9 predbe\u017En\u00E9 vyvolanie riadka ORA-17021=Ch\u00FDba defines ORA-17022=Ch\u00FDba defines pri indexe ORA-17023=Nepodporovan\u00E1 vlastnos\u0165 ORA-17024=Nena\u010D\u00EDtali sa \u017Eiadne d\u00E1ta ORA-17025=Chyba v defines.isNull () ORA-17026=Numerick\u00E9 prete\u010Denie ORA-17027=Tok je u\u017E zatvoren\u00FD ORA-17028=Nemo\u017Eno robi\u0165 nov\u00E9 defines, k\u00FDm nebude aktu\u00E1lny ResultSet zatvoren\u00FD ORA-17029=setReadOnly: Spojenia len na \u010D\u00EDtanie nie s\u00FA podporovan\u00E9 ORA-17030=READ_COMMITTED a SERIALIZABLE s\u00FA jedin\u00E9 platn\u00E9 transak\u010Dn\u00E9 \u00FArovne ORA-17031=setAutoClose: Podpora len pre zapnut\u00FD re\u017Eim auto close ORA-17032=nemo\u017Eno nastavi\u0165 predbe\u017En\u00E9 vyvolanie riadkov na nulu ORA-17033=Deformovan\u00FD re\u0165azec SQL92 na poz\u00EDcii ORA-17034=Nepodporovan\u00FD token SQL92 na poz\u00EDcii ORA-17035=Nepodporovan\u00E1 znakov\u00E1 mno\u017Eina ORA-17036=v\u00FDnimka v OracleNumber ORA-17037=Zlyhanie konverzie medzi UTF8 a UCS2 ORA-17038=Bajtov\u00E9 pole nie je dos\u0165 dlh\u00E9 ORA-17039=Znakov\u00E9 pole nie je dos\u0165 dlh\u00E9 ORA-17040=V pripojovacom URL mus\u00ED by\u0165 \u0161pecifikovan\u00FD podprotokol ORA-17041=Ch\u00FDba parameter IN alebo OUT pri indexe: ORA-17042=Neplatn\u00E1 hodnota d\u00E1vky ORA-17043=Neplatn\u00E1 maxim\u00E1lna ve\u013Ekos\u0165 toku ORA-17044=Intern\u00E1 chyba: D\u00E1tov\u00E9 pole nealokovan\u00E9 ORA-17045=Intern\u00E1 chyba: Pokus o pr\u00EDstup k v\u00E4zobn\u00FDm hodnot\u00E1m prekra\u010Duj\u00FAcim hodnotu d\u00E1vky ORA-17046=Intern\u00E1 chyba: Neplatn\u00FD index pre pr\u00EDstup k d\u00E1tam ORA-17047=Chyba v syntaktickej anal\u00FDze typov\u00E9ho deskriptora ORA-17048=Nedefinovan\u00FD typ ORA-17049=Nekonzistentn\u00E9 typy java a sql objektov ORA-17050=tento prvok vo vektore neexistuje ORA-17051=Toto API nemo\u017Eno pou\u017Ei\u0165 pre nie-UDT typy ORA-17052=Tento odkaz je neplatn\u00FD ORA-17053=Ve\u013Ekos\u0165 je neplatn\u00E1 ORA-17054=Lok\u00E1tor LOB nie je platn\u00FD ORA-17055=Neplatn\u00FD znak n\u00E1jden\u00FD v ORA-17056=Nepodporovan\u00E1 znakov\u00E1 mno\u017Eina (pridajte s\u00FAbor orai18n.jar do cesty k triede) ORA-17057=Uzavret\u00FD LOB ORA-17058=Intern\u00E1 chyba: Neplatn\u00FD pomer konverzie NLS ORA-17059=Nepodarilo sa konvertova\u0165 na intern\u00FA reprezent\u00E1ciu ORA-17060=Nepodarilo sa skon\u0161truova\u0165 deskriptor ORA-17061=Ch\u00FDba deskriptor ORA-17062=Referen\u010Dn\u00FD kurzor je neplatn\u00FD ORA-17063=Nie je v transakcii ORA-17064=Neplatn\u00E1 syntax alebo n\u00E1zov datab\u00E1zy je pr\u00E1zdny ORA-17065=Trieda konverzie je nulov\u00E1 ORA-17066=Je potrebn\u00E1 implement\u00E1cia \u0161pecifick\u00E1 pre pr\u00EDstupov\u00FA vrstvu ORA-17067=\u0160pecifikovan\u00E9 neplatn\u00E9 Oracle URL ORA-17068=Neplatn\u00E9 argumenty vo volan\u00ED ORA-17069=Pou\u017Eite explicitn\u00E9 XA volanie ORA-17070=Ve\u013Ekos\u0165 d\u00E1t v\u00E4\u010D\u0161ia ako maxim\u00E1lna ve\u013Ekos\u0165 pre tento typ ORA-17071=Prekro\u010Den\u00FD maxim\u00E1lny limit VARRAY ORA-17072=Vlo\u017Een\u00E1 hodnota je prive\u013Ek\u00E1 pre st\u013Apec ORA-17074=neplatn\u00FD vzor n\u00E1zvu ORA-17075=Neplatn\u00E1 oper\u00E1cia pre resultset iba na odoslanie \u010Falej ORA-17076=Neplatn\u00E1 oper\u00E1cia pre resultset iba na \u010D\u00EDtanie ORA-17077=Zlyhanie pri nastavovan\u00ED hodnoty REF ORA-17078=Nemo\u017Eno uskuto\u010Dni\u0165 oper\u00E1ciu, lebo s\u00FA u\u017E otvoren\u00E9 spojenia ORA-17079=Doklady pou\u017E\u00EDvate\u013Ea sa nezhoduj\u00FA s existuj\u00FAcimi ORA-17080=neplatn\u00FD d\u00E1vkov\u00FD pr\u00EDkaz ORA-17081=po\u010Das d\u00E1vkovania do\u0161lo k chybe ORA-17082=\u017Diadny aktu\u00E1lny riadok ORA-17083=Nie je na vlo\u017Eenom riadku ORA-17084=Volan\u00E9 na vlo\u017Eenom riadku ORA-17085=Vyskytuj\u00FA sa konflikty hodn\u00F4t ORA-17086=Nedefinovan\u00E1 hodnota st\u013Apca na vlo\u017Eenom riadku ORA-17087=Ignorovan\u00FD pokyn na zv\u00FD\u0161enie v\u00FDkonnosti: setFetchDirection() ORA-17088=Nepodporovan\u00E1 syntax pre po\u017Eadovan\u00FD typ resultsetu a \u00FArove\u0148 s\u00FAbe\u017Enosti ORA-17089=intern\u00E1 chyba ORA-17090=oper\u00E1cia nie je povolen\u00E1 ORA-17091=Nemo\u017Eno vytvori\u0165 resultset na po\u017Eadovanej \u00FArovni typu a/alebo s\u00FAbe\u017Enosti ORA-17092=Pr\u00EDkazy JDBC nemo\u017Eno vytv\u00E1ra\u0165 alebo vykon\u00E1va\u0165 na konci spracovania volania ORA-17093=Oper\u00E1cia OCI vr\u00E1tila OCI_SUCCESS_WITH_INFO ORA-17094=Nezhoda verzie typu objektu ORA-17095=Ve\u013Ekos\u0165 cache pr\u00EDkazov nie je nastaven\u00E1 ORA-17096=Pre toto logick\u00E9 spojenie nemo\u017Eno aktivova\u0165 cacheovanie pr\u00EDkazov. ORA-17097=Neplatn\u00FD typ prvku indexovej tabu\u013Eky PL/SQL ORA-17098=Neplatn\u00E1 oper\u00E1cia s pr\u00E1zdnym ve\u013Ek\u00FDm objektom ORA-17099=Neplatn\u00E1 d\u013A\u017Eka po\u013Ea tabu\u013Eky indexu PL/SQL ORA-17100=Neplatn\u00FD datab\u00E1zov\u00FD objekt Java ORA-17101=Neplatn\u00E9 vlastnosti v objekte spolo\u010Dnej oblasti spojenia OCI ORA-17102=Bfile je len na \u010D\u00EDtanie ORA-17103=neplatn\u00FD typ spojenia na n\u00E1vrat cez getConnection. Pou\u017Eite namiesto neho getJavaSqlConnection ORA-17104=Pr\u00EDkaz SQL na vykonanie nem\u00F4\u017Ee by\u0165 pr\u00E1zdny alebo nulov\u00FD ORA-17105=\u010Dasov\u00E1 z\u00F3na rel\u00E1cie spojenia nebola nastaven\u00E1 ORA-17106=\u0161pecifikovan\u00E1 neplatn\u00E1 konfigur\u00E1cia spolo\u010Dnej oblasti pripojen\u00ED ovl\u00E1da\u010Dov JDBC-OCI ORA-17107=zadan\u00FD neplatn\u00FD typ proxy ORA-17108=V defineColumnType nie je uveden\u00E1 maxim\u00E1lna d\u013A\u017Eka ORA-17109=nena\u0161lo sa \u0161tandardn\u00E9 k\u00F3dovanie znakov Java ORA-17110=vykonanie dokon\u010Den\u00E9 s upozornen\u00EDm ORA-17111=Zadan\u00FD neplatn\u00FD \u010Dasov\u00FD limit TTL cache pripojenia ORA-17112=Zadan\u00FD neplatn\u00FD interval pre thread ORA-17113=Hodnota intervalu pre thread je vy\u0161\u0161ia ako hodnota \u010Dasov\u00E9ho limitu cache ORA-17114=nebolo mo\u017En\u00E9 pou\u017Ei\u0165 lok\u00E1lne potvrdenie transakcie v glob\u00E1lnej transakcii ORA-17115=nebolo mo\u017En\u00E9 pou\u017Ei\u0165 lok\u00E1lny rollback transakcie v glob\u00E1lnej transakcii ORA-17116=nebolo mo\u017En\u00E9 zapn\u00FA\u0165 automatick\u00E9 potvrdzovanie v akt\u00EDvnej glob\u00E1lnej transakcii ORA-17117=nebolo mo\u017En\u00E9 nastavi\u0165 bod n\u00E1vratu v akt\u00EDvnej glob\u00E1lnej transakcii ORA-17118=nebolo mo\u017En\u00E9 z\u00EDska\u0165 ID pre pomenovan\u00FD bod n\u00E1vratu ORA-17119=nebolo mo\u017En\u00E9 z\u00EDska\u0165 n\u00E1zov pre nepomenovan\u00FD bod n\u00E1vratu ORA-17120=nebolo mo\u017En\u00E9 nastavi\u0165 bod n\u00E1vratu so zapnut\u00FDm automatick\u00FDm potvrdzovan\u00EDm ORA-17121=nebolo mo\u017En\u00E9 vykona\u0165 rollback na bod n\u00E1vratu so zapnut\u00FDm automatick\u00FDm potvrdzovan\u00EDm ORA-17122=nebolo mo\u017En\u00E9 vykona\u0165 rollback na lok\u00E1lny bod n\u00E1vratu transakcie v glob\u00E1lnej transakcii ORA-17123=Zadan\u00E1 neplatn\u00E1 ve\u013Ekos\u0165 cache pr\u00EDkazov ORA-17124=Zadan\u00FD neplatn\u00FD \u010Dasov\u00FD limit inaktivity cache pripojenia ORA-17125=Nespr\u00E1vny typ pr\u00EDkazu vr\u00E1ten\u00FD explicitnou cache ORA-17126=Pevn\u00FD \u010Dasov\u00FD limit \u010Dakania uplynul ORA-17127=Bol zadan\u00FD neplatn\u00FD pevn\u00FD \u010Dasov\u00FD limit \u010Dakania ORA-17128=Re\u0165azec SQL nie je dopyt ORA-17129=Re\u0165azec SQL nie je pr\u00EDkaz DML ORA-17132=Po\u017Eadovala sa neplatn\u00E1 konverzia ORA-17133=UNUSED ORA-17134=D\u013A\u017Eka pomenovan\u00E9ho parametra v re\u0165azci SQL prekro\u010Dila 32 znakov ORA-17135=N\u00E1zov parametra pou\u017Eit\u00FD v setXXXStream sa v re\u0165azci SQL vyskytuje viackr\u00E1t ORA-17136=Chybne vytvoren\u00E9 DATALINK URL, vysk\u00FA\u0161ajte rad\u0161ej getString() ORA-17137=Cacheovanie pripojenia nie je aktivovan\u00E9 alebo aktivovanie DataSource cez cache nie je platn\u00E9 ORA-17138=Neplatn\u00FD n\u00E1zov cache pripojenia. N\u00E1zov mus\u00ED by\u0165 jednozna\u010Dn\u00FD a platn\u00FD re\u0165azec ORA-17139=Neplatn\u00E9 vlastnosti cache pripojenia ORA-17140=Cache pripojenie s t\u00FDmto n\u00E1zvom cache u\u017E existuje ORA-17141=Cache pripojenie s t\u00FDmto n\u00E1zvom cache neexistuje ORA-17142=Cache pripojenie s t\u00FDmto n\u00E1zvom cache je deaktivovan\u00E9 ORA-17143=V cache pripojen\u00ED sa na\u0161lo neplatn\u00E9 alebo zastaran\u00E9 pripojenie ORA-17144=parameter pr\u00EDkazu sa nevykonal ORA-17145=Bola prijat\u00E1 neplatn\u00E1 udalos\u0165 ONS ORA-17146=Bola prijat\u00E1 neplatn\u00E1 verzia udalosti ONS ORA-17147=Pokus o nastavenie n\u00E1zvu parametra, ktor\u00FD sa nevyskytuje v re\u0165azci SQL ORA-17148=Met\u00F3da je implementovan\u00E1 iba v tenkom ORA-17149=Toto u\u017E je proxy rel\u00E1cia ORA-17150=Nespr\u00E1vne argumenty pre proxy rel\u00E1ciu ORA-17151=Clob je pr\u00EDli\u0161 ve\u013Ek\u00FD na ulo\u017Eenie v re\u0165azci Java ORA-17152=T\u00E1to met\u00F3da je implementovan\u00E1 iba v logick\u00FDch pripojeniach ORA-17153=T\u00E1to met\u00F3da je implementovan\u00E1 iba vo fyzick\u00FDch pripojeniach ORA-17154=Oracle znak nie je mo\u017En\u00E9 mapova\u0165 ku k\u00F3du Unicode ORA-17155=K\u00F3d Unicode nie je mo\u017En\u00E9 mapova\u0165 k Oracle znaku ORA-17156=Ve\u013Ekos\u0165 intern\u00E9ho po\u013Ea pre hodnoty metriky End-to-End ORA-17157=Pomocou met\u00F3dy setString mo\u017Eno spracova\u0165 len re\u0165azce krat\u0161ie ne\u017E 32 766 znakov ORA-17158=trvanie je pre t\u00FAto funkciu neplatn\u00E9 ORA-17159=hodnota metriky pre trasovanie End-to-End je pr\u00EDli\u0161 dlh\u00E1 ORA-17160=poradov\u00E9 \u010D\u00EDslo pre ID kontextu vykonania nespad\u00E1 do rozsahu ORA-17161=Pou\u017Eil sa neplatn\u00FD re\u017Eim transakcie ORA-17162=Nepodporovan\u00E1 hodnota holdability ORA-17163=Met\u00F3du getXAConnection() nemo\u017Eno pou\u017Ei\u0165, ke\u010F je cacheovanie pripojenia aktivovan\u00E9 ORA-17164=Met\u00F3du getXAResource() nemo\u017Eno vola\u0165 z fyzick\u00E9ho pripojenia, ktor\u00E9 m\u00E1 zapnut\u00E9 cacheovanie ORA-17165=Pre toto pripojenie nie je na serveri pr\u00EDtomn\u00FD bal\u00EDk DBMS_JDBC ORA-17166=Nemo\u017Eno vykona\u0165 vyvolanie na z\u00E1klade pr\u00EDkazu PLSQL ORA-17167=Triedy PKI sa nena\u0161li. Pou\u017Eitie funkcie \"connect /\" je podmienen\u00E9 existenciou s\u00FAboru oraclepki.jar v classpath ORA-17168=narazil na probl\u00E9m s utajen\u00FDm \u00FAlo\u017Eiskom. Skontrolujte, \u010Di sa v umiestnen\u00ED wallet nenach\u00E1dza otvoren\u00FD s\u00FAbor wallet (cwallet.sso) a pomocou utility mkstore sa uistite, \u017Ee tento wallet obsahuje spr\u00E1vne doklady ORA-17169=Nemo\u017Eno viaza\u0165 tok s ScrollableResultSet alebo UpdatableResultSet ORA-17170=Priestor n\u00E1zvov nem\u00F4\u017Ee by\u0165 pr\u00E1zdny ORA-17171=D\u013A\u017Eka atrib\u00FAtu nem\u00F4\u017Ee prekro\u010Di\u0165 30 znakov ORA-17172=T\u00E1to hodnota atrib\u00FAtu nem\u00F4\u017Ee prekro\u010Di\u0165 400 znakov ORA-17173=Nie v\u0161etky vr\u00E1ten\u00E9 parametre s\u00FA registrovan\u00E9 ORA-17174=Jedin\u00FD podporovan\u00FD priestor n\u00E1zvov je CLIENTCONTEXT ORA-17175=Chyba po\u010Das konfigurovania vzdialen\u00E9ho objektu ONS ORA-17200=Nie je mo\u017En\u00E9 spr\u00E1vne skonvertova\u0165 re\u0165azec XA open z Java do C ORA-17201=Nie je mo\u017En\u00E9 spr\u00E1vne skonvertova\u0165 re\u0165azec XA close z Java do C ORA-17202=Nie je mo\u017En\u00E9 spr\u00E1vne skonvertova\u0165 n\u00E1zov RM z Java do C ORA-17203=Nie je mo\u017En\u00E9 previes\u0165 typ smern\u00EDka na jlong ORA-17204=Vstupn\u00E9 pole je prikr\u00E1tke na obsiahnutie rukov\u00E4t\u00ED OCI ORA-17205=Zlyhanie pri z\u00EDskavan\u00ED rukov\u00E4te OCISvcCtx z C-XA pomocou xaoSvcCtx ORA-17206=Zlyhanie pri z\u00EDskavan\u00ED rukov\u00E4te OCIEnv z C-XA pomocou xaoEnv ORA-17207=Vlastnos\u0165 tnsEntry nebola nastaven\u00E1 v DataSource ORA-17213=C-XA vr\u00E1tilo XAER_RMERR po\u010Das xa_open ORA-17215=C-XA vr\u00E1tilo XAER_INVAL po\u010Das xa_open ORA-17216=C-XA vr\u00E1tilo XAER_PROTO po\u010Das xa_open ORA-17233=C-XA vr\u00E1tilo XAER_RMERR po\u010Das xa_close ORA-17235=C-XA vr\u00E1tilo XAER_INVAL po\u010Das xa_close ORA-17236=C-XA vr\u00E1tilo XAER_PROTO po\u010Das xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Poru\u0161enie protokolu ORA-17402=O\u010Dak\u00E1va sa iba jedna spr\u00E1va RPA ORA-17403=O\u010Dak\u00E1va sa iba jedna spr\u00E1va RXH ORA-17404=Prijat\u00FDch viac RXD, ako sa o\u010Dak\u00E1valo ORA-17405=D\u013A\u017Eka UAC nie je nulov\u00E1 ORA-17406=Prekro\u010Denie maxim\u00E1lnej d\u013A\u017Eky buffra ORA-17407=neplatn\u00E1 typov\u00E1 reprezent\u00E1cia (setRep) ORA-17408=neplatn\u00E1 typov\u00E1 reprezent\u00E1cia (getRep) ORA-17409=neplatn\u00E1 d\u013A\u017Eka buffra ORA-17410=V sokete u\u017E nie s\u00FA \u010Fal\u0161ie d\u00E1ta na \u010D\u00EDtanie ORA-17411=Nezhoda reprezent\u00E1ci\u00ED d\u00E1tov\u00E9ho typu ORA-17412=Typov\u00E1 d\u013A\u017Eka v\u00E4\u010D\u0161ia ako maximum ORA-17413=Prekro\u010Denie ve\u013Ekosti k\u013E\u00FA\u010Da ORA-17414=Nedostato\u010Dn\u00E1 ve\u013Ekos\u0165 buffra na ulo\u017Eenie n\u00E1zvov st\u013Apcov ORA-17415=Tento typ nie je o\u0161etren\u00FD ORA-17416=FATAL ORA-17417=Probl\u00E9m NLS, nepodarilo sa dek\u00F3dova\u0165 n\u00E1zvy st\u013Apcov ORA-17418=Chyba d\u013A\u017Eky po\u013Ea internej \u0161trukt\u00FAry ORA-17419=Vr\u00E1ten\u00FD neplatn\u00FD po\u010Det st\u013Apcov ORA-17420=Nedefinovan\u00E1 verzia Oracle ORA-17421=Nedefinovan\u00E9 typy alebo spojenie ORA-17422=Neplatn\u00E1 trieda vo factory ORA-17423=Pou\u017Eitie bloku PLSQL bez definovania IOV ORA-17424=Pokus o in\u00FA oper\u00E1ciu radenia ORA-17425=Vr\u00E1tenie toku v bloku PLSQL ORA-17426=V\u00E4zby IN aj OUT s\u00FA NULL ORA-17427=Pou\u017Eitie neiniciovan\u00E9ho OAC ORA-17428=Logon treba vola\u0165 po connect ORA-17429=Treba ma\u0165 aspo\u0148 spojenie na server ORA-17430=Treba by\u0165 prihl\u00E1sen\u00FD na server ORA-17431=Pr\u00EDkaz SQL na syntaktick\u00FA anal\u00FDzu je pr\u00E1zdny ORA-17432=neplatn\u00E9 vo\u013Eby v all7 ORA-17433=neplatn\u00E9 argumenty vo volan\u00ED ORA-17434=nie je v tokovom re\u017Eime ORA-17435=neplatn\u00FD po\u010Det in_out_binds v IOV ORA-17436=neplatn\u00FD po\u010Det outbinds ORA-17437=Chyba v IN/OUT argumentoch bloku PLSQL ORA-17438=Intern\u00E1 - neo\u010Dak\u00E1van\u00E1 hodnota ORA-17439=Neplatn\u00FD typ SQL ORA-17440=DBItem/DBType je pr\u00E1zdny ORA-17441=Verzia Oracle nepodporovan\u00E1. Minim\u00E1lna podporovan\u00E1 verzia je 7.2.3. ORA-17442=Hodnota Refcursor je neplatn\u00E1 ORA-17443=Pr\u00E1zdny pou\u017E\u00EDvate\u013E alebo heslo nepodporovan\u00E9 u THIN ovl\u00E1da\u010Da ORA-17444=Verzia protokolu TTC prijat\u00E1 zo servera nie je podporovan\u00E1 ORA-17445=LOB je u\u017E otvoren\u00FD v tej istej transakcii ORA-17446=LOB je u\u017E zatvoren\u00FD v tej istej transakcii ORA-17447=OALL8 je v nekonzistentnom stave # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_sv.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Internt fel ORA-17002=I/O-undantag ORA-17003=Ogiltigt kolumnindex ORA-17004=Ogiltig kolumntyp ORA-17005=Kolumntypen st\u00F6ds inte ORA-17006=Ogiltigt kolumnnamn ORA-17007=Ogiltig dynamisk kolumn ORA-17008=St\u00E4ngd anslutning ORA-17009=St\u00E4ngd sats ORA-17010=St\u00E4ngd resultatupps\u00E4ttning ORA-17011=Utt\u00F6md resultatupps\u00E4ttning ORA-17012=Parametertypskonflikt ORA-17014=ResultSet.next anropades inte ORA-17015=Satsen avbr\u00F6ts ORA-17016=Satsen \u00F6verskred tidsgr\u00E4nsen ORA-17017=Mark\u00F6ren har redan initierats ORA-17018=Ogiltig mark\u00F6r ORA-17019=Kan bara beskriva en fr\u00E5ga ORA-17020=Ogiltig f\u00F6rh\u00E4mtning av rader ORA-17021=Definitioner saknas ORA-17022=Definitioner saknas i index ORA-17023=Funktionen st\u00F6ds inte ORA-17024=Inga data har l\u00E4sts ORA-17025=Fel i defines.isNull () ORA-17026=Numeriskt spill ORA-17027=Fl\u00F6det har redan st\u00E4ngts ORA-17028=Kan inte ta fram n\u00E5gra nya definitioner f\u00F6rr\u00E4n aktuell resultatupps\u00E4ttning har st\u00E4ngts ORA-17029=setReadOnly: Skrivskyddade anslutningar st\u00F6ds inte ORA-17030=READ_COMMITTED och SERIALIZABLE \u00E4r de enda giltiga transaktionsniv\u00E5erna ORA-17031=setAutoClose: St\u00F6der bara aktivt autost\u00E4ngningsl\u00E4ge ORA-17032=kan inte ge f\u00F6rh\u00E4mtning av rader v\u00E4rdet noll ORA-17033=Felaktigt utformad SQL92-str\u00E4ng i position ORA-17034=Ogiltigt SQL92-token i position ORA-17035=Teckenupps\u00E4ttningen st\u00F6ds inte!! ORA-17036=undantag i OracleNumber ORA-17037=Misslyckades att konvertera mellan UTF8 och UCS2 ORA-17038=Byte-vektorn \u00E4r inte tillr\u00E4ckligt l\u00E5ng ORA-17039=Teckenvektorn \u00E4r inte tillr\u00E4ckligt l\u00E5ng ORA-17040=Delprotokollet m\u00E5ste anges i anslutnings-URL ORA-17041=IN- eller OUT-parameter saknas i index: ORA-17042=Ogiltigt satsv\u00E4rde ORA-17043=Ogiltig maxstorlek f\u00F6r fl\u00F6de ORA-17044=Internt fel: Datavektor har inte tilldelats ORA-17045=Internt fel: Du f\u00F6rs\u00F6kte att h\u00E4mta bindningsv\u00E4rden utanf\u00F6r giltigt satsv\u00E4rde ORA-17046=Internt fel: Ogiltigt index f\u00F6r data\u00E5tkomst ORA-17047=Fel i typbeskrivningsanalys ORA-17048=Odefinierad typ ORA-17049=Of\u00F6renliga java- och sql-objekttyper ORA-17050=s\u00E5dant element finns inte i vektorn ORA-17051=Detta applikationsgr\u00E4nssnitt (API) kan inte anv\u00E4ndas f\u00F6r icke anv\u00E4ndardefinierade typer ORA-17052=Referensen \u00E4r inte giltig ORA-17053=Storleken \u00E4r inte giltig ORA-17054=LOB-pekaren \u00E4r inte giltig ORA-17055=Ett ogiltigt tecken har p\u00E5tr\u00E4ffats i ORA-17056=Teckenupps\u00E4ttningen st\u00F6ds inte (l\u00E4gg till orai18n.jar i klass\u00F6kv\u00E4gen) ORA-17057=LOB \u00E4r st\u00E4ngd ORA-17058=Internt fel: Ogiltig NLS-omvandlingskvot ORA-17059=Kunde inte konvertera till intern representation ORA-17060=Kunde inte konstruera beskrivning ORA-17061=Beskrivning saknas ORA-17062=REFCURSOR \u00E4r ogiltig ORA-17063=F\u00F6rekommer ej i n\u00E5gon transaktion ORA-17064=Syntaxen \u00E4r ogiltig eller databasens namn null ORA-17065=Omvandlingsklassen \u00E4r null ORA-17066=Implementation specifik f\u00F6r \u00E5tkomstskikt kr\u00E4vs ORA-17067=Ogiltig Oracle-URL angavs ORA-17068=Anropet inneh\u00E5ller minst ett ogiltigt argument ORA-17069=Anv\u00E4nd explicit XA-anrop ORA-17070=Datastorleken \u00E4r st\u00F6rre \u00E4n till\u00E5tet f\u00F6r den h\u00E4r typen ORA-17071=St\u00F6rsta till\u00E5tna storlek f\u00F6r VARRAY har \u00F6verskridits ORA-17072=Det v\u00E4rde som infogades ryms inte i kolumnen ORA-17074=ogiltigt namnm\u00F6nster ORA-17075=Ogiltig \u00E5tg\u00E4rd f\u00F6r endast vidarebefordrad resultatupps\u00E4ttning ORA-17076=Ogiltig \u00E5tg\u00E4rd f\u00F6r skrivskyddad resultatupps\u00E4ttning ORA-17077=Kunde inte st\u00E4lla in REF-v\u00E4rde ORA-17078=Kan inte utf\u00F6ra \u00E5tg\u00E4rden eftersom anslutningarna redan \u00E4r \u00F6ppnade ORA-17079=Anv\u00E4ndarreferenserna motsvarar inte de befintliga ORA-17080=ogiltigt batchkommando ORA-17081=fel uppstod vid satsvis bearbetning ORA-17082=Ingen aktuell rad ORA-17083=Inte p\u00E5 den infogade raden ORA-17084=Anropad p\u00E5 den infogade raden ORA-17085=V\u00E4rdekonflikter uppst\u00E5r ORA-17086=Odefinierat kolumnv\u00E4rde p\u00E5 den infogade raden ORA-17087=Ignorerat prestandaf\u00F6rslag: setFetchDirection() ORA-17088=Ogiltig syntax f\u00F6r efterfr\u00E5gad resultatupps\u00E4ttningstyp och samtidighetsniv\u00E5 ORA-17089=internt fel ORA-17090=otill\u00E5ten \u00E5tg\u00E4rd ORA-17091=Kan inte skapa resultatupps\u00E4ttning vid efterfr\u00E5gad typ och/eller samtidighetsniv\u00E5 ORA-17092=JDBC-satser kan inte skapas eller k\u00F6ras vid slutet av anropsbearbetning ORA-17093=OCI-operationen returnerade OCI_SUCCESS_WITH_INFO ORA-17094=Objekttypsversionerna \u00E4r inkompatibla ORA-17095=Storleken p\u00E5 satscachen har inte st\u00E4llts in ORA-17096=Satscachning kan inte aktiveras f\u00F6r den h\u00E4r logiska anslutningen. ORA-17097=Ogiltig elementtyp f\u00F6r PL/SQL-indextabell ORA-17098=Ogiltig tom LOB-\u00E5tg\u00E4rd ORA-17099=Ogiltig vektorl\u00E4ngd f\u00F6r PL/SQL-indextabell ORA-17100=Ogiltigt Java-objekt i databasen ORA-17101=Ogiltiga egenskaper i OCI-objekt f\u00F6r anslutningspool ORA-17102=Bfile \u00E4r skrivskyddad ORA-17103=ogiltig anslutningstyp att returnera via getConnection. Anv\u00E4nd getJavaSqlConnection i st\u00E4llet ORA-17104=Den SQL-sats som ska k\u00F6ras f\u00E5r inte vara tom eller null ORA-17105=tidszon f\u00F6r anslutningssession har inte st\u00E4llts in ORA-17106=ogiltig konfiguration f\u00F6r JDBC-OCI-drivrutinens anslutningspool har angetts ORA-17107=ogiltig proxy-typ angiven ORA-17108=Ingen maxl\u00E4ngd har angetts i defineColumnType ORA-17109=standardteckenupps\u00E4ttning f\u00F6r Java saknas ORA-17110=k\u00F6rningen slutf\u00F6rd med varning ORA-17111=Ogiltig TTL-tidsgr\u00E4ns f\u00F6r anslutningscache har angetts ORA-17112=Ogiltigt tr\u00E5dintervall har angetts ORA-17113=V\u00E4rdet f\u00F6r tr\u00E5dintervall \u00E4r st\u00F6rre \u00E4n v\u00E4rdet f\u00F6r cachetidsgr\u00E4ns ORA-17114=kunde inte anv\u00E4nda lokal transaktionsbekr\u00E4ftelse i en global transaktion ORA-17115=kunde inte anv\u00E4nda lokal transaktions\u00E5terst\u00E4llning i en global transaktion ORA-17116=kunde inte aktivera automatisk bekr\u00E4ftelse i en aktiv global transaktion ORA-17117=kunde inte st\u00E4lla in lagringspunkt i en aktiv global transaktion ORA-17118=kunde inte h\u00E4mta id f\u00F6r namngiven lagringspunkt ORA-17119=kunde inte h\u00E4mta namn f\u00F6r lagringspunkt utan namn ORA-17120=kunde inte st\u00E4lla in en lagringspunkt med aktiverad automatisk bekr\u00E4ftelse ORA-17121=kunde inte \u00E5terst\u00E4lla till en lagringspunkt med aktiverad automatisk bekr\u00E4ftelse ORA-17122=kunde inte \u00E5terst\u00E4lla till en lokal transaktionslagringspunkt i en global transaktion ORA-17123=Ogiltig storlek p\u00E5 satscache har angetts ORA-17124=Ogiltig inaktivitetstidsgr\u00E4ns f\u00F6r anslutningscache har angetts ORA-17125=Felaktig satstyp returnerades av explicit cache ORA-17126=Fast tidsgr\u00E4ns f\u00F6r v\u00E4ntpass \u00F6verskreds ORA-17127=Ogiltig fast tidsgr\u00E4ns f\u00F6r v\u00E4ntpass angavs ORA-17128=SQL-str\u00E4ngen \u00E4r inte en fr\u00E5ga ORA-17129=SQL-str\u00E4ngen \u00E4r inte en DML-sats ORA-17132=Ogiltig omvandling beg\u00E4rdes ORA-17133=UNUSED ORA-17134=Den namngivna parameterns l\u00E4ngd i SQL \u00F6verskred 32 tecken ORA-17135=Parameternamnet som anv\u00E4nds i setXXXStream f\u00F6rekommer fler \u00E4n en g\u00E5ng i SQL ORA-17136=Felaktigt utformat DATALINK URL, f\u00F6rs\u00F6k med getString() i st\u00E4llet ORA-17137=Anslutningscachning \u00E4r inte aktiverad, eller s\u00E5 \u00E4r det inte en giltig datak\u00E4lla f\u00F6r aktiverad cache ORA-17138=Ogiltigt namn f\u00F6r anslutningscache. Det m\u00E5ste vara en giltig och unik str\u00E4ng ORA-17139=Ogiltiga egenskaper f\u00F6r anslutningscache ORA-17140=Det finns redan ett anslutningscache med det h\u00E4r cachenamnet ORA-17141=Det finns inget anslutningscache med det h\u00E4r cachenamnet ORA-17142=Ett anslutningscache med det h\u00E4r cachenamnet \u00E4r avaktiverat ORA-17143=Ogiltig eller inaktuell anslutning hittades i anslutningscache ORA-17144=handtag f\u00F6r sats inte k\u00F6rt ORA-17145=Ogiltig ONS-h\u00E4ndelse har mottagits ORA-17146=Ogiltig ONS-h\u00E4ndelseversion har mottagits ORA-17147=F\u00F6rs\u00F6k att ange ett parameternamn som inte f\u00F6rekommer i SQL ORA-17148=Metoden har endast implementerats i tunn ORA-17149=Det h\u00E4r \u00E4r redan en proxysession ORA-17150=Fel argument f\u00F6r proxysession ORA-17151=CLOB \u00E4r f\u00F6r stort f\u00F6r att lagras i en javastr\u00E4ng ORA-17152=Den h\u00E4r metoden implementeras endast i logiska anslutningar ORA-17153=Den h\u00E4r metoden implementeras endast i fysiska anslutningar ORA-17154=Kan inte mappa Oracle-tecken till Unicode ORA-17155=Kan inte mappa Unicode till Oracle-tecken ORA-17156=Ogiltig matrisstorlek f\u00F6r helt\u00E4ckande nyckelv\u00E4rden ORA-17157=setString kan endast bearbeta str\u00E4ngar kortare \u00E4n 32766 tecken ORA-17158=varaktigheten \u00E4r ogiltig f\u00F6r funktionen ORA-17159=nyckelv\u00E4rdet f\u00F6r helt\u00E4ckande sp\u00E5rning \u00E4r f\u00F6r l\u00E5ngt ORA-17160=id-sekvensnumret f\u00F6r k\u00F6rningskontexten ligger utanf\u00F6r giltigt intervall ORA-17161=Ogiltigt transaktionsl\u00E4ge anv\u00E4nt ORA-17162=V\u00E4rdet f\u00F6r mark\u00F6rh\u00E5llning st\u00F6ds inte ORA-17163=Kan inte anv\u00E4nda getXAConnection() n\u00E4r anslutningscachning \u00E4r aktiverad ORA-17164=Kan inte anropa getXAResource() fr\u00E5n fysisk anslutning med cachning p\u00E5 ORA-17165=DBMS_JDBC-paket inte f\u00F6rinst\u00E4llt i servern f\u00F6r den h\u00E4r anslutningen ORA-17166=Kan inte utf\u00F6ra h\u00E4mtning av en PLSQL-sats ORA-17167=PKI-klasser hittades inte. F\u00F6r att 'connect /'-funktionen ska kunna anv\u00E4ndas m\u00E5ste oraclepki.jar finnas i klass\u00F6kv\u00E4gen ORA-17168=ett problem med det hemliga lagret p\u00E5tr\u00E4ffades. Kontrollera pl\u00E5nboksplaceringen med avseende p\u00E5 n\u00E4rvaron f\u00F6r en \u00F6ppen pl\u00E5nbok (cwallet.sso) och se till att pl\u00E5nboken inneh\u00E5ller r\u00E4tt referens f\u00F6r anv\u00E4ndning av verktyget mkstore ORA-17169=Kan inte binda fl\u00F6det till ScrollableResultSet eller UpdatableResultSet ORA-17170=Namnutrymme m\u00E5ste anges ORA-17171=Attributl\u00E4ngden f\u00E5r inte \u00F6verskrida 30 tecken ORA-17172=Det v\u00E4rdet f\u00F6r attributet f\u00E5r inte \u00F6verskrida 400 tecken ORA-17173=Alla returparametrar har inte registrerats ORA-17174=Det enda namnutrymme som st\u00F6ds \u00E4r CLIENTCONTEXT ORA-17175=Fel vid fj\u00E4rrkonfiguration av ONS ORA-17200=Det gick inte att konvertera \u00F6ppen XA-str\u00E4ng fr\u00E5n Java till C ORA-17201=Det gick inte att konvertera sluten XA-str\u00E4ng fr\u00E5n Java till C ORA-17202=Det gick inte att konvertera RM-namn fr\u00E5n Java till C ORA-17203=Det gick inte att konvertera pekartypen till jlong ORA-17204=Den inmatade vektorn \u00E4r f\u00F6r liten f\u00F6r att rymma OCI-handtag ORA-17205=Det gick inte att h\u00E4mta handtaget OCISvcCtx fr\u00E5n C-XA med xaoSvcCtx ORA-17206=Det gick inte att h\u00E4mta handtaget OCIEnv fr\u00E5n C-XA med xaoEnv ORA-17207=Egenskapen tnsEntry har inte st\u00E4llts in i DataSource ORA-17213=C-XA returnerade XAER_RMERR vid xa_open ORA-17215=C-XA returnerade XAER_INVAL vid xa_open ORA-17216=C-XA returnerade XAER_PROTO vid xa_open ORA-17233=C-XA returnerade XAER_RMERR vid xa_close ORA-17235=C-XA returnerade XAER_INVAL vid xa_close ORA-17236=C-XA returnerade XAER_PROTO vid xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u00D6vertr\u00E4delse av protokoll ORA-17402=Bara ett RPA-meddelande f\u00F6rv\u00E4ntas ORA-17403=Bara ett RXH-meddelande f\u00F6rv\u00E4ntas ORA-17404=Tog emot fler RXD:er \u00E4n f\u00F6rv\u00E4ntat ORA-17405=UAC-l\u00E4ngden \u00E4r inte noll ORA-17406=St\u00F6rsta till\u00E5tna buffertl\u00E4ngd har \u00F6verskridits ORA-17407=ogiltig Typrepresentation(setRep) ORA-17408=ogiltig Typrepresentation(getRep) ORA-17409=ogiltig buffertl\u00E4ngd ORA-17410=Inga fler data att l\u00E4sa fr\u00E5n socket ORA-17411=Datatypsrepresentationerna \u00E4r inkompatibla ORA-17412=St\u00F6rre typl\u00E4ngd \u00E4n maximum ORA-17413=\u00D6verskrider nyckelstorlek ORA-17414=Otillr\u00E4cklig buffertstorlek f\u00F6r att lagra kolumnnamn ORA-17415=Den h\u00E4r typen har inte hanterats ORA-17416=FATAL ORA-17417=NLS-problem: kunde inte avkoda kolumnnamn ORA-17418=F\u00E4ltl\u00E4ngdsfel i intern struktur ORA-17419=Ett ogiltigt antal kolumner returnerades ORA-17420=Oracle-versionen \u00E4r inte definierad ORA-17421=Typer eller anslutning \u00E4r inte definierade ORA-17422=Ogiltig klass i genereringen ORA-17423=Anv\u00E4nder ett PL/SQL-block utan definierad IOV ORA-17424=Du f\u00F6rs\u00F6kte anv\u00E4nda en annan \u00F6vervaknings\u00E5tg\u00E4rd ORA-17425=Returnerar ett fl\u00F6de i PL/SQL-block ORA-17426=B\u00E5de IN- och OUT-bindningar \u00E4r NULL ORA-17427=Anv\u00E4nder oinitierad OAC ORA-17428=Inloggningen m\u00E5ste anropas efter anslutning ORA-17429=M\u00E5ste \u00E5tminstone vara ansluten till servern ORA-17430=M\u00E5ste vara inloggad p\u00E5 servern ORA-17431=Den SQL-sats som ska analyseras \u00E4r null ORA-17432=ogiltiga alternativ i all7 ORA-17433=ogiltiga argument i anrop ORA-17434=ej i direktuppspelningsl\u00E4ge ORA-17435=ogiltigt antal in_out_binds i IOV ORA-17436=ogiltigt antal OUT-parametrar ORA-17437=Fel i IN/OUT-argument i PL/SQL-block ORA-17438=Internt: ov\u00E4ntat v\u00E4rde ORA-17439=Ogiltig SQL-typ ORA-17440=DBItem/DBType \u00E4r null ORA-17441=Oracle-versionen st\u00F6ds inte. Den l\u00E4gsta version som st\u00F6ds \u00E4r 7.2.3. ORA-17442=V\u00E4rdet f\u00F6r REFCURSOR \u00E4r ogiltigt ORA-17443=Anv\u00E4ndare \u00E4r null eller ocks\u00E5 st\u00F6ds inte l\u00F6senordet i drivrutinen THIN ORA-17444=Den version av TTC-protokollet som mottogs fr\u00E5n servern st\u00F6ds inte ORA-17445=LOB \u00E4r redan \u00F6ppen i samma transaktion ORA-17446=LOB \u00E4r redan st\u00E4ngd i samma transaktion ORA-17447=OALL8 \u00E4r i ett inkonsekvent l\u00E4ge # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_th.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E20\u0E32\u0E22\u0E43\u0E19 ORA-17002=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14 IO ORA-17003=\u0E14\u0E31\u0E0A\u0E19\u0E35\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17004=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17005=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17006=\u0E0A\u0E37\u0E48\u0E2D\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17007=\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E41\u0E1A\u0E1A\u0E44\u0E14\u0E19\u0E32\u0E21\u0E34\u0E04\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17008=\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E41\u0E25\u0E49\u0E27 ORA-17009=\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E17\u0E35\u0E48\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E41\u0E25\u0E49\u0E27 ORA-17010=Resultset \u0E17\u0E35\u0E48\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E41\u0E25\u0E49\u0E27 ORA-17011=Resultset \u0E17\u0E35\u0E48\u0E40\u0E25\u0E34\u0E01\u0E43\u0E0A\u0E49 ORA-17012=\u0E02\u0E49\u0E2D\u0E02\u0E31\u0E14\u0E41\u0E22\u0E49\u0E07\u0E02\u0E2D\u0E07\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E1E\u0E32\u0E23\u0E32\u0E21\u0E34\u0E40\u0E15\u0E2D\u0E23\u0E4C ORA-17014=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49 ResultSet.next ORA-17015=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E41\u0E25\u0E49\u0E27 ORA-17016=\u0E2B\u0E21\u0E14\u0E40\u0E27\u0E25\u0E32\u0E02\u0E2D\u0E07\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E19\u0E35\u0E49\u0E41\u0E25\u0E49\u0E27 ORA-17017=\u0E40\u0E23\u0E34\u0E48\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E40\u0E04\u0E2D\u0E23\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C\u0E41\u0E25\u0E49\u0E27 ORA-17018=\u0E40\u0E04\u0E2D\u0E23\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17019=\u0E2D\u0E18\u0E34\u0E1A\u0E32\u0E22\u0E44\u0E14\u0E49\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E01\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E2A\u0E37\u0E1A\u0E04\u0E49\u0E19 ORA-17020=\u0E01\u0E32\u0E23\u0E14\u0E36\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E16\u0E27\u0E25\u0E48\u0E27\u0E07\u0E2B\u0E19\u0E49\u0E32\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17021=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14 ORA-17022=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E17\u0E35\u0E48\u0E14\u0E31\u0E0A\u0E19\u0E35 ORA-17023=\u0E04\u0E38\u0E13\u0E2A\u0E21\u0E1A\u0E31\u0E15\u0E34\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A ORA-17024=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E2D\u0E48\u0E32\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 ORA-17025=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19 defines.isNull () ORA-17026=\u0E40\u0E01\u0E34\u0E19\u0E08\u0E33\u0E19\u0E27\u0E19 ORA-17027=\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E2A\u0E15\u0E23\u0E35\u0E21\u0E41\u0E25\u0E49\u0E27 ORA-17028=\u0E40\u0E23\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E43\u0E2B\u0E21\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 \u0E08\u0E19\u0E01\u0E27\u0E48\u0E32\u0E08\u0E30\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14 ResultSet \u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19 ORA-17029=setReadOnly: \u0E43\u0E0A\u0E49\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E41\u0E1A\u0E1A\u0E2D\u0E48\u0E32\u0E19\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E14\u0E35\u0E22\u0E27\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17030=\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E21\u0E35\u0E40\u0E1E\u0E35\u0E22\u0E07 READ_COMMITTED \u0E41\u0E25\u0E30 SERIALIZABLE ORA-17031=setAutoClose: \u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49\u0E43\u0E19\u0E01\u0E23\u0E13\u0E35\u0E17\u0E35\u0E48\u0E42\u0E2B\u0E21\u0E14\u0E1B\u0E34\u0E14\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E40\u0E1B\u0E47\u0E19 '\u0E40\u0E1B\u0E34\u0E14' ORA-17032=\u0E01\u0E32\u0E23\u0E14\u0E36\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E16\u0E27\u0E25\u0E48\u0E27\u0E07\u0E2B\u0E19\u0E49\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E28\u0E39\u0E19\u0E22\u0E4C\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17033=\u0E1E\u0E1A\u0E2A\u0E15\u0E23\u0E34\u0E07 SQL92 \u0E17\u0E35\u0E48\u0E21\u0E35\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07 ORA-17034=\u0E1E\u0E1A\u0E42\u0E17\u0E40\u0E04\u0E47\u0E19 SQL92 \u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E17\u0E35\u0E48\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07 ORA-17035=\u0E43\u0E0A\u0E49\u0E0A\u0E38\u0E14\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17036=\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19 OracleNumber ORA-17037=\u0E41\u0E1B\u0E25\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07 UTF8 \u0E01\u0E31\u0E1A UCS2 \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17038=\u0E02\u0E19\u0E32\u0E14\u0E2D\u0E32\u0E40\u0E23\u0E22\u0E4C\u0E02\u0E2D\u0E07 Byte \u0E22\u0E32\u0E27\u0E44\u0E21\u0E48\u0E1E\u0E2D ORA-17039=\u0E02\u0E19\u0E32\u0E14\u0E2D\u0E32\u0E40\u0E23\u0E22\u0E4C\u0E02\u0E2D\u0E07 Char \u0E22\u0E32\u0E27\u0E44\u0E21\u0E48\u0E1E\u0E2D ORA-17040=\u0E15\u0E49\u0E2D\u0E07\u0E23\u0E30\u0E1A\u0E38\u0E42\u0E1B\u0E23\u0E42\u0E15\u0E04\u0E2D\u0E25\u0E22\u0E48\u0E2D\u0E22\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E1C\u0E48\u0E32\u0E19\u0E17\u0E32\u0E07 URL ORA-17041=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E1E\u0E32\u0E23\u0E32\u0E21\u0E34\u0E40\u0E15\u0E2D\u0E23\u0E4C IN \u0E2B\u0E23\u0E37\u0E2D OUT \u0E17\u0E35\u0E48\u0E14\u0E31\u0E0A\u0E19\u0E35: ORA-17042=\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E41\u0E1A\u0E17\u0E0A\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17043=\u0E02\u0E19\u0E32\u0E14\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14\u0E02\u0E2D\u0E07\u0E2A\u0E15\u0E23\u0E35\u0E21\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17044=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E20\u0E32\u0E22\u0E43\u0E19: \u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E2A\u0E23\u0E23\u0E2D\u0E32\u0E40\u0E23\u0E22\u0E4C\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 ORA-17045=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E20\u0E32\u0E22\u0E43\u0E19: \u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E04\u0E48\u0E32\u0E15\u0E31\u0E27\u0E41\u0E1B\u0E23\u0E44\u0E1A\u0E19\u0E14\u0E4C\u0E19\u0E2D\u0E01\u0E40\u0E2B\u0E19\u0E37\u0E2D\u0E08\u0E32\u0E01\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E41\u0E1A\u0E17\u0E0A\u0E4C ORA-17046=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E20\u0E32\u0E22\u0E43\u0E19: \u0E14\u0E31\u0E0A\u0E19\u0E35\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E02\u0E49\u0E32\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17047=\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19\u0E01\u0E32\u0E23\u0E1E\u0E32\u0E23\u0E4C\u0E0B Descriptor \u0E02\u0E2D\u0E07\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17 ORA-17048=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49 ORA-17049=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E2D\u0E2D\u0E1A\u0E40\u0E08\u0E01\u0E15\u0E4C java \u0E41\u0E25\u0E30 sql \u0E44\u0E21\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E19 ORA-17050=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2D\u0E35\u0E25\u0E34\u0E40\u0E21\u0E19\u0E15\u0E4C\u0E14\u0E31\u0E07\u0E01\u0E25\u0E48\u0E32\u0E27\u0E43\u0E19\u0E40\u0E27\u0E01\u0E40\u0E15\u0E2D\u0E23\u0E4C ORA-17051=API \u0E19\u0E35\u0E49\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E2D\u0E37\u0E48\u0E19\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48 UDT \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17052=ref \u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17053=\u0E02\u0E19\u0E32\u0E14\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17054=\u0E42\u0E25\u0E40\u0E04\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E02\u0E2D\u0E07 LOB \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17055=\u0E1E\u0E1A\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E19 ORA-17056=\u0E0A\u0E38\u0E14\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 (\u0E23\u0E30\u0E1A\u0E38 orai18n.jar \u0E43\u0E19\u0E04\u0E25\u0E32\u0E2A\u0E1E\u0E32\u0E18) ORA-17057=\u0E1B\u0E34\u0E14 LOB \u0E41\u0E25\u0E49\u0E27 ORA-17058=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E20\u0E32\u0E22\u0E43\u0E19: \u0E2D\u0E31\u0E15\u0E23\u0E32\u0E2A\u0E48\u0E27\u0E19\u0E01\u0E32\u0E23\u0E41\u0E1B\u0E25\u0E07\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07 NLS \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17059=\u0E41\u0E1B\u0E25\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E41\u0E17\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E20\u0E32\u0E22\u0E43\u0E19\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17060=\u0E2A\u0E23\u0E49\u0E32\u0E07 Descriptor \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17061=\u0E44\u0E21\u0E48\u0E21\u0E35 Descriptor ORA-17062=Ref cursor \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17063=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23 ORA-17064=\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 \u0E2B\u0E23\u0E37\u0E2D\u0E0A\u0E37\u0E48\u0E2D\u0E10\u0E32\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1B\u0E47\u0E19\u0E19\u0E31\u0E25 ORA-17065=\u0E04\u0E25\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E41\u0E1B\u0E25\u0E07\u0E04\u0E48\u0E32\u0E40\u0E1B\u0E47\u0E19\u0E19\u0E31\u0E25 ORA-17066=\u0E15\u0E49\u0E2D\u0E07\u0E23\u0E30\u0E1A\u0E38\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E02\u0E2D\u0E07\u0E0A\u0E31\u0E49\u0E19\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 ORA-17067=Oracle URL \u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17068=\u0E1E\u0E1A\u0E2D\u0E32\u0E23\u0E4C\u0E01\u0E34\u0E27\u0E40\u0E21\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49 ORA-17069=\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49 XA \u0E42\u0E14\u0E22\u0E15\u0E23\u0E07 ORA-17070=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E40\u0E01\u0E34\u0E19\u0E01\u0E27\u0E48\u0E32\u0E02\u0E19\u0E32\u0E14\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14\u0E02\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E19\u0E35\u0E49 ORA-17071=\u0E40\u0E01\u0E34\u0E19\u0E01\u0E27\u0E48\u0E32\u0E02\u0E35\u0E14\u0E08\u0E33\u0E01\u0E31\u0E14\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14\u0E02\u0E2D\u0E07 VARRAY ORA-17072=\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E41\u0E17\u0E23\u0E01\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E43\u0E2B\u0E0D\u0E48\u0E01\u0E27\u0E48\u0E32\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C ORA-17074=\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17075=\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 'resultset \u0E41\u0E1A\u0E1A\u0E2A\u0E48\u0E07\u0E15\u0E48\u0E2D\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E14\u0E35\u0E22\u0E27' \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17076=\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 'resultset \u0E41\u0E1A\u0E1A\u0E2D\u0E48\u0E32\u0E19\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E14\u0E35\u0E22\u0E27' \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17077=\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32 REF \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17078=\u0E40\u0E23\u0E34\u0E48\u0E21\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 \u0E40\u0E19\u0E37\u0E48\u0E2D\u0E07\u0E08\u0E32\u0E01\u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E41\u0E25\u0E49\u0E27 ORA-17079=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E44\u0E21\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48 ORA-17080=\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E43\u0E19\u0E41\u0E1A\u0E17\u0E0A\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17081=\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E02\u0E13\u0E30\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E41\u0E1A\u0E17\u0E0A\u0E4C ORA-17082=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E41\u0E16\u0E27\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19 ORA-17083=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E41\u0E16\u0E27\u0E17\u0E35\u0E48\u0E41\u0E17\u0E23\u0E01 ORA-17084=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49\u0E41\u0E16\u0E27\u0E17\u0E35\u0E48\u0E41\u0E17\u0E23\u0E01 ORA-17085=\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E02\u0E31\u0E14\u0E41\u0E22\u0E49\u0E07\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A\u0E04\u0E48\u0E32 ORA-17086=\u0E04\u0E48\u0E32\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E43\u0E19\u0E41\u0E16\u0E27\u0E17\u0E35\u0E48\u0E41\u0E17\u0E23\u0E01 ORA-17087=\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E49\u0E04\u0E33\u0E41\u0E19\u0E30\u0E19\u0E33\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1B\u0E23\u0E30\u0E2A\u0E34\u0E17\u0E18\u0E34\u0E20\u0E32\u0E1E: setFetchDirection() ORA-17088=\u0E44\u0E21\u0E48\u0E2A\u0E19\u0E31\u0E1A\u0E2A\u0E19\u0E38\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E02\u0E2D\u0E07\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E41\u0E25\u0E30\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E01\u0E31\u0E19\u0E02\u0E2D\u0E07 resultset \u0E17\u0E35\u0E48\u0E2A\u0E48\u0E07\u0E04\u0E33\u0E02\u0E2D ORA-17089=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E20\u0E32\u0E22\u0E43\u0E19 ORA-17090=\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17091=\u0E2A\u0E23\u0E49\u0E32\u0E07 resultset \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E41\u0E25\u0E30/\u0E2B\u0E23\u0E37\u0E2D\u0E17\u0E35\u0E48\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E01\u0E31\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E48\u0E07\u0E04\u0E33\u0E02\u0E2D\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17092=\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E23\u0E31\u0E19\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 JDBC \u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E01\u0E32\u0E23\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E49\u0E27\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17093=\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 OCI \u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19 OCI_SUCCESS_WITH_INFO ORA-17094=\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E2D\u0E2D\u0E1A\u0E40\u0E08\u0E01\u0E15\u0E4C\u0E44\u0E21\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E19 ORA-17095=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E02\u0E19\u0E32\u0E14\u0E41\u0E04\u0E0A\u0E02\u0E2D\u0E07\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 ORA-17096=\u0E43\u0E0A\u0E49\u0E41\u0E04\u0E0A\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E01\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E41\u0E1A\u0E1A\u0E25\u0E2D\u0E08\u0E34\u0E04\u0E31\u0E25\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17097=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E2D\u0E35\u0E25\u0E34\u0E40\u0E21\u0E19\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E15\u0E32\u0E23\u0E32\u0E07\u0E14\u0E31\u0E0A\u0E19\u0E35 PL/SQL \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17098=\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 lob \u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17099=\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E2D\u0E32\u0E40\u0E23\u0E22\u0E4C\u0E02\u0E2D\u0E07\u0E15\u0E32\u0E23\u0E32\u0E07\u0E14\u0E31\u0E0A\u0E19\u0E35 PL/SQL \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17100=\u0E08\u0E32\u0E27\u0E32\u0E2D\u0E2D\u0E1A\u0E40\u0E08\u0E01\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E10\u0E32\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17101=\u0E04\u0E38\u0E13\u0E2A\u0E21\u0E1A\u0E31\u0E15\u0E34\u0E02\u0E2D\u0E07\u0E2D\u0E2D\u0E1A\u0E40\u0E08\u0E01\u0E15\u0E4C\u0E1E\u0E39\u0E25\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D OCI \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17102=Bfile \u0E43\u0E0A\u0E49\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2D\u0E48\u0E32\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E14\u0E35\u0E22\u0E27 ORA-17103=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E08\u0E30\u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E1C\u0E48\u0E32\u0E19 getConnection \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 \u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49 getJavaSqlConnection \u0E41\u0E17\u0E19 ORA-17104=\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 SQL \u0E17\u0E35\u0E48\u0E08\u0E30\u0E23\u0E31\u0E19\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E21\u0E48\u0E40\u0E27\u0E49\u0E19\u0E27\u0E48\u0E32\u0E07\u0E44\u0E27\u0E49\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E1B\u0E47\u0E19\u0E19\u0E31\u0E25 ORA-17105=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E42\u0E0B\u0E19\u0E40\u0E27\u0E25\u0E32\u0E02\u0E2D\u0E07\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D ORA-17106=\u0E23\u0E30\u0E1A\u0E38\u0E04\u0E2D\u0E19\u0E1F\u0E34\u0E40\u0E01\u0E2D\u0E40\u0E23\u0E0A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E1E\u0E39\u0E25\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E44\u0E14\u0E23\u0E40\u0E27\u0E2D\u0E23\u0E4C JDBC-OCI \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17107=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E1E\u0E23\u0E47\u0E2D\u0E01\u0E0B\u0E35\u0E48\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17108=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E30\u0E1A\u0E38\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14\u0E43\u0E19 defineColumnType ORA-17109=\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E23\u0E2B\u0E31\u0E2A\u0E02\u0E2D\u0E07\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E08\u0E32\u0E27\u0E32\u0E41\u0E1A\u0E1A\u0E21\u0E32\u0E15\u0E23\u0E10\u0E32\u0E19 ORA-17110=\u0E01\u0E32\u0E23\u0E23\u0E31\u0E19\u0E40\u0E2A\u0E23\u0E47\u0E08\u0E2A\u0E21\u0E1A\u0E39\u0E23\u0E13\u0E4C\u0E42\u0E14\u0E22\u0E21\u0E35\u0E04\u0E33\u0E40\u0E15\u0E37\u0E2D\u0E19 ORA-17111=\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E17\u0E21\u0E4C\u0E40\u0E2D\u0E32\u0E15\u0E4C TTL \u0E02\u0E2D\u0E07\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17112=\u0E23\u0E30\u0E1A\u0E38\u0E23\u0E30\u0E22\u0E30\u0E40\u0E27\u0E25\u0E32\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E40\u0E18\u0E23\u0E14\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17113=\u0E04\u0E48\u0E32\u0E23\u0E30\u0E22\u0E30\u0E40\u0E27\u0E25\u0E32\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E40\u0E18\u0E23\u0E14\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E04\u0E48\u0E32\u0E44\u0E17\u0E21\u0E4C\u0E40\u0E2D\u0E32\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E41\u0E04\u0E0A ORA-17114=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E04\u0E2D\u0E21\u0E21\u0E34\u0E15\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07\u0E23\u0E30\u0E1A\u0E1A\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E23\u0E48\u0E27\u0E21 ORA-17115=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E23\u0E25\u0E41\u0E1A\u0E47\u0E04\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07\u0E23\u0E30\u0E1A\u0E1A\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E23\u0E48\u0E27\u0E21 ORA-17116=\u0E40\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E04\u0E2D\u0E21\u0E21\u0E34\u0E15\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E23\u0E48\u0E27\u0E21\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E2D\u0E22\u0E39\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17117=\u0E01\u0E33\u0E2B\u0E19\u0E14 Savepoint \u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E23\u0E48\u0E27\u0E21\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E2D\u0E22\u0E39\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17118=\u0E40\u0E23\u0E35\u0E22\u0E01 ID \u0E02\u0E2D\u0E07 Savepoint \u0E17\u0E35\u0E48\u0E15\u0E31\u0E49\u0E07\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E27\u0E49\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17119=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E23\u0E35\u0E22\u0E01\u0E0A\u0E37\u0E48\u0E2D\u0E02\u0E2D\u0E07 Savepoint \u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E15\u0E31\u0E49\u0E07\u0E0A\u0E37\u0E48\u0E2D\u0E44\u0E27\u0E49 ORA-17120=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E01\u0E33\u0E2B\u0E19\u0E14 Savepoint \u0E02\u0E13\u0E30\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E01\u0E32\u0E23\u0E04\u0E2D\u0E21\u0E21\u0E34\u0E15\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34 ORA-17121=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E23\u0E25\u0E41\u0E1A\u0E47\u0E04\u0E44\u0E1B\u0E22\u0E31\u0E07 Savepoint \u0E02\u0E13\u0E30\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E01\u0E32\u0E23\u0E04\u0E2D\u0E21\u0E21\u0E34\u0E15\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34 ORA-17122=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E42\u0E23\u0E25\u0E41\u0E1A\u0E47\u0E04\u0E01\u0E25\u0E31\u0E1A\u0E44\u0E1B\u0E17\u0E35\u0E48 Savepoint \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07\u0E23\u0E30\u0E1A\u0E1A\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E23\u0E48\u0E27\u0E21 ORA-17123=\u0E23\u0E30\u0E1A\u0E38\u0E02\u0E19\u0E32\u0E14\u0E41\u0E04\u0E0A\u0E02\u0E2D\u0E07\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17124=\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E17\u0E21\u0E4C\u0E40\u0E2D\u0E32\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E0A\u0E48\u0E27\u0E07\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E43\u0E19\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17125=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E41\u0E04\u0E0A\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E41\u0E19\u0E48\u0E0A\u0E31\u0E14\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17126=\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E44\u0E1B\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E44\u0E17\u0E21\u0E4C\u0E40\u0E2D\u0E32\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E23\u0E2D\u0E41\u0E1A\u0E1A\u0E04\u0E07\u0E17\u0E35\u0E48 ORA-17127=\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E17\u0E21\u0E4C\u0E40\u0E2D\u0E32\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E23\u0E2D\u0E41\u0E1A\u0E1A\u0E04\u0E07\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17128=\u0E2A\u0E15\u0E23\u0E34\u0E07 SQL \u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E01\u0E32\u0E23\u0E2A\u0E37\u0E1A\u0E04\u0E49\u0E19 ORA-17129=\u0E2A\u0E15\u0E23\u0E34\u0E07 SQL \u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 DML ORA-17132=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E2A\u0E48\u0E07\u0E04\u0E33\u0E02\u0E2D\u0E41\u0E1B\u0E25\u0E07\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17133=UNUSED ORA-17134=\u0E1E\u0E32\u0E23\u0E32\u0E21\u0E34\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E0A\u0E37\u0E48\u0E2D\u0E43\u0E19 SQL \u0E21\u0E35\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E40\u0E01\u0E34\u0E19 32 \u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23 ORA-17135=\u0E0A\u0E37\u0E48\u0E2D\u0E1E\u0E32\u0E23\u0E32\u0E21\u0E34\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E43\u0E19 setXXXStream \u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E43\u0E19 SQL \u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E41\u0E2B\u0E48\u0E07 ORA-17136=DATALINK URL \u0E21\u0E35\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 \u0E42\u0E1B\u0E23\u0E14\u0E25\u0E2D\u0E07\u0E43\u0E0A\u0E49 getString() \u0E41\u0E17\u0E19 ORA-17137=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D \u0E2B\u0E23\u0E37\u0E2D\u0E17\u0E35\u0E48\u0E21\u0E32\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07\u0E41\u0E04\u0E0A\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17138=\u0E0A\u0E37\u0E48\u0E2D\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 \u0E0A\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E41\u0E25\u0E30\u0E44\u0E21\u0E48\u0E0B\u0E49\u0E33\u0E01\u0E31\u0E19 ORA-17139=\u0E04\u0E38\u0E13\u0E2A\u0E21\u0E1A\u0E31\u0E15\u0E34\u0E02\u0E2D\u0E07\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17140=\u0E21\u0E35\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E0A\u0E37\u0E48\u0E2D\u0E19\u0E35\u0E49\u0E41\u0E25\u0E49\u0E27 ORA-17141=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E0A\u0E37\u0E48\u0E2D\u0E19\u0E35\u0E49 ORA-17142=\u0E40\u0E25\u0E34\u0E01\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E0A\u0E37\u0E48\u0E2D\u0E19\u0E35\u0E49\u0E41\u0E25\u0E49\u0E27 ORA-17143=\u0E1E\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E43\u0E19\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D ORA-17144=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E19\u0E41\u0E2E\u0E19\u0E40\u0E14\u0E34\u0E25\u0E0A\u0E38\u0E14\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 ORA-17145=\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E35\u0E40\u0E27\u0E19\u0E15\u0E4C ONS \u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17146=\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E2D\u0E35\u0E40\u0E27\u0E19\u0E15\u0E4C ONS \u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17147=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E1E\u0E22\u0E32\u0E22\u0E32\u0E21\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E0A\u0E37\u0E48\u0E2D\u0E1E\u0E32\u0E23\u0E32\u0E21\u0E34\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E21\u0E35\u0E43\u0E19 SQL ORA-17148=\u0E43\u0E0A\u0E49\u0E40\u0E21\u0E17\u0E18\u0E2D\u0E14\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19\u0E18\u0E34\u0E19 ORA-17149=\u0E21\u0E35\u0E04\u0E48\u0E32\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E1E\u0E23\u0E47\u0E2D\u0E01\u0E0B\u0E35\u0E48\u0E41\u0E25\u0E49\u0E27 ORA-17150=\u0E2D\u0E32\u0E23\u0E4C\u0E01\u0E34\u0E27\u0E40\u0E21\u0E19\u0E15\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E1E\u0E23\u0E47\u0E2D\u0E01\u0E0B\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17151=CLOB \u0E43\u0E2B\u0E0D\u0E48\u0E40\u0E01\u0E34\u0E19\u0E01\u0E27\u0E48\u0E32\u0E17\u0E35\u0E48\u0E08\u0E30\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E43\u0E19\u0E08\u0E32\u0E27\u0E32\u0E2A\u0E15\u0E23\u0E34\u0E07 ORA-17152=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E40\u0E21\u0E17\u0E18\u0E2D\u0E14\u0E19\u0E35\u0E49\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E41\u0E1A\u0E1A\u0E25\u0E2D\u0E08\u0E34\u0E04\u0E31\u0E25\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 ORA-17153=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E40\u0E21\u0E17\u0E18\u0E2D\u0E14\u0E19\u0E35\u0E49\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E08\u0E23\u0E34\u0E07\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 ORA-17154=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E41\u0E21\u0E1B\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E02\u0E2D\u0E07 Oracle \u0E01\u0E31\u0E1A\u0E22\u0E39\u0E19\u0E34\u0E42\u0E04\u0E49\u0E14 ORA-17155=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E41\u0E21\u0E1B\u0E22\u0E39\u0E19\u0E34\u0E42\u0E04\u0E49\u0E14\u0E01\u0E31\u0E1A\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E02\u0E2D\u0E07 Oracle ORA-17156=\u0E02\u0E19\u0E32\u0E14\u0E2D\u0E32\u0E40\u0E23\u0E22\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E48\u0E32\u0E40\u0E21\u0E15\u0E23\u0E34\u0E04\u0E41\u0E1A\u0E1A\u0E04\u0E23\u0E1A\u0E27\u0E07\u0E08\u0E23\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17157=setString \u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 32766 \u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 ORA-17158=\u0E23\u0E30\u0E22\u0E30\u0E40\u0E27\u0E25\u0E32\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1F\u0E31\u0E07\u0E01\u0E4C\u0E0A\u0E31\u0E19\u0E19\u0E35\u0E49 ORA-17159=\u0E04\u0E48\u0E32\u0E40\u0E21\u0E15\u0E23\u0E34\u0E04\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E32\u0E21\u0E41\u0E1A\u0E1A\u0E04\u0E23\u0E1A\u0E27\u0E07\u0E08\u0E23\u0E22\u0E32\u0E27\u0E40\u0E01\u0E34\u0E19\u0E44\u0E1B ORA-17160=\u0E40\u0E25\u0E02\u0E25\u0E33\u0E14\u0E31\u0E1A\u0E02\u0E2D\u0E07 ID \u0E04\u0E2D\u0E19\u0E40\u0E17\u0E47\u0E01\u0E0B\u0E4C\u0E01\u0E32\u0E23\u0E23\u0E31\u0E19\u0E44\u0E21\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07 ORA-17161=\u0E43\u0E0A\u0E49\u0E42\u0E2B\u0E21\u0E14\u0E01\u0E32\u0E23\u0E17\u0E33\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17162=\u0E44\u0E21\u0E48\u0E23\u0E2D\u0E07\u0E23\u0E31\u0E1A\u0E04\u0E48\u0E32\u0E01\u0E32\u0E23\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 ORA-17163=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49 getXAConnection() \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E21\u0E35\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E41\u0E04\u0E0A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D ORA-17164=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E23\u0E35\u0E22\u0E01 getXAResource() \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E08\u0E23\u0E34\u0E07\u0E17\u0E35\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E41\u0E04\u0E0A ORA-17165=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E41\u0E1E\u0E47\u0E04\u0E40\u0E01\u0E08 DBMS_JDBC \u0E25\u0E48\u0E27\u0E07\u0E2B\u0E19\u0E49\u0E32\u0E43\u0E19\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E19\u0E35\u0E49 ORA-17166=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E14\u0E36\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E08\u0E32\u0E01\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 PLSQL ORA-17167=\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E04\u0E25\u0E32\u0E2A PKI \u0E2B\u0E32\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E1F\u0E31\u0E07\u0E01\u0E4C\u0E0A\u0E31\u0E19 'connect /' \u0E44\u0E1F\u0E25\u0E4C oraclepki.jar \u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E04\u0E25\u0E32\u0E2A\u0E1E\u0E32\u0E18 ORA-17168=\u0E1E\u0E1A\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E01\u0E31\u0E1A\u0E17\u0E35\u0E48\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E09\u0E1E\u0E32\u0E30 \u0E42\u0E1B\u0E23\u0E14\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E27\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E15\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E39\u0E27\u0E48\u0E32\u0E21\u0E35\u0E27\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E15\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E34\u0E14\u0E2D\u0E22\u0E39\u0E48 (cwallet.sso) \u0E41\u0E25\u0E30\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E27\u0E48\u0E32\u0E27\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E15\u0E19\u0E35\u0E49\u0E21\u0E35\u0E0A\u0E37\u0E48\u0E2D\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E30\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 \u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49\u0E22\u0E39\u0E17\u0E34\u0E25\u0E34\u0E15\u0E35 mkstore ORA-17169=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E2A\u0E15\u0E23\u0E35\u0E21\u0E01\u0E31\u0E1A ScrollableResultSet \u0E2B\u0E23\u0E37\u0E2D UpdatableResultSet ORA-17170=\u0E40\u0E19\u0E21\u0E2A\u0E40\u0E1B\u0E0B\u0E15\u0E49\u0E2D\u0E07\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 ORA-17171=\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E02\u0E2D\u0E07\u0E41\u0E2D\u0E17\u0E17\u0E23\u0E34\u0E1A\u0E34\u0E27\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 30 \u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23 ORA-17172=\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E41\u0E2D\u0E17\u0E17\u0E23\u0E34\u0E1A\u0E34\u0E27\u0E15\u0E49\u0E2D\u0E07\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 400 \u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23 ORA-17173=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E23\u0E35\u0E08\u0E34\u0E2A\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E1E\u0E32\u0E23\u0E32\u0E21\u0E34\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E1A\u0E32\u0E07\u0E04\u0E48\u0E32 ORA-17174=\u0E40\u0E19\u0E21\u0E2A\u0E40\u0E1B\u0E0B\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49\u0E21\u0E35\u0E40\u0E1E\u0E35\u0E22\u0E07 CLIENTCONTEXT \u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 ORA-17175=\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E02\u0E13\u0E30\u0E04\u0E2D\u0E19\u0E1F\u0E34\u0E40\u0E01\u0E2D\u0E23\u0E4C ONS \u0E23\u0E30\u0E22\u0E30\u0E44\u0E01\u0E25 ORA-17200=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E41\u0E1B\u0E25\u0E07\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E40\u0E1B\u0E34\u0E14\u0E02\u0E2D\u0E07 XA \u0E08\u0E32\u0E01 Java \u0E40\u0E1B\u0E47\u0E19 C \u0E2D\u0E22\u0E48\u0E32\u0E07\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17201=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E41\u0E1B\u0E25\u0E07\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E1B\u0E34\u0E14\u0E02\u0E2D\u0E07 XA \u0E08\u0E32\u0E01 Java \u0E40\u0E1B\u0E47\u0E19 C \u0E2D\u0E22\u0E48\u0E32\u0E07\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17202=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E41\u0E1B\u0E25\u0E07\u0E0A\u0E37\u0E48\u0E2D RM \u0E08\u0E32\u0E01 Java \u0E40\u0E1B\u0E47\u0E19 C \u0E44\u0E14\u0E49\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17203=\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E1E\u0E2D\u0E22\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E40\u0E1B\u0E47\u0E19 jlong \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17204=\u0E2D\u0E32\u0E40\u0E23\u0E22\u0E4C\u0E04\u0E48\u0E32\u0E2D\u0E34\u0E19\u0E1E\u0E38\u0E15\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E40\u0E25\u0E47\u0E01\u0E40\u0E01\u0E34\u0E19\u0E44\u0E1B\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E01\u0E47\u0E1A\u0E41\u0E2E\u0E19\u0E40\u0E14\u0E34\u0E25 OCI ORA-17205=\u0E23\u0E31\u0E1A\u0E41\u0E2E\u0E19\u0E40\u0E14\u0E34\u0E25 OCISvcCtx \u0E08\u0E32\u0E01 C-XA \u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49 xaoSvcCtx \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17206=\u0E23\u0E31\u0E1A\u0E41\u0E2E\u0E19\u0E40\u0E14\u0E34\u0E25 OCIEnv \u0E08\u0E32\u0E01 C-XA \u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49 xaoEnv \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17207=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E38\u0E13\u0E2A\u0E21\u0E1A\u0E31\u0E15\u0E34 tnsEntry \u0E44\u0E27\u0E49\u0E43\u0E19 DataSource ORA-17213=C-XA \u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19 XAER_RMERR \u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 xa_open ORA-17215=C-XA \u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19 XAER_INVAL \u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 xa_open ORA-17216=C-XA \u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19 XAER_PROTO \u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 xa_open ORA-17233=C-XA \u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19 XAER_RMERR \u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 xa_close ORA-17235=C-XA \u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19 XAER_INVAL \u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 xa_close ORA-17236=C-XA \u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19 XAER_PROTO \u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07 xa_close # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u0E01\u0E32\u0E23\u0E25\u0E30\u0E40\u0E21\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E42\u0E1B\u0E23\u0E42\u0E15\u0E04\u0E2D\u0E25 ORA-17402=\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21 RPA \u0E40\u0E1E\u0E35\u0E22\u0E07\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21 ORA-17403=\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21 RXH \u0E40\u0E1E\u0E35\u0E22\u0E07\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21 ORA-17404=\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A RXD \u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32\u0E17\u0E35\u0E48\u0E04\u0E32\u0E14\u0E44\u0E27\u0E49 ORA-17405=\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E02\u0E2D\u0E07 UAC \u0E44\u0E21\u0E48\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A\u0E28\u0E39\u0E19\u0E22\u0E4C ORA-17406=\u0E40\u0E01\u0E34\u0E19\u0E01\u0E27\u0E48\u0E32\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14\u0E02\u0E2D\u0E07\u0E1A\u0E31\u0E1F\u0E40\u0E1F\u0E2D\u0E23\u0E4C ORA-17407=\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E41\u0E17\u0E19\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 (setRep) \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17408=\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E41\u0E17\u0E19\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25 (getRep) \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17409=\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E1A\u0E31\u0E1F\u0E40\u0E1F\u0E2D\u0E23\u0E4C\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17410=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E0B\u0E47\u0E2D\u0E01\u0E40\u0E01\u0E47\u0E15 ORA-17411=\u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E41\u0E17\u0E19\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E21\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E19 ORA-17412=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E21\u0E35\u0E02\u0E19\u0E32\u0E14\u0E40\u0E01\u0E34\u0E19\u0E01\u0E27\u0E48\u0E32\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 ORA-17413=\u0E40\u0E01\u0E34\u0E19\u0E02\u0E19\u0E32\u0E14\u0E02\u0E2D\u0E07\u0E04\u0E35\u0E22\u0E4C ORA-17414=\u0E02\u0E19\u0E32\u0E14\u0E1A\u0E31\u0E1F\u0E40\u0E1F\u0E2D\u0E23\u0E4C\u0E17\u0E35\u0E48\u0E08\u0E30\u0E40\u0E01\u0E47\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E44\u0E21\u0E48\u0E40\u0E1E\u0E35\u0E22\u0E07\u0E1E\u0E2D ORA-17415=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E19\u0E35\u0E49\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E41\u0E2E\u0E19\u0E40\u0E14\u0E34\u0E25 ORA-17416=FATAL ORA-17417=\u0E40\u0E01\u0E34\u0E14\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A NLS \u0E16\u0E2D\u0E14\u0E23\u0E2B\u0E31\u0E2A\u0E0A\u0E37\u0E48\u0E2D\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17418=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E08\u0E32\u0E01\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E02\u0E2D\u0E07\u0E42\u0E04\u0E23\u0E07\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E20\u0E32\u0E22\u0E43\u0E19 ORA-17419=\u0E08\u0E33\u0E19\u0E27\u0E19\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E17\u0E35\u0E48\u0E41\u0E2A\u0E14\u0E07\u0E1C\u0E25\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17420=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E02\u0E2D\u0E07 Oracle ORA-17421=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E2B\u0E23\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D ORA-17422=\u0E04\u0E25\u0E32\u0E2A\u0E43\u0E19\u0E41\u0E1F\u0E04\u0E15\u0E2D\u0E23\u0E35\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17423=\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E1A\u0E25\u0E47\u0E2D\u0E04 PLSQL \u0E42\u0E14\u0E22\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14 IOV ORA-17424=\u0E01\u0E33\u0E25\u0E31\u0E07\u0E40\u0E23\u0E34\u0E48\u0E21\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23\u0E21\u0E32\u0E23\u0E4C\u0E41\u0E0A\u0E25\u0E2D\u0E37\u0E48\u0E19 ORA-17425=\u0E43\u0E2B\u0E49\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E15\u0E23\u0E35\u0E21\u0E43\u0E19\u0E1A\u0E25\u0E47\u0E2D\u0E04 PLSQL ORA-17426=\u0E04\u0E48\u0E32\u0E02\u0E2D\u0E07\u0E15\u0E31\u0E27\u0E41\u0E1B\u0E23\u0E44\u0E1A\u0E19\u0E14\u0E4C\u0E17\u0E31\u0E49\u0E07 IN \u0E41\u0E25\u0E30 OUT \u0E40\u0E1B\u0E47\u0E19\u0E19\u0E31\u0E25 ORA-17427=\u0E43\u0E0A\u0E49 OAC \u0E17\u0E35\u0E48\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E40\u0E23\u0E34\u0E48\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19 ORA-17428=\u0E15\u0E49\u0E2D\u0E07\u0E25\u0E47\u0E2D\u0E01\u0E2D\u0E2D\u0E19\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E41\u0E25\u0E49\u0E27 ORA-17429=\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E40\u0E02\u0E49\u0E32\u0E01\u0E31\u0E1A\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C ORA-17430=\u0E15\u0E49\u0E2D\u0E07\u0E25\u0E47\u0E2D\u0E01\u0E2D\u0E2D\u0E19\u0E40\u0E02\u0E49\u0E32\u0E01\u0E31\u0E1A\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C ORA-17431=\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07 SQL \u0E17\u0E35\u0E48\u0E08\u0E30\u0E1E\u0E32\u0E23\u0E4C\u0E0B\u0E21\u0E35\u0E04\u0E48\u0E32\u0E40\u0E1B\u0E47\u0E19\u0E19\u0E31\u0E25 ORA-17432=\u0E1E\u0E1A\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E19 all7 ORA-17433=\u0E1E\u0E1A\u0E2D\u0E32\u0E23\u0E4C\u0E01\u0E34\u0E27\u0E40\u0E21\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49 ORA-17434=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E43\u0E19\u0E42\u0E2B\u0E21\u0E14\u0E2A\u0E15\u0E23\u0E35\u0E21 ORA-17435=\u0E08\u0E33\u0E19\u0E27\u0E19 in_out_binds \u0E43\u0E19 IOV \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17436=\u0E08\u0E33\u0E19\u0E27\u0E19 outbinds \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17437=\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E01\u0E31\u0E1A\u0E2D\u0E32\u0E23\u0E4C\u0E01\u0E34\u0E27\u0E40\u0E21\u0E19\u0E15\u0E4C IN/OUT \u0E43\u0E19\u0E1A\u0E25\u0E47\u0E2D\u0E04 PLSQL ORA-17438=\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E20\u0E32\u0E22\u0E43\u0E19 - \u0E04\u0E48\u0E32\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E04\u0E32\u0E14\u0E2B\u0E21\u0E32\u0E22 ORA-17439=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17 SQL \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17440=DBItem/DBType \u0E40\u0E1B\u0E47\u0E19\u0E19\u0E31\u0E25 ORA-17441=\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A Oracle \u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 \u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E15\u0E48\u0E33\u0E2A\u0E38\u0E14\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E44\u0E14\u0E49\u0E04\u0E37\u0E2D 7.2.3 ORA-17442=\u0E04\u0E48\u0E32 Refcursor \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07 ORA-17443=\u0E23\u0E30\u0E1A\u0E38\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E2B\u0E23\u0E37\u0E2D\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E19\u0E31\u0E25\u0E01\u0E31\u0E1A\u0E44\u0E14\u0E23\u0E40\u0E27\u0E2D\u0E23\u0E4C THIN \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17444=\u0E43\u0E0A\u0E49\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E42\u0E1B\u0E23\u0E42\u0E15\u0E04\u0E2D\u0E25 TTC \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49 ORA-17445=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14 LOB \u0E41\u0E25\u0E49\u0E27\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E40\u0E14\u0E35\u0E22\u0E27\u0E01\u0E31\u0E19 ORA-17446=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E1B\u0E34\u0E14 LOB \u0E41\u0E25\u0E49\u0E27\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E40\u0E14\u0E35\u0E22\u0E27\u0E01\u0E31\u0E19 ORA-17447=OALL8 \u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E2A\u0E20\u0E32\u0E27\u0E30\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E2A\u0E2D\u0E14\u0E04\u0E25\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E19 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_tr.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=Dahili Hata ORA-17002=G/\u00C7 istisnas\u0131 ORA-17003=Ge\u00E7ersiz s\u00FCtun dizini ORA-17004=Ge\u00E7ersiz s\u00FCtun t\u00FCr\u00FC ORA-17005=Desteklenmeyen s\u00FCtun t\u00FCr\u00FC ORA-17006=Ge\u00E7ersiz s\u00FCtun ad\u0131 ORA-17007=Ge\u00E7ersiz dinamik s\u00FCtun ORA-17008=Kapal\u0131 Ba\u011Flant\u0131 ORA-17009=Kapal\u0131 Deyim ORA-17010=Kapal\u0131 Sonu\u00E7 K\u00FCmesi ORA-17011=Yetersiz Sonu\u00E7 K\u00FCmesi ORA-17012=Parametre T\u00FCr\u00FC \u00C7ak\u0131\u015Fmas\u0131 ORA-17014=ResultSet.next \u00E7a\u011Fr\u0131lmad\u0131 ORA-17015=Deyim iptal edildi ORA-17016=Deyim zaman a\u015F\u0131m\u0131na u\u011Frad\u0131 ORA-17017=\u0130mle\u00E7 zaten ba\u015Flat\u0131lm\u0131\u015F ORA-17018=Ge\u00E7ersiz imle\u00E7 ORA-17019=Yaln\u0131zca bir sorgu tan\u0131mlanabilir ORA-17020=Ge\u00E7ersiz sat\u0131r getirme ORA-17021=Eksik tan\u0131mlama ORA-17022=Dizinde eksik tan\u0131mlama ORA-17023=Desteklenmeyen \u00F6zellik ORA-17024=Veri okunmad\u0131 ORA-17025=Defines.isNull () fonksiyonunda hata ORA-17026=Say\u0131sal Ta\u015Fma ORA-17027=Veri ak\u0131\u015F\u0131 zaten kapat\u0131lm\u0131\u015F ORA-17028=Ge\u00E7erli Sonu\u00E7 K\u00FCmesi kapat\u0131l\u0131ncaya kadar yeni tan\u0131mlamalar yap\u0131lamaz ORA-17029=setReadOnly: Salt okunur ba\u011Flant\u0131lar desteklenmiyor ORA-17030=Ge\u00E7erli hareket d\u00FCzeyleri yaln\u0131zca READ_COMMITTED ve SERIALIZABLE'd\u0131r ORA-17031=setAutoClose: Yaln\u0131zca otomatik kapatma modunun a\u00E7\u0131k olmas\u0131n\u0131 destekler ORA-17032=sat\u0131r getirme, s\u0131f\u0131r olarak ayarlanamaz ORA-17033=Hatal\u0131 olu\u015Fturulan SQL92 dizesinin konumu: ORA-17034=Desteklenmeyen SQL92 belirtecinin konumu: ORA-17035=Karakter K\u00FCmesi Desteklenmiyor !! ORA-17036=OracleNumber istisnas\u0131 ORA-17037=UTF8 ile UCS2 aras\u0131nda d\u00F6n\u00FC\u015Ft\u00FCrme ba\u015Far\u0131s\u0131z ORA-17038=Byte dizisi yeterince uzun de\u011Fil ORA-17039=Char dizisi yeterince uzun de\u011Fil ORA-17040=Ba\u011Flant\u0131 URL'sinde Alt Protokol belirlenmeli ORA-17041=IN veya OUT parametresinin eksik oldu\u011Fu dizin: ORA-17042=Ge\u00E7ersiz Toplu \u0130\u015Flem De\u011Feri ORA-17043=Ge\u00E7ersiz maksimum veri ak\u0131\u015F\u0131 de\u011Feri ORA-17044=Dahili hata: Veri dizisi ayr\u0131lmad\u0131 ORA-17045=Dahili hata: Toplu i\u015Flem de\u011Ferinin sonras\u0131ndaki ba\u011Flama de\u011Ferine eri\u015Fim denemesi ORA-17046=Dahili hata: Veri eri\u015Fimi i\u00E7in ge\u00E7ersiz dizin ORA-17047=T\u00FCr A\u00E7\u0131klay\u0131c\u0131s\u0131 ayr\u0131\u015Ft\u0131rma hatas\u0131 ORA-17048=Tan\u0131ms\u0131z t\u00FCr ORA-17049=Tutars\u0131z java ve sql nesne t\u00FCrleri ORA-17050=vekt\u00F6rde b\u00F6yle \u00F6\u011Fe yok ORA-17051=Bu API, UDT d\u0131\u015F\u0131ndaki t\u00FCrlerde kullan\u0131lamaz ORA-17052=Bu ba\u015Fvuru ge\u00E7ersiz ORA-17053=Boyut ge\u00E7erli de\u011Fil ORA-17054=\u0130\u015EK yerle\u015Ftiricisi ge\u00E7erli de\u011Fil ORA-17055=Ge\u00E7ersiz karakterlerle kar\u015F\u0131la\u015F\u0131ld\u0131 ORA-17056=Desteklenmeyen karakter k\u00FCmesi (s\u0131n\u0131f dizin yolunuza orai18n.jar ekleyin) ORA-17057=Kapal\u0131 \u0130\u015EK ORA-17058=Dahili hata: Ge\u00E7ersiz NLS D\u00F6n\u00FC\u015Ft\u00FCrme oran\u0131 ORA-17059=Dahili g\u00F6sterime d\u00F6n\u00FC\u015Ft\u00FCr\u00FClemedi ORA-17060=A\u00E7\u0131klay\u0131c\u0131y\u0131 olu\u015Fturulamad\u0131 ORA-17061=Eksik a\u00E7\u0131klay\u0131c\u0131 ORA-17062=Ba\u015Fvuru imleci ge\u00E7ersiz ORA-17063=Hareket i\u00E7inde de\u011Fil ORA-17064=Ge\u00E7ersiz s\u00F6zdizimi veya veritaban\u0131 ad\u0131 bo\u015F ORA-17065=D\u00F6n\u00FC\u015Ft\u00FCrme s\u0131n\u0131f\u0131 bo\u015F ORA-17066=Eri\u015Fim katman\u0131na \u00F6zel uygulama gerekiyor ORA-17067=Ge\u00E7ersiz Oracle URL'si belirlendi ORA-17068=\u00C7a\u011Fr\u0131da ge\u00E7ersiz ba\u011F\u0131ms\u0131z de\u011Fi\u015Fkenler var ORA-17069=Belirtilik XA \u00E7a\u011Fr\u0131s\u0131 kullan ORA-17070=Veri boyutu, bu t\u00FCr\u00FCn maksimum de\u011Ferinden daha b\u00FCy\u00FCk ORA-17071=Maksimum VARRAY s\u0131n\u0131r\u0131 a\u015F\u0131ld\u0131 ORA-17072=Girilen de\u011Fer s\u00FCtun i\u00E7in \u00E7ok b\u00FCy\u00FCk ORA-17074=ge\u00E7ersiz ad deseni ORA-17075=Salt iletilen sonu\u00E7 k\u00FCmesi i\u00E7in ge\u00E7ersiz i\u015Flem ORA-17076=Salt okunur sonu\u00E7 k\u00FCmesi i\u00E7in ge\u00E7ersiz i\u015Flem ORA-17077=REF de\u011Feri ayarlanamad\u0131 ORA-17078=Ba\u011Flant\u0131lar zaten a\u00E7\u0131k oldu\u011Fundan i\u015Flem yap\u0131lam\u0131yor ORA-17079=Kullan\u0131c\u0131n\u0131n kimlik bilgileri mevcut olanlarla e\u015Fle\u015Fmiyor ORA-17080=ge\u00E7ersiz toplu i\u015Flem komutu ORA-17081=toplu i\u015Flem s\u0131ras\u0131nda hata olu\u015Ftu ORA-17082=Ge\u00E7erli sat\u0131r yok ORA-17083=Araya eklenen sat\u0131rda de\u011Fil ORA-17084=Araya eklenen sat\u0131rda \u00E7a\u011Fr\u0131ld\u0131 ORA-17085=De\u011Fer \u00E7ak\u0131\u015Fmas\u0131 olu\u015Ftu ORA-17086=Ekleme sat\u0131r\u0131nda tan\u0131ms\u0131z s\u00FCtun de\u011Feri ORA-17087=Yoksay\u0131lan sistem performans\u0131 ipucu: setFetchDirection() ORA-17088=\u0130stenen sonu\u00E7 k\u00FCmesi t\u00FCr\u00FC ve verilere e\u015Fzamanl\u0131 eri\u015Fim d\u00FCzeyi i\u00E7in desteklenmeyen s\u00F6zdizimi ORA-17089=dahili hata ORA-17090=i\u015Fleme izin verilmedi ORA-17091=\u0130stenen t\u00FCrde ve/veya verilere e\u015Fzamanl\u0131 eri\u015Fim d\u00FCzeyinde sonu\u00E7 k\u00FCmesi yarat\u0131lam\u0131yor ORA-17092=\u00C7a\u011Fr\u0131 i\u015Fleminin sonunda JDBC deyimleri yarat\u0131lamaz veya y\u00FCr\u00FCt\u00FClemez ORA-17093=OCI i\u015Flemi OCI_SUCCESS_WITH_INFO d\u00F6nd\u00FCrd\u00FC ORA-17094=Nesne t\u00FCr\u00FC s\u00FCr\u00FCm uyu\u015Fmazl\u0131\u011F\u0131 ORA-17095=Deyim \u00F6nbellek boyutu ayarlanmam\u0131\u015F ORA-17096=Bu mant\u0131ksal ba\u011Flant\u0131 i\u00E7in Deyimi \u00D6nbelle\u011Fe Alma etkinle\u015Ftirilemez. ORA-17097=Ge\u00E7ersiz PL/SQL Dizin Tablosu \u00F6\u011Fe t\u00FCr\u00FC ORA-17098=Ge\u00E7ersiz bo\u015F i\u015F kolu i\u015Flemi ORA-17099=Ge\u00E7ersiz PL/SQL Dizin Tablosu dizi uzunlu\u011Fu ORA-17100=Ge\u00E7ersiz veritaban\u0131 Java Nesnesi ORA-17101=OCI Ba\u011Flant\u0131 Havuzu Nesnesi'nde ge\u00E7ersiz nitelikler ORA-17102=Bfile salt okunur ORA-17103=getConnection \u00FCzerinden d\u00F6nmek i\u00E7in ba\u011Flant\u0131 t\u00FCr\u00FC ge\u00E7ersiz. Yerine GetJavaSqlConnection'\u0131 kullan\u0131n ORA-17104=Y\u00FCr\u00FCt\u00FClecek SQL deyimi bo\u015F veya NULL olamaz ORA-17105=ba\u011Flant\u0131 oturumu saat dilimi ayarlanmad\u0131 ORA-17106=ge\u00E7ersiz JDBC-OCI s\u00FCr\u00FCc\u00FCs\u00FC ba\u011Flant\u0131 havuzu konfig\u00FCrasyonu belirlendi ORA-17107=ge\u00E7ersiz proxy t\u00FCr\u00FC belirlendi ORA-17108=defineColumnType y\u00F6nteminde maksimum uzunluk belirlenmemi\u015F ORA-17109=standart Java karakter kodlamas\u0131 bulunamad\u0131 ORA-17110=y\u00FCr\u00FCtme uyar\u0131 ile tamamland\u0131 ORA-17111=Ge\u00E7ersiz ba\u011Flant\u0131 \u00F6nbelle\u011Fi TTL zaman a\u015F\u0131m\u0131 belirlendi ORA-17112=Ge\u00E7ersiz thread aral\u0131\u011F\u0131 belirlendi ORA-17113=Thread aral\u0131k de\u011Feri, \u00F6nbellek zaman a\u015F\u0131m\u0131 de\u011Ferinden b\u00FCy\u00FCk ORA-17114=yerel hareketi kaydetme, genel i\u015Flemde kullan\u0131lamad\u0131 ORA-17115=yerel hareketi geri alma, genel harekette kullan\u0131lamad\u0131 ORA-17116=etkin genel hareket i\u00E7inde otomatik kaydetme a\u00E7\u0131lamad\u0131 ORA-17117=etkin genel hareket i\u00E7inde kay\u0131t noktas\u0131 ayarlanamad\u0131 ORA-17118=adland\u0131r\u0131lan bir Kaydetme Noktas\u0131n\u0131n No.'su al\u0131namad\u0131 ORA-17119=adland\u0131r\u0131lmayan bir Kaydetme Noktas\u0131n\u0131n ad\u0131 al\u0131namad\u0131 ORA-17120=otomatik kaydetme a\u00E7\u0131kken bir Kaydetme Noktas\u0131 ayarlanamad\u0131 ORA-17121=otomatik kaydetme a\u00E7\u0131kken bir Kaydetme Noktas\u0131na geri d\u00F6n\u00FClemedi ORA-17122=genel bir harekette yerel bir i\u015Flem Kaydetme Noktas\u0131na geri d\u00F6n\u00FClemedi ORA-17123=Ge\u00E7ersiz deyim \u00F6nbellek boyutu belirlendi ORA-17124=Ge\u00E7ersiz ba\u011Flant\u0131 \u00F6nbelle\u011Fi Edilgenlik zaman a\u015F\u0131m\u0131 belirlendi ORA-17125=Belirtik \u00F6nbellek taraf\u0131ndan do\u011Fru olmayan deyim t\u00FCr\u00FC verildi ORA-17126=Sabit Bekleme zaman a\u015F\u0131m\u0131na ula\u015F\u0131ld\u0131 ORA-17127=Ge\u00E7ersiz Sabit Bekleme zaman a\u015F\u0131m\u0131 de\u011Feri belirlendi ORA-17128=SQL dizesi bir Sorgu de\u011Fil ORA-17129=SQL dizesi bir DML deyimi de\u011Fil ORA-17132=Ge\u00E7ersiz d\u00F6n\u00FC\u015F\u00FCm istendi ORA-17133=UNUSED ORA-17134=SQL i\u00E7inde adland\u0131r\u0131lm\u0131\u015F parametre uzunlu\u011Fu 32 karakteri a\u015F\u0131yor ORA-17135=setXXXStream i\u00E7inde kullan\u0131lan parametre ad\u0131, SQL i\u00E7inde birden \u00E7ok kere g\u00F6r\u00FCn\u00FCyor ORA-17136=DATALINK URL hatal\u0131 olu\u015Fturulmu\u015F, onun yerine getString() komutunu deneyin ORA-17137=Ba\u011Flant\u0131 \u00D6nbelle\u011Fi Etkin De\u011Fil veya Ge\u00E7erli \u00D6nbellek Veri Kayna\u011F\u0131n\u0131 Etkinle\u015Ftirmedi ORA-17138=Ge\u00E7ersiz Ba\u011Flant\u0131 \u00D6nbelle\u011Fi Ad\u0131. Ge\u00E7erli bir Dize ve Benzersiz olmal\u0131d\u0131r ORA-17139=Ge\u00E7ersiz Ba\u011Flant\u0131 \u00D6nbelle\u011Fi Nitelikleri ORA-17140=Bu \u00D6nbellek Ad\u0131na sahip bir Ba\u011Flant\u0131 \u00D6nbelle\u011Fi zaten mevcut ORA-17141=Bu \u00D6nbellek Ad\u0131na sahip bir Ba\u011Flant\u0131 \u00D6nbelle\u011Fi mevcut de\u011Fil ORA-17142=Bu \u00D6nbelle\u011Fi Ad\u0131na Sahip Ba\u011Flant\u0131 \u00D6nbelle\u011Fi Devre D\u0131\u015F\u0131 ORA-17143=Ba\u011Flant\u0131 \u00D6nbelle\u011Finde ge\u00E7ersiz veya eski Ba\u011Flant\u0131 bulundu ORA-17144=deyim kontrol noktas\u0131 y\u00FCr\u00FCt\u00FClmedi ORA-17145=Ge\u00E7ersiz ONS Etkinli\u011Fi al\u0131nd\u0131 ORA-17146=Ge\u00E7ersiz ONS Etkinli\u011Fi S\u00FCr\u00FCm\u00FC al\u0131nd\u0131 ORA-17147=SQL i\u00E7inde bulunmayan bir parametre ad\u0131 ayarlanmaya \u00E7al\u0131\u015F\u0131ld\u0131 ORA-17148=Y\u00F6ntem yaln\u0131zca thin i\u00E7inde uygulanm\u0131\u015Ft\u0131r ORA-17149=Bu zaten bir proxy oturumu ORA-17150=Proxy oturumu i\u00E7in hatal\u0131 ba\u011F\u0131ms\u0131z de\u011Fi\u015Fkenler ORA-17151=Clob, Java dizesinde saklanamayacak kadar b\u00FCy\u00FCk ORA-17152=Bu y\u00F6ntem yaln\u0131zca mant\u0131ksal ba\u011Flant\u0131larda uygulanm\u0131\u015Ft\u0131r ORA-17153=Bu y\u00F6ntem yaln\u0131zca fiziksel ba\u011Flant\u0131larda uygulanm\u0131\u015Ft\u0131r ORA-17154=Oracle karakteri Unicode ile e\u015Fle\u015Ftirilemiyor ORA-17155=Unicode, Oracle karakteri ile e\u015Fle\u015Ftirilemiyor ORA-17156=U\u00E7tan Uca \u00F6l\u00E7\u00FCm de\u011Ferleri i\u00E7in ge\u00E7ersiz dizi boyutu ORA-17157=setString sadece 32766 karakterden az olan dizeleri i\u015Fleyebilir ORA-17158=bu fonksiyon i\u00E7in s\u00FCre ge\u00E7ersiz ORA-17159=metrik de\u011Fer u\u00E7tan uca izleme i\u00E7in \u00E7ok uzun ORA-17160=y\u00FCr\u00FCtme i\u00E7erik no s\u0131ra numaras\u0131 aral\u0131k d\u0131\u015F\u0131nda ORA-17161=Ge\u00E7ersiz haraket modu kullan\u0131ld\u0131 ORA-17162=Desteklenmeyen tutulabilirlik de\u011Feri ORA-17163=Ba\u011Flant\u0131 \u00F6nbelle\u011Fe alma etkin oldu\u011Funda getXAConnection() kullan\u0131lamaz ORA-17164=\u00D6nbelle\u011Fe alma a\u00E7\u0131k oldu\u011Funda getXAResource() fiziksel ba\u011Flant\u0131dan \u00E7a\u011Fr\u0131lamaz ORA-17165=DBMS_JDBC paketi, bu ba\u011Flant\u0131 i\u00E7in sunucuda \u00F6nayarl\u0131 de\u011Fil ORA-17166=PLSQL deyimi i\u00E7in sat\u0131r getirme ger\u00E7ekle\u015Ftirilemiyor ORA-17167=PKI s\u0131n\u0131flar\u0131 bulunamad\u0131. 'connect /' fonksiyonelli\u011Fini kullanabilmek i\u00E7in, oraclepki.jar s\u0131n\u0131f yolunda olmal\u0131d\u0131r ORA-17168=Secret Store i\u00E7in hata saptad\u0131. A\u00E7\u0131k bir wallet (cwallet.sso) olup olmad\u0131\u011F\u0131n\u0131 \u00F6\u011Frenmek i\u00E7in wallet konumunu kontrol edin ve mkstore hizmet program\u0131n\u0131 kullanarak bu wallet''\u0131n do\u011Fru kimlik bilgilerini i\u00E7erdi\u011Finden emin olun ORA-17169=Veri ak\u0131\u015F\u0131, bir ScrollableResultSet veya UpdatableResultSet k\u00FCmesine ba\u011Flanamad\u0131 ORA-17170=Ad Alan\u0131 bo\u015F b\u0131rak\u0131lamaz ORA-17171=\u00D6zellik uzunlu\u011Fu 30 karakteri a\u015Famaz ORA-17172=\u00D6zelli\u011Fin bu de\u011Feri 400 karakteri a\u015Famaz ORA-17173=T\u00FCm d\u00F6n\u00FC\u015F parametreleri kay\u0131tl\u0131 de\u011Fil ORA-17174=Desteklenen tek ad alan\u0131 CLIENTCONTEXT ORA-17175=Uzak ONS konfig\u00FCrasyonu s\u0131ras\u0131nda hata olu\u015Ftu ORA-17200=XA a\u00E7ma dizesi Java'dan C'ye d\u00FCzg\u00FCn bi\u00E7imde d\u00F6n\u00FC\u015Ft\u00FCr\u00FClemiyor ORA-17201=XA kapatma dizesi Java'dan C'ye d\u00FCzg\u00FCn bi\u00E7imde d\u00F6n\u00FC\u015Ft\u00FCr\u00FClemiyor ORA-17202=RM ad\u0131 Java'dan C'ye d\u00FCzg\u00FCn bi\u00E7imde d\u00F6n\u00FC\u015Ft\u00FCr\u00FClemiyor ORA-17203=\u0130\u015Faret\u00E7i t\u00FCr\u00FC jlong t\u00FCr\u00FCne d\u00F6n\u00FC\u015Ft\u00FCr\u00FClemedi ORA-17204=Girdi dizisi, OCI tutama\u00E7lar\u0131n\u0131 tutamayacak kadar k\u0131sa ORA-17205=OCISvcCtx tutamac\u0131 xaoSvcCtx kullan\u0131larak C-XA'dan al\u0131namad\u0131 ORA-17206=OCIEnv tutamac\u0131 xaoEnv kullan\u0131larak C-XA'dan al\u0131namad\u0131 ORA-17207=TnsEntry niteli\u011Fi, Veri Kayna\u011F\u0131 i\u00E7inde ayarlanmad\u0131 ORA-17213=xa_open s\u0131ras\u0131nda C-XA, XAER_RMERR d\u00F6nd\u00FCrd\u00FC ORA-17215=xa_open s\u0131ras\u0131nda C-XA, XAER_INVAL d\u00F6nd\u00FCrd\u00FC ORA-17216=xa_open s\u0131ras\u0131nda C-XA, XAER_PROTO d\u00F6nd\u00FCrd\u00FC ORA-17233=xa_close s\u0131ras\u0131nda C-XA, XAER_RMERR d\u00F6nd\u00FCrd\u00FC ORA-17235=xa_close s\u0131ras\u0131nda C-XA, XAER_INVAL d\u00F6nd\u00FCrd\u00FC ORA-17236=xa_close s\u0131ras\u0131nda C-XA, XAER_PROTO d\u00F6nd\u00FCrd\u00FC # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=Protokol ihlali ORA-17402=Tek bir RPA mesaj\u0131 bekleniyor ORA-17403=Yaln\u0131zca bir RXH mesaj\u0131 bekleniyor ORA-17404=Beklenenden daha \u00E7ok say\u0131da RXD al\u0131nd\u0131 ORA-17405=UAC uzunlu\u011Fu s\u0131f\u0131r de\u011Fil ORA-17406=Maksimum arabellek uzunlu\u011Fu a\u015F\u0131l\u0131yor ORA-17407=ge\u00E7ersiz T\u00FCr Temsili (setRep) ORA-17408=Ge\u00E7ersiz T\u00FCr Sunumu (getRep) ORA-17409=ge\u00E7ersiz arabellek uzunlu\u011Fu ORA-17410=Yuvadan okunacak ba\u015Fka veri yok ORA-17411=Veri T\u00FCr\u00FC sunumlar\u0131 e\u015Fle\u015Fmemesi ORA-17412=T\u00FCr uzunlu\u011Fu maksimum de\u011Ferden daha b\u00FCy\u00FCk ORA-17413=Anahtar boyutu a\u015F\u0131l\u0131yor ORA-17414=S\u00FCtun Adlar\u0131n\u0131 saklamak i\u00E7in yetersiz Arabellek boyutu ORA-17415=Bu t\u00FCr i\u015Flenmedi ORA-17416=FATAL ORA-17417=NLS Sorunu, s\u00FCtun adlar\u0131n\u0131n kodlamas\u0131 \u00E7\u00F6z\u00FClemedi ORA-17418=Dahili yap\u0131n\u0131n alan uzunlu\u011Funda hata ORA-17419=Ge\u00E7ersiz say\u0131da s\u00FCtun d\u00F6nd\u00FCr\u00FCld\u00FC ORA-17420=Oracle S\u00FCr\u00FCm\u00FC tan\u0131mlanmam\u0131\u015F ORA-17421=T\u00FCrler veya Ba\u011Flant\u0131 tan\u0131mlanmam\u0131\u015F ORA-17422=Factory i\u00E7inde ge\u00E7ersiz s\u0131n\u0131f ORA-17423=Tan\u0131ml\u0131 bir IOV olmaks\u0131z\u0131n PLSQL blo\u011Fu kullan\u0131l\u0131yor ORA-17424=Farkl\u0131 marshaling i\u015Flemi deneniyor ORA-17425=PLSQL blo\u011Funda veri ak\u0131\u015F\u0131 d\u00F6nd\u00FCr\u00FCl\u00FCyor ORA-17426=Hem IN hem de OUT ba\u011Flar\u0131 NULL ORA-17427=Ba\u015Flat\u0131lmam\u0131\u015F OAC kullan\u0131l\u0131yor ORA-17428=Connect sonras\u0131nda logon \u00E7a\u011Fr\u0131lmal\u0131d\u0131r ORA-17429=En az\u0131ndan sunucuya ba\u011Fl\u0131 olmal\u0131d\u0131r ORA-17430=Sunucuda oturum a\u00E7m\u0131\u015F olmal\u0131d\u0131r ORA-17431=Ayr\u0131\u015Ft\u0131r\u0131lacak SQL Deyimi bo\u015F ORA-17432=all7 i\u00E7inde ge\u00E7ersiz se\u00E7enekler ORA-17433=\u00E7a\u011Fr\u0131da ge\u00E7ersiz ba\u011F\u0131ms\u0131z de\u011Fi\u015Fkenler ORA-17434=veri ak\u0131\u015F\u0131 modunda de\u011Fil ORA-17435=IOV i\u00E7inde ge\u00E7ersiz say\u0131da in_out_binds ORA-17436=ge\u00E7ersiz say\u0131da outbind ORA-17437=PLSQL blo\u011Fu IN/OUT ba\u011F\u0131ms\u0131z de\u011Fi\u015Fkenlerinde hata ORA-17438=Dahili - Beklenmeyen de\u011Fer ORA-17439=Ge\u00E7ersiz SQL t\u00FCr\u00FC ORA-17440=DBItem/DBType bo\u015F ORA-17441=Oracle S\u00FCr\u00FCm\u00FC desteklenmiyor. Desteklenen en eski s\u00FCr\u00FCm 7.2.3. ORA-17442=Refcursor de\u011Feri ge\u00E7ersiz ORA-17443=THIN s\u00FCr\u00FCc\u00FCs\u00FCnde bo\u015F kullan\u0131c\u0131 ad\u0131 veya parola desteklenmiyor ORA-17444=Sunucudan al\u0131nan TTC Protokol\u00FC s\u00FCr\u00FCm\u00FC desteklenmiyor ORA-17445=\u0130\u015EK ayn\u0131 harekette zaten a\u00E7\u0131k ORA-17446=\u0130\u015EK ayn\u0131 harekette zaten kapal\u0131 ORA-17447=OALL8 \u015Fu anda tutars\u0131z bir durumda # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_zh_CN.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u5185\u90E8\u9519\u8BEF ORA-17002=Io \u5F02\u5E38 ORA-17003=\u65E0\u6548\u7684\u5217\u7D22\u5F15 ORA-17004=\u65E0\u6548\u7684\u5217\u7C7B\u578B ORA-17005=\u4E0D\u652F\u6301\u7684\u5217\u7C7B\u578B ORA-17006=\u5217\u540D\u65E0\u6548 ORA-17007=\u65E0\u6548\u7684\u52A8\u6001\u5217 ORA-17008=\u5173\u95ED\u7684\u8FDE\u63A5 ORA-17009=\u5173\u95ED\u7684\u8BED\u53E5 ORA-17010=\u5173\u95ED\u7684 Resultset ORA-17011=\u7ED3\u679C\u96C6\u5DF2\u8017\u5C3D ORA-17012=\u53C2\u6570\u7C7B\u578B\u51B2\u7A81 ORA-17014=\u672A\u8C03\u7528 ResultSet.next ORA-17015=\u8BED\u53E5\u88AB\u53D6\u6D88 ORA-17016=\u8BED\u53E5\u8D85\u65F6 ORA-17017=\u5DF2\u521D\u59CB\u5316\u6E38\u6807 ORA-17018=\u65E0\u6548\u7684\u6E38\u6807 ORA-17019=\u53EA\u80FD\u63CF\u8FF0\u67E5\u8BE2 ORA-17020=\u65E0\u6548\u7684\u884C\u9884\u53D6 ORA-17021=\u5B9A\u4E49\u4E22\u5931 ORA-17022=\u5728\u7D22\u5F15\u5904\u5B9A\u4E49\u4E22\u5931 ORA-17023=\u4E0D\u652F\u6301\u7684\u7279\u6027 ORA-17024=\u672A\u8BFB\u53D6\u6570\u636E ORA-17025=defines.isNull () \u4E2D\u51FA\u73B0\u9519\u8BEF ORA-17026=\u6570\u5B57\u6EA2\u51FA ORA-17027=\u6D41\u5DF2\u88AB\u5173\u95ED ORA-17028=\u76F4\u5230\u5173\u95ED\u5F53\u524D\u7684 ResultSet \u624D\u80FD\u8FDB\u884C\u65B0\u7684\u5B9A\u4E49 ORA-17029=setReadOnly: \u4E0D\u652F\u6301\u53EA\u8BFB\u8FDE\u63A5 ORA-17030=\u4EC5 READ_COMMITTED \u548C SERIALIZABLE \u662F\u6709\u6548\u7684\u4E8B\u52A1\u5904\u7406\u7EA7 ORA-17031=setAutoClose: \u4EC5\u652F\u6301\u81EA\u52A8\u5173\u95ED\u6A21\u5F0F\u6253\u5F00\u7684\u60C5\u51B5 ORA-17032=\u884C\u9884\u53D6\u4E0D\u80FD\u8BBE\u7F6E\u4E3A\u96F6 ORA-17033=\u51FA\u73B0\u683C\u5F0F\u4E0D\u6B63\u786E\u7684 SQL92 \u4E32 ORA-17034=\u51FA\u73B0\u4E0D\u652F\u6301\u7684 SQL92 \u6807\u8BB0 ORA-17035=\u4E0D\u652F\u6301\u7684\u5B57\u7B26\u96C6 !! ORA-17036=OracleNumber \u4E2D\u7684\u5F02\u5E38 ORA-17037=\u4E0D\u80FD\u5728 UTF8 \u548C UCS2 \u4E4B\u95F4\u8F6C\u6362 ORA-17038=\u5B57\u8282\u6570\u7EC4\u4E0D\u591F\u957F ORA-17039=Char \u6570\u7EC4\u4E0D\u591F\u957F ORA-17040=\u5FC5\u987B\u5728\u8FDE\u63A5 URL \u4E2D\u6307\u5B9A\u5B50\u534F\u8BAE ORA-17041=\u7D22\u5F15\u4E2D\u4E22\u5931 IN \u6216 OUT \u53C2\u6570: ORA-17042=\u65E0\u6548\u7684\u6279\u503C ORA-17043=\u6D41\u7684\u6700\u5927\u957F\u5EA6\u65E0\u6548 ORA-17044=\u5185\u90E8\u9519\u8BEF: \u672A\u5206\u914D\u6570\u636E\u6570\u7EC4 ORA-17045=\u5185\u90E8\u9519\u8BEF: \u8BD5\u56FE\u8BBF\u95EE\u6279\u503C\u4E4B\u5916\u7684\u7ED1\u5B9A\u503C ORA-17046=\u5185\u90E8\u9519\u8BEF: \u6570\u636E\u8BBF\u95EE\u7684\u7D22\u5F15\u65E0\u6548 ORA-17047=\u8BED\u6CD5\u5206\u6790\u7C7B\u578B\u63CF\u8FF0\u7B26\u65F6\u51FA\u9519 ORA-17048=\u672A\u5B9A\u4E49\u7684\u7C7B\u578B ORA-17049=\u4E0D\u4E00\u81F4\u7684 java \u548C sql \u5BF9\u8C61\u7C7B\u578B ORA-17050=\u77E2\u91CF\u4E2D\u6CA1\u6709\u8FD9\u6837\u7684\u5143\u7D20 ORA-17051=\u6B64 API \u4E0D\u80FD\u7528\u4E8E\u975E UDT \u7C7B\u578B ORA-17052=\u6B64 ref \u65E0\u6548 ORA-17053=\u957F\u5EA6\u65E0\u6548 ORA-17054=LOB \u5B9A\u4F4D\u5668\u65E0\u6548 ORA-17055=\u9047\u5230\u65E0\u6548\u5B57\u7B26, \u5728 ORA-17056=\u4E0D\u652F\u6301\u7684\u5B57\u7B26\u96C6 (\u5728\u7C7B\u8DEF\u5F84\u4E2D\u6DFB\u52A0 orai18n.jar) ORA-17057=\u5173\u95ED\u7684 LOB ORA-17058=\u5185\u90E8\u9519\u8BEF: \u65E0\u6548\u7684 NLS \u8F6C\u6362\u7387 ORA-17059=\u65E0\u6CD5\u8F6C\u6362\u4E3A\u5185\u90E8\u8868\u793A ORA-17060=\u65E0\u6CD5\u6784\u9020\u63CF\u8FF0\u7B26 ORA-17061=\u4E22\u5931\u63CF\u8FF0\u7B26 ORA-17062=Ref \u6E38\u6807\u65E0\u6548 ORA-17063=\u4E0D\u5728\u4E8B\u52A1\u5904\u7406\u4E2D ORA-17064=\u65E0\u6548\u7684\u8BED\u6CD5\u6216\u6570\u636E\u5E93\u540D\u4E3A\u7A7A ORA-17065=\u8F6C\u6362\u7C7B\u4E3A\u7A7A ORA-17066=\u8BBF\u95EE\u5C42\u9700\u8981\u5177\u4F53\u5B9E\u65BD ORA-17067=\u6307\u5B9A\u4E86\u65E0\u6548\u7684 Oracle URL ORA-17068=\u8C03\u7528\u4E2D\u7684\u65E0\u6548\u53C2\u6570 ORA-17069=\u4F7F\u7528\u660E\u786E\u7684 XA \u8C03\u7528 ORA-17070=\u6570\u636E\u5927\u5C0F\u8D85\u51FA\u6B64\u7C7B\u578B\u7684\u6700\u5927\u503C ORA-17071=\u8D85\u51FA VARRAY \u7684\u6700\u5927\u9650\u5236 ORA-17072=\u5BF9\u5217\u6765\u8BF4\u63D2\u5165\u7684\u503C\u592A\u5927 ORA-17074=\u65E0\u6548\u7684\u540D\u79F0\u6A21\u5F0F ORA-17075=\u5BF9\u53EA\u8F6C\u53D1\u7ED3\u679C\u96C6\u7684\u65E0\u6548\u64CD\u4F5C ORA-17076=\u5BF9\u53EA\u8BFB\u7ED3\u679C\u96C6\u7684\u65E0\u6548\u64CD\u4F5C ORA-17077=\u65E0\u6CD5\u8BBE\u7F6E REF \u503C ORA-17078=\u65E0\u6CD5\u8FDB\u884C\u8BE5\u64CD\u4F5C, \u56E0\u4E3A\u8FDE\u63A5\u5DF2\u6253\u5F00 ORA-17079=\u7528\u6237\u8EAB\u4EFD\u8BC1\u660E\u4E0E\u73B0\u6709\u8EAB\u4EFD\u8BC1\u660E\u4E0D\u5339\u914D ORA-17080=\u65E0\u6548\u7684\u6279\u5904\u7406\u547D\u4EE4 ORA-17081=\u6279\u5904\u7406\u4E2D\u51FA\u73B0\u9519\u8BEF ORA-17082=\u6CA1\u6709\u5F53\u524D\u884C ORA-17083=\u4E0D\u5728\u63D2\u5165\u884C\u4E0A ORA-17084=\u8BBF\u95EE\u63D2\u5165\u884C ORA-17085=\u51FA\u73B0\u503C\u51B2\u7A81 ORA-17086=\u63D2\u5165\u884C\u4E0A\u7684\u672A\u5B9A\u4E49\u5217\u503C ORA-17087=\u53EF\u5FFD\u7565\u7684\u6267\u884C\u63D0\u793A: setFetchDirection() ORA-17088=\u8BF7\u6C42\u7684\u7ED3\u679C\u7C7B\u578B\u548C\u5E76\u53D1\u7EA7\u522B\u7684\u8BED\u6CD5\u4E0D\u53D7\u652F\u6301 ORA-17089=\u5185\u90E8\u9519\u8BEF ORA-17090=\u4E0D\u5141\u8BB8\u7684\u64CD\u4F5C ORA-17091=\u5728\u6240\u8BF7\u6C42\u7684\u7C7B\u578B\u548C (\u6216) \u5E76\u53D1\u7EA7\u522B\u65E0\u6CD5\u521B\u5EFA\u7ED3\u679C\u96C6 ORA-17092=\u65E0\u6CD5\u5728\u8C03\u7528\u5904\u7406\u64CD\u4F5C\u7ED3\u675F\u65F6\u521B\u5EFA\u6216\u6267\u884C JDBC \u8BED\u53E5 ORA-17093=OCI \u64CD\u4F5C\u8FD4\u56DE OCI_SUCCESS_WITH_INFO ORA-17094=\u5BF9\u8C61\u7C7B\u578B\u7248\u672C\u4E0D\u5339\u914D ORA-17095=\u8BED\u53E5\u9AD8\u901F\u7F13\u5B58\u5927\u5C0F\u672A\u4F5C\u8BBE\u7F6E ORA-17096=\u4E0D\u80FD\u4E3A\u6B64\u903B\u8F91\u8FDE\u63A5\u542F\u7528\u8BED\u53E5\u9AD8\u901F\u7F13\u5B58\u3002 ORA-17097=PL/SQL \u7D22\u5F15\u8868\u7684\u5143\u7D20\u7C7B\u578B\u65E0\u6548 ORA-17098=\u7A7A\u4E8C\u8FDB\u5236\u5927\u5BF9\u8C61\u64CD\u4F5C\u65E0\u6548 ORA-17099=PL/SQL \u7D22\u5F15\u8868\u6570\u7EC4\u957F\u5EA6\u65E0\u6548 ORA-17100=\u6570\u636E\u5E93 Java \u5BF9\u8C61\u65E0\u6548 ORA-17101=OCI \u8FDE\u63A5\u6C60\u5BF9\u8C61\u4E2D\u7684\u5C5E\u6027\u65E0\u6548 ORA-17102=Bfile \u4E3A\u53EA\u8BFB ORA-17103=\u901A\u8FC7 getConnection \u8FD4\u56DE\u7684\u8FDE\u63A5\u7C7B\u578B\u65E0\u6548\u3002\u6539\u7528 getJavaSqlConnection ORA-17104=\u8981\u6267\u884C\u7684 SQL \u8BED\u53E5\u4E0D\u5F97\u4E3A\u7A7A\u767D\u6216\u7A7A\u503C ORA-17105=\u672A\u8BBE\u7F6E\u8FDE\u63A5\u4F1A\u8BDD\u65F6\u533A ORA-17106=\u6307\u5B9A\u7684 JDBC-OCI \u9A71\u52A8\u7A0B\u5E8F\u8FDE\u63A5\u6C60\u914D\u7F6E\u65E0\u6548 ORA-17107=\u6307\u5B9A\u7684\u4EE3\u7406\u7C7B\u578B\u65E0\u6548 ORA-17108=\u6CA1\u6709\u5728 defineColumnType \u4E2D\u6307\u5B9A\u6700\u5927\u957F\u5EA6 ORA-17109=\u627E\u4E0D\u5230\u6807\u51C6 Java \u5B57\u7B26\u7F16\u7801 ORA-17110=\u6267\u884C\u5B8C\u6BD5, \u4F46\u5E26\u6709\u8B66\u544A ORA-17111=\u6307\u5B9A\u7684\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58 TTL \u8D85\u65F6\u65F6\u95F4\u6EA2\u51FA ORA-17112=\u6307\u5B9A\u7684\u7EBF\u7A0B\u65F6\u95F4\u95F4\u9694\u65E0\u6548 ORA-17113=\u7EBF\u7A0B\u65F6\u95F4\u95F4\u9694\u503C\u5927\u4E8E\u9AD8\u901F\u7F13\u5B58\u8D85\u65F6\u503C ORA-17114=\u65E0\u6CD5\u5728\u5168\u5C40\u4E8B\u52A1\u5904\u7406\u4E2D\u4F7F\u7528\u672C\u5730\u4E8B\u52A1\u5904\u7406\u63D0\u4EA4 ORA-17115=\u65E0\u6CD5\u5728\u5168\u5C40\u4E8B\u52A1\u5904\u7406\u4E2D\u4F7F\u7528\u672C\u5730\u4E8B\u52A1\u5904\u7406\u56DE\u9000 ORA-17116=\u65E0\u6CD5\u5728\u6D3B\u52A8\u7684\u5168\u5C40\u4E8B\u52A1\u5904\u7406\u4E2D\u542F\u7528\u81EA\u52A8\u63D0\u4EA4\u529F\u80FD ORA-17117=\u65E0\u6CD5\u5728\u6D3B\u52A8\u7684\u5168\u5C40\u4E8B\u52A1\u5904\u7406\u4E2D\u8BBE\u7F6E\u4FDD\u5B58\u70B9 ORA-17118=\u65E0\u6CD5\u83B7\u53D6\u5DF2\u547D\u540D\u4FDD\u5B58\u70B9\u7684 ID ORA-17119=\u65E0\u6CD5\u83B7\u53D6\u672A\u547D\u540D\u4FDD\u5B58\u70B9\u7684\u540D\u79F0 ORA-17120=\u65E0\u6CD5\u8BBE\u7F6E\u542F\u7528\u4E86\u81EA\u52A8\u63D0\u4EA4\u529F\u80FD\u7684\u4FDD\u5B58\u70B9 ORA-17121=\u65E0\u6CD5\u56DE\u9000\u5230\u542F\u7528\u4E86\u81EA\u52A8\u63D0\u4EA4\u529F\u80FD\u7684\u4FDD\u5B58\u70B9 ORA-17122=\u65E0\u6CD5\u56DE\u9000\u5230\u542F\u7528\u4E86\u81EA\u52A8\u63D0\u4EA4\u529F\u80FD\u7684\u4FDD\u5B58\u70B9 ORA-17123=\u6307\u5B9A\u7684\u8BED\u53E5\u9AD8\u901F\u7F13\u5B58\u5927\u5C0F\u65E0\u6548 ORA-17124=\u6307\u5B9A\u7684\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u5931\u6D3B\u8D85\u65F6\u65F6\u95F4\u65E0\u6548 ORA-17125=\u663E\u5F0F\u9AD8\u901F\u7F13\u5B58\u8FD4\u56DE\u4E86\u4E0D\u6B63\u786E\u7684\u8BED\u53E5\u7C7B\u578B ORA-17126=\u56FA\u5B9A\u7B49\u5F85\u8D85\u65F6\u65F6\u95F4\u5DF2\u8FC7 ORA-17127=\u6307\u5B9A\u7684\u56FA\u5B9A\u7B49\u5F85\u8D85\u65F6\u65F6\u95F4\u65E0\u6548 ORA-17128=SQL \u5B57\u7B26\u4E32\u4E0D\u662F\u67E5\u8BE2 ORA-17129=SQL \u5B57\u7B26\u4E32\u4E0D\u662F DML \u8BED\u53E5 ORA-17132=\u8BF7\u6C42\u7684\u8F6C\u6362\u65E0\u6548 ORA-17133=UNUSED ORA-17134=SQL \u4E2D\u547D\u540D\u53C2\u6570\u7684\u957F\u5EA6\u8D85\u8FC7 32 \u4E2A\u5B57\u7B26 ORA-17135=setXXXStream \u4E2D\u4F7F\u7528\u7684\u53C2\u6570\u540D\u5728 SQL \u4E2D\u51FA\u73B0\u591A\u6B21 ORA-17136=\u683C\u5F0F\u9519\u8BEF\u7684 DATALINK URL, \u8BF7\u5C1D\u8BD5\u4F7F\u7528 getString() ORA-17137=\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u672A\u542F\u7528, \u6216\u8005\u4E0D\u662F\u542F\u7528\u9AD8\u901F\u7F13\u5B58\u7684\u6709\u6548\u6570\u636E\u6E90 ORA-17138=\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u540D\u79F0\u65E0\u6548\u3002\u5FC5\u987B\u662F\u6709\u6548\u7684\u5B57\u7B26\u4E32\u5E76\u4E14\u662F\u552F\u4E00\u7684 ORA-17139=\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u5C5E\u6027\u65E0\u6548 ORA-17140=\u5177\u6709\u6B64\u9AD8\u901F\u7F13\u5B58\u540D\u79F0\u7684\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u5DF2\u5B58\u5728 ORA-17141=\u5177\u6709\u6B64\u9AD8\u901F\u7F13\u5B58\u540D\u79F0\u7684\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u4E0D\u5B58\u5728 ORA-17142=\u5177\u6709\u6B64\u9AD8\u901F\u7F13\u5B58\u540D\u79F0\u7684\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u5DF2\u7981\u7528 ORA-17143=\u5728\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u4E2D\u627E\u5230\u7684\u8FDE\u63A5\u65E0\u6548\u6216\u5DF2\u8FC7\u65F6 ORA-17144=\u672A\u6267\u884C\u8BED\u53E5\u53E5\u67C4 ORA-17145=\u63A5\u6536\u5230\u7684 ONS \u4E8B\u4EF6\u65E0\u6548 ORA-17146=\u63A5\u6536\u5230\u7684 ONS \u4E8B\u4EF6\u7248\u672C\u65E0\u6548 ORA-17147=\u8BD5\u56FE\u8BBE\u7F6E\u672A\u51FA\u73B0\u5728 SQL \u4E2D\u7684\u53C2\u6570\u540D ORA-17148=\u65B9\u6CD5\u4EC5\u5728 Thin \u4E2D\u5B9E\u65BD ORA-17149=\u8FD9\u5DF2\u7ECF\u662F\u4EE3\u7406\u4F1A\u8BDD ORA-17150=\u4EE3\u7801\u4F1A\u8BDD\u7684\u53C2\u6570\u9519\u8BEF ORA-17151=Clob \u592A\u5927, \u65E0\u6CD5\u5B58\u50A8\u5728 Java \u5B57\u7B26\u4E32\u4E2D ORA-17152=\u6B64\u65B9\u6CD5\u4EC5\u5728\u903B\u8F91\u8FDE\u63A5\u4E2D\u5B9E\u65BD ORA-17153=\u6B64\u65B9\u6CD5\u4EC5\u5728\u7269\u7406\u8FDE\u63A5\u4E2D\u5B9E\u65BD ORA-17154=\u65E0\u6CD5\u5C06 Oracle \u5B57\u7B26\u6620\u5C04\u4E3A Unicode ORA-17155=\u65E0\u6CD5\u5C06 Unicode \u6620\u5C04\u4E3A Oracle \u5B57\u7B26 ORA-17156=\u6570\u7EC4\u5927\u5C0F\u5BF9\u4E8E\u7AEF\u5BF9\u7AEF\u7684\u5EA6\u91CF\u503C\u65E0\u6548 ORA-17157=setString \u53EA\u80FD\u5904\u7406\u5C11\u4E8E 32766 \u4E2A\u5B57\u7B26\u7684\u5B57\u7B26\u4E32 ORA-17158=\u6301\u7EED\u65F6\u95F4\u5BF9\u8BE5\u51FD\u6570\u65E0\u6548 ORA-17159=\u8981\u6267\u884C\u7AEF\u5BF9\u7AEF\u8DDF\u8E2A\u7684\u5EA6\u91CF\u503C\u592A\u957F ORA-17160=\u6267\u884C\u4E0A\u4E0B\u6587 ID \u5E8F\u5217\u53F7\u8D85\u51FA\u8303\u56F4 ORA-17161=\u4F7F\u7528\u7684\u4EA4\u6613\u6A21\u5F0F\u65E0\u6548 ORA-17162=\u4E0D\u652F\u6301\u7684 holdability \u503C ORA-17163=\u65E0\u6CD5\u5728\u542F\u7528\u8FDE\u63A5\u9AD8\u901F\u7F13\u5B58\u65F6\u4F7F\u7528 getXAConnection() ORA-17164=\u65E0\u6CD5\u5728\u542F\u7528\u4E86\u9AD8\u901F\u7F13\u5B58\u7684\u60C5\u51B5\u4E0B\u4ECE\u7269\u7406\u8FDE\u63A5\u8C03\u7528 getXAResource() ORA-17165=\u672A\u5728\u670D\u52A1\u5668\u4E2D\u4E3A\u6B64\u8FDE\u63A5\u9884\u8BBE DBMS_JDBC \u5305 ORA-17166=\u65E0\u6CD5\u5BF9 PLSQL \u8BED\u53E5\u6267\u884C\u63D0\u53D6 ORA-17167=\u627E\u4E0D\u5230 PKI \u7C7B\u3002\u8981\u4F7F\u7528 'connect /' \u529F\u80FD, oraclepki.jar \u5FC5\u987B\u4F4D\u4E8E\u7C7B\u8DEF\u5F84\u4E2D ORA-17168=\u5BC6\u94A5\u5B58\u50A8\u9047\u5230\u95EE\u9898\u3002\u8BF7\u5728\u51FA\u73B0\u6253\u5F00\u7684 Wallet (cwallet.sso) \u65F6\u68C0\u67E5 Wallet \u7684\u4F4D\u7F6E\u5E76\u4F7F\u7528 mkstore \u5B9E\u7528\u7A0B\u5E8F\u786E\u4FDD\u6B64 Wallet \u5305\u542B\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u660E ORA-17169=\u65E0\u6CD5\u5C06\u6D41\u7ED1\u5B9A\u5230 ScrollableResultSet \u6216 UpdatableResultSet ORA-17170=\u540D\u79F0\u7A7A\u95F4\u4E0D\u80FD\u4E3A\u7A7A ORA-17171=\u5C5E\u6027\u957F\u5EA6\u4E0D\u80FD\u8D85\u8FC7 30 \u4E2A\u5B57\u7B26 ORA-17172=\u5C5E\u6027\u7684\u503C\u4E0D\u80FD\u8D85\u8FC7 400 \u4E2A\u5B57\u7B26 ORA-17173=\u5E76\u975E\u6240\u6709\u8FD4\u56DE\u53C2\u6570\u90FD\u5DF2\u6CE8\u518C ORA-17174=\u552F\u4E00\u53D7\u652F\u6301\u7684\u540D\u79F0\u7A7A\u95F4\u662F CLIENTCONTEXT ORA-17175=\u8FDC\u7A0B ONS \u914D\u7F6E\u671F\u95F4\u51FA\u9519 ORA-17200=\u65E0\u6CD5\u6B63\u786E\u5730\u5C06 XA \u6253\u5F00\u5B57\u7B26\u4E32\u4ECE Java \u8F6C\u6362\u6210 C ORA-17201=\u65E0\u6CD5\u6B63\u786E\u5730\u5C06 XA \u5173\u95ED\u5B57\u7B26\u4E32\u4ECE Java \u8F6C\u6362\u6210 C ORA-17202=\u65E0\u6CD5\u6B63\u786E\u5730\u5C06 RM \u540D\u79F0\u4ECE Java \u8F6C\u6362\u6210 C ORA-17203=\u65E0\u6CD5\u5C06\u6307\u9488\u7C7B\u578B\u5F3A\u5236\u8F6C\u6362\u6210 jlong ORA-17204=\u8F93\u5165\u6570\u7EC4\u8FC7\u77ED, \u65E0\u6CD5\u5BB9\u7EB3 OCI \u53E5\u67C4 ORA-17205=\u65E0\u6CD5\u4F7F\u7528 xaoSvcCtx \u4ECE C-XA \u83B7\u53D6 OCISvcCtx \u53E5\u67C4 ORA-17206=\u65E0\u6CD5\u4F7F\u7528 xaoEnv \u4ECE C-XA \u83B7\u53D6 OCIEnv \u53E5\u67C4 ORA-17207=\u672A\u5728\u6570\u636E\u6E90\u4E2D\u8BBE\u7F6E tnsEntry \u5C5E\u6027 ORA-17213=C-XA \u5728 xa_open \u671F\u95F4\u8FD4\u56DE XAER_RMERR ORA-17215=C-XA \u5728 xa_open \u671F\u95F4\u8FD4\u56DE XAER_INVAL ORA-17216=C-XA \u5728 xa_open \u671F\u95F4\u8FD4\u56DE XAER_PROTO ORA-17233=C-XA \u5728 xa_close \u671F\u95F4\u8FD4\u56DE XAER_RMERR ORA-17235=C-XA \u5728 xa_close \u671F\u95F4\u8FD4\u56DE XAER_INVAL ORA-17236=C-XA \u5728 xa_close \u671F\u95F4\u8FD4\u56DE XAER_PROTO # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u8FDD\u53CD\u534F\u8BAE ORA-17402=\u53EA\u671F\u671B\u5F97\u5230\u4E00\u4E2A RPA \u6D88\u606F ORA-17403=\u53EA\u671F\u671B\u5F97\u5230\u4E00\u4E2A RXH \u6D88\u606F ORA-17404=\u6536\u5230\u8D85\u8FC7\u9884\u671F\u7684 RXD ORA-17405=UAC \u957F\u5EA6\u4E0D\u4E3A\u96F6 ORA-17406=\u8D85\u51FA\u7F13\u51B2\u533A\u7684\u6700\u5927\u957F\u5EA6 ORA-17407=\u65E0\u6548\u7684\u7C7B\u578B\u8868\u793A (setRep) ORA-17408=\u65E0\u6548\u7684\u7C7B\u578B\u8868\u793A (getRep) ORA-17409=\u65E0\u6548\u7684\u7F13\u51B2\u533A\u957F\u5EA6 ORA-17410=\u65E0\u6CD5\u4ECE\u5957\u63A5\u5B57\u8BFB\u53D6\u66F4\u591A\u7684\u6570\u636E ORA-17411=\u6570\u636E\u7C7B\u578B\u8868\u793A\u4E0D\u5339\u914D ORA-17412=\u7C7B\u578B\u957F\u5EA6\u5927\u4E8E\u6700\u5927\u503C ORA-17413=\u8D85\u51FA\u5173\u952E\u5B57\u5927\u5C0F ORA-17414=\u7F13\u51B2\u533A\u5BB9\u91CF\u4E0D\u8DB3\u4EE5\u5B58\u50A8\u5217\u540D ORA-17415=\u5C1A\u672A\u5904\u7406\u6B64\u7C7B\u578B ORA-17416=FATAL ORA-17417=NLS \u95EE\u9898, \u65E0\u6CD5\u5BF9\u5217\u540D\u8FDB\u884C\u89E3\u7801 ORA-17418=\u5185\u90E8\u7ED3\u6784\u7684\u5B57\u6BB5\u957F\u5EA6\u9519\u8BEF ORA-17419=\u8FD4\u56DE\u7684\u5217\u6570\u65E0\u6548 ORA-17420=\u672A\u5B9A\u4E49 Oracle \u7248\u672C ORA-17421=\u672A\u5B9A\u4E49\u7C7B\u578B\u6216\u8FDE\u63A5 ORA-17422=\u5DE5\u5382\u4E2D\u7684\u65E0\u6548\u7C7B ORA-17423=\u5728\u672A\u5B9A\u4E49 IOV \u7684\u60C5\u51B5\u4E0B\u4F7F\u7528 PLSQL \u5757 ORA-17424=\u5C1D\u8BD5\u4E0D\u540C\u7684\u7F16\u7EC4\u64CD\u4F5C ORA-17425=\u8FD4\u56DE PLSQL \u5757\u4E2D\u7684\u6D41 ORA-17426=IN \u548C OUT \u7684\u7ED1\u5B9A\u5747\u4E3A NULL ORA-17427=\u4F7F\u7528\u672A\u521D\u59CB\u5316\u7684 OAC ORA-17428=\u8FDE\u63A5\u540E\u5FC5\u987B\u8C03\u7528\u767B\u5F55 ORA-17429=\u5FC5\u987B\u81F3\u5C11\u4E0E\u670D\u52A1\u5668\u8FDE\u63A5 ORA-17430=\u5FC5\u987B\u767B\u5F55\u5230\u670D\u52A1\u5668 ORA-17431=\u8981\u5206\u6790\u7684 SQL \u8BED\u53E5\u4E3A\u7A7A ORA-17432=all7 \u4E2D\u7684\u65E0\u6548\u9009\u9879 ORA-17433=\u8C03\u7528\u4E2D\u65E0\u6548\u7684\u53C2\u6570 ORA-17434=\u4E0D\u5728\u6D41\u6A21\u5F0F\u4E0B ORA-17435=IOV \u4E2D\u65E0\u6548\u7684 in_out_binds \u4E2A\u6570 ORA-17436=\u65E0\u6548\u7684 outbinds \u6570 ORA-17437=PLSQL \u5757 IN/OUT \u53C2\u6570\u4E2D\u51FA\u73B0\u9519\u8BEF ORA-17438=\u5185\u90E8 - \u4E0D\u671F\u671B\u7684\u503C ORA-17439=\u65E0\u6548\u7684 SQL \u7C7B\u578B ORA-17440=DBItem/DBType \u4E3A\u7A7A ORA-17441=\u4E0D\u652F\u6301\u7684 Oracle \u7248\u672C\u3002\u652F\u6301\u7684\u6700\u4F4E\u7248\u672C\u4E3A 7.2.3\u3002 ORA-17442=Refcursor \u503C\u65E0\u6548 ORA-17443=THIN \u9A71\u52A8\u7A0B\u5E8F\u4E2D\u4E0D\u652F\u6301\u4E3A\u7A7A\u7684\u7528\u6237\u6216\u53E3\u4EE4 ORA-17444=\u4E0D\u652F\u6301\u4ECE\u670D\u52A1\u5668\u63A5\u6536\u5230\u7684 TTC \u534F\u8BAE\u7248\u672C ORA-17445=LOB \u5DF2\u5728\u540C\u4E00\u4E2A\u4E8B\u52A1\u5904\u7406\u4E2D\u6253\u5F00 ORA-17446=LOB \u5DF2\u5728\u540C\u4E00\u4E2A\u4E8B\u52A1\u5904\u7406\u4E2D\u5173\u95ED ORA-17447=OALL8 \u5904\u4E8E\u4E0D\u4E00\u81F4\u72B6\u6001 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/driver/Messages_zh_TW.properties

# # US English Error messages for JDBC # # Note: # - Error codes are defined in DatabaseError.java. # # Message Guidelines: # (The existing messages are not consistent, but do follow this guideline # when you are creating new ones, or changing old ones.) # # - Messages start in lower-cases (eg. "invalid data type"). # - Do not put signs in message. This is bad: "-> NULL". # - Use past tense (eg. "failed to convert data"). # #-------------------------------------------------------------------------- # # Messages # #-------------------------------------------------------------------------- ORA-17001=\u5167\u90E8\u932F\u8AA4 ORA-17002=IO \u7570\u5E38 ORA-17003=\u4E0D\u6B63\u78BA\u7684\u8CC7\u6599\u6B04\u7D22\u5F15 ORA-17004=\u8CC7\u6599\u6B04\u985E\u578B\u7121\u6548 ORA-17005=\u4E0D\u652F\u63F4\u7684\u8CC7\u6599\u6B04\u985E\u578B ORA-17006=\u8CC7\u6599\u6B04\u540D\u7A31\u7121\u6548 ORA-17007=\u4E0D\u6B63\u78BA\u7684\u52D5\u614B\u8CC7\u6599\u6B04 ORA-17008=\u95DC\u9589\u7684\u9023\u7DDA ORA-17009=\u95DC\u9589\u7684\u6558\u8FF0\u53E5 ORA-17010=\u95DC\u9589\u7684\u7D50\u679C\u96C6 ORA-17011=\u8017\u640D\u7684\u7D50\u679C\u96C6 ORA-17012=\u53C3\u6578\u985E\u578B\u885D\u7A81 ORA-17014=\u672A\u547C\u53EB ResultSet.next ORA-17015=\u5DF2\u53D6\u6D88\u6558\u8FF0\u53E5 ORA-17016=\u6558\u8FF0\u53E5\u903E\u6642 ORA-17017=\u5DF2\u521D\u59CB\u5316\u6E38\u6A19 ORA-17018=\u4E0D\u6B63\u78BA\u7684\u6E38\u6A19 ORA-17019=\u53EA\u80FD\u63CF\u8FF0\u67E5\u8A62 ORA-17020=\u4E0D\u6B63\u78BA\u7684\u9810\u5148\u8CC7\u6599\u5217\u64F7\u53D6 ORA-17021=\u5B9A\u7FA9\u907A\u5931 ORA-17022=\u907A\u5931\u7D22\u5F15\u5B9A\u7FA9 ORA-17023=\u4E0D\u652F\u63F4\u7684\u529F\u80FD ORA-17024=\u7121\u8B80\u53D6\u8CC7\u6599 ORA-17025=defines.isNull () \u4E2D\u767C\u751F\u932F\u8AA4 ORA-17026=\u6578\u503C\u6EA2\u4F4D ORA-17027=\u4E32\u6D41\u5DF2\u95DC\u9589 ORA-17028=\u5728\u76EE\u524D\u7684\u7D50\u679C\u96C6\u95DC\u9589\u4E4B\u524D, \u7121\u6CD5\u9032\u884C\u65B0\u5B9A\u7FA9 ORA-17029=setReadOnly: \u4E0D\u652F\u63F4\u552F\u8B80\u9023\u7DDA ORA-17030=READ_COMMITTED \u548C SERIALIZABLE \u662F\u552F\u4E00\u6709\u6548\u7684\u4EA4\u6613\u5C64\u6B21 ORA-17031=setAutoClose: \u53EA\u652F\u63F4\u81EA\u52D5\u95DC\u9589\u6A21\u5F0F\u958B\u555F ORA-17032=\u7121\u6CD5\u5C07\u9810\u5148\u64F7\u53D6\u7684\u8CC7\u6599\u5217\u8A2D\u5B9A\u70BA\u96F6 ORA-17033=\u8B8A\u5F62 SQL92 \u5B57\u4E32\u7684\u4F4D\u7F6E ORA-17034=\u672A\u652F\u63F4 SQL92 \u7B26\u865F\u7684\u4F4D\u7F6E ORA-17035=\u4E0D\u652F\u63F4\u7684\u5B57\u5143\u96C6 !! ORA-17036=\u7570\u5E38 OracleNumber ORA-17037=\u7121\u6CD5\u8F49\u63DB UTF8 \u548C UCS2 ORA-17038=\u4F4D\u5143\u7D44\u9663\u5217\u9577\u5EA6\u4E0D\u8DB3 ORA-17039=\u5B57\u5143\u9663\u5217\u9577\u5EA6\u4E0D\u8DB3 ORA-17040=\u9023\u7DDA URL \u4E2D \u5FC5\u9808\u6307\u5B9A\u6B21\u5354\u5B9A ORA-17041=\u907A\u5931 IN \u6216 OUT \u53C3\u6578, \u6240\u5728\u7D22\u5F15: ORA-17042=\u4E0D\u6B63\u78BA\u7684\u6279\u6B21\u503C ORA-17043=\u4E0D\u6B63\u78BA\u7684\u6700\u5927\u4E32\u6D41\u5927\u5C0F ORA-17044=\u5167\u90E8\u932F\u8AA4: \u672A\u914D\u7F6E\u8CC7\u6599\u9663\u5217 ORA-17045=\u5167\u90E8\u932F\u8AA4: \u5617\u8A66\u5B58\u53D6\u6279\u6B21\u503C\u4E4B\u5F8C\u7684\u9023\u7D50\u503C ORA-17046=\u5167\u90E8\u932F\u8AA4: \u4E0D\u6B63\u78BA\u7684\u8CC7\u6599\u5B58\u53D6\u7D22\u5F15 ORA-17047=\u985E\u578B\u63CF\u8FF0\u5340\u5256\u6790\u767C\u751F\u932F\u8AA4 ORA-17048=\u672A\u5B9A\u7FA9\u7684\u985E\u578B ORA-17049=\u4E0D\u4E00\u81F4\u7684 java \u548C sql \u7269\u4EF6\u985E\u578B ORA-17050=\u5411\u91CF\u4E2D\u7121\u6B64\u5143\u7D20 ORA-17051=API \u7121\u6CD5\u7528\u65BC\u975E UDT \u985E\u578B ORA-17052=\u6B64\u53C3\u8003\u4E0D\u6B63\u78BA ORA-17053=\u6B64\u5927\u5C0F\u4E0D\u6B63\u78BA ORA-17054=LOB \u5B9A\u4F4D\u5668\u4E0D\u6B63\u78BA ORA-17055=\u4E0D\u6B63\u78BA\u7684\u5B57\u5143\u767C\u751F\u4F4D\u7F6E ORA-17056=\u4E0D\u652F\u63F4\u7684\u5B57\u5143\u96C6 (\u5728\u60A8\u7684\u985E\u5225\u8DEF\u5F91\u4E2D\u65B0\u589E orai18n.jar) ORA-17057=\u95DC\u9589\u7684 LOB ORA-17058=\u5167\u90E8\u932F\u8AA4: \u4E0D\u6B63\u78BA\u7684 NLS \u8F49\u63DB\u7387 ORA-17059=\u7121\u6CD5\u8F49\u63DB\u70BA\u5167\u90E8\u65B9\u5F0F ORA-17060=\u7121\u6CD5\u5EFA\u69CB\u63CF\u8FF0\u5340 ORA-17061=\u907A\u6F0F\u8FF0\u5340 ORA-17062=\u4E0D\u6B63\u78BA\u7684\u53C3\u8003\u6E38\u6A19 ORA-17063=\u4E0D\u5728\u7570\u52D5\u4E2D ORA-17064=\u4E0D\u6B63\u78BA\u7684\u8A9E\u6CD5\u6216\u8CC7\u6599\u5EAB\u540D\u7A31\u70BA\u7A7A\u503C ORA-17065=\u8F49\u63DB\u985E\u5225\u70BA\u7A7A\u503C ORA-17066=\u9700\u8981\u5B58\u53D6\u5C64\u7279\u5B9A\u5BE6\u65BD\u57F7\u884C ORA-17067=\u6240\u6307\u5B9A\u7684 Oracle URL \u4E0D\u6B63\u78BA ORA-17068=\u547C\u53EB\u5F15\u6578\u7121\u6548 ORA-17069=\u4F7F\u7528\u5916\u986F XA \u547C\u53EB ORA-17070=\u8CC7\u6599\u5927\u5C0F\u5927\u65BC\u6B64\u985E\u578B\u7684\u6700\u5927\u5927\u5C0F ORA-17071=\u8D85\u904E VARRAY \u7684\u6700\u5927\u9650\u5236 ORA-17072=\u8CC7\u6599\u6B04\u7684\u63D2\u5165\u503C\u592A\u5927 ORA-17074=\u4E0D\u6B63\u78BA\u7684\u540D\u7A31\u683C\u5F0F ORA-17075=\u4E0D\u6B63\u78BA\u7684\u50C5\u8F49\u9001\u7D50\u679C\u96C6\u4F5C\u696D ORA-17076=\u4E0D\u6B63\u78BA\u7684\u552F\u8B80\u7D50\u679C\u96C6\u4F5C\u696D ORA-17077=\u7121\u6CD5\u8A2D\u5B9A REF \u503C ORA-17078=\u7576\u5DF2\u958B\u555F\u9023\u7DDA\u6642\u7121\u6CD5\u57F7\u884C\u6B64\u4F5C\u696D ORA-17079=\u4F7F\u7528\u8005\u8B49\u660E\u8207\u73FE\u6709\u7684\u4E0D\u7B26 ORA-17080=\u4E0D\u6B63\u78BA\u7684\u6279\u6B21\u547D\u4EE4 ORA-17081=\u6279\u6B21\u4F5C\u696D\u6642\u767C\u751F\u932F\u8AA4 ORA-17082=\u7121\u76EE\u524D\u8CC7\u6599\u5217 ORA-17083=\u4E0D\u5728\u6B64\u63D2\u5165\u8CC7\u6599\u5217\u4E2D ORA-17084=\u547C\u53EB\u65BC\u6B64\u63D2\u5165\u8CC7\u6599\u5217 ORA-17085=\u767C\u751F\u885D\u7A81\u503C ORA-17086=\u5728\u63D2\u5165\u8CC7\u6599\u5217\u4E2D\u767C\u751F\u672A\u5B9A\u7FA9\u7684\u8CC7\u6599\u6B04\u503C ORA-17087=\u5FFD\u7565\u6548\u7387\u6697\u793A: setFetchDirection() ORA-17088=\u672A\u652F\u63F4\u7684\u8981\u6C42\u7D50\u679C\u96C6\u985E\u578B\u548C\u4E26\u884C\u5C64\u6B21\u8A9E\u6CD5 ORA-17089=\u5167\u90E8\u932F\u8AA4 ORA-17090=\u4E0D\u5141\u8A31\u6B64\u4F5C\u696D ORA-17091=\u7121\u6CD5\u5728\u8981\u6C42\u7684\u985E\u578B\u548C(\u6216)\u4E26\u884C\u5C64\u6B21\u5EFA\u7ACB\u7D50\u679C\u96C6 ORA-17092=JDBC \u6558\u8FF0\u53E5\u7121\u6CD5\u5728\u547C\u53EB\u8655\u7406\u7D50\u675F\u6642\u5EFA\u7ACB\u6216\u57F7\u884C ORA-17093=OCI \u4F5C\u696D\u50B3\u56DE OCI_SUCCESS_WITH_INFO ORA-17094=\u7269\u4EF6\u985E\u578B\u7248\u672C\u4E0D\u7B26\u5408 ORA-17095=\u5C1A\u672A\u8A2D\u5B9A\u6558\u8FF0\u53E5\u5FEB\u53D6\u5927\u5C0F ORA-17096=\u7121\u6CD5\u555F\u7528\u6B64\u908F\u8F2F\u9023\u7DDA\u7684\u6558\u8FF0\u53E5\u5FEB\u53D6. ORA-17097=PL/SQL \u7D22\u5F15\u8868\u683C\u5143\u7D20\u985E\u578B\u7121\u6548 ORA-17098=\u7A7A\u7684 lob \u4F5C\u696D\u7121\u6548 ORA-17099=PL/SQL \u7D22\u5F15\u8868\u683C\u9663\u5217\u9577\u5EA6\u7121\u6548 ORA-17100=\u8CC7\u6599\u5EAB Java \u7269\u4EF6\u7121\u6548 ORA-17101=OCI \u9023\u7DDA\u5340\u7269\u4EF6\u7684\u5C6C\u6027\u7121\u6548 ORA-17102=Bfile \u662F\u552F\u8B80\u7684 ORA-17103=getConnection \u50B3\u56DE\u7684\u9023\u7DDA\u985E\u578B\u7121\u6548. \u8ACB\u4F7F\u7528 getJavaSqlConnection ORA-17104=\u8981\u57F7\u884C\u7684 SQL \u6558\u8FF0\u53E5\u4E0D\u80FD\u662F\u7A7A\u7684\u6216\u7A7A\u503C ORA-17105=\u672A\u8A2D\u5B9A\u9023\u7DDA\u968E\u6BB5\u4F5C\u696D\u6642\u9593\u5340 ORA-17106=\u6307\u5B9A\u7684 JDBC-OCI \u9A45\u52D5\u7A0B\u5F0F\u9023\u7DDA\u96C6\u5340\u7D44\u614B\u7121\u6548 ORA-17107=\u6307\u5B9A\u7684\u4EE3\u7406\u4E3B\u6A5F\u985E\u578B\u7121\u6548 ORA-17108=defineColumnType \u4E26\u672A\u6307\u5B9A\u9577\u5EA6\u4E0A\u9650 ORA-17109=\u627E\u4E0D\u5230\u6A19\u6E96\u7684 Java \u5B57\u5143\u7DE8\u78BC ORA-17110=\u5B8C\u6210\u57F7\u884C, \u4F46\u6709\u8B66\u544A ORA-17111=\u6307\u5B9A\u7684\u9023\u7DDA\u5FEB\u53D6 TTL \u903E\u6642\u7121\u6548 ORA-17112=\u6307\u5B9A\u7684\u7E6B\u7DDA\u9593\u9694\u7121\u6548 ORA-17113=\u7E6B\u7DDA\u9593\u9694\u503C\u5927\u65BC\u5FEB\u53D6\u903E\u6642\u503C ORA-17114=\u7121\u6CD5\u5728\u5168\u57DF\u4EA4\u6613\u4E2D\u4F7F\u7528\u5340\u57DF\u4EA4\u6613\u78BA\u8A8D ORA-17115=\u7121\u6CD5\u5728\u5168\u57DF\u4EA4\u6613\u4E2D\u4F7F\u7528\u5340\u57DF\u4EA4\u6613\u5012\u56DE ORA-17116=\u7121\u6CD5\u958B\u555F\u4F5C\u7528\u4E2D\u5168\u57DF\u4EA4\u6613\u7684\u81EA\u52D5\u78BA\u8A8D ORA-17117=\u7121\u6CD5\u8A2D\u5B9A\u4F5C\u7528\u4E2D\u5168\u57DF\u4EA4\u6613\u7684\u5132\u5B58\u9EDE ORA-17118=\u7121\u6CD5\u53D6\u5F97\u6307\u5B9A\u4E4B\u300C\u5132\u5B58\u9EDE\u300D\u7684 ID ORA-17119=\u7121\u6CD5\u53D6\u5F97\u672A\u6307\u5B9A\u4E4B\u300C\u5132\u5B58\u9EDE\u300D\u7684\u540D\u7A31 ORA-17120=\u7121\u6CD5\u8A2D\u5B9A\u5DF2\u958B\u555F\u81EA\u52D5\u78BA\u8A8D\u7684\u300C\u5132\u5B58\u9EDE\u300D ORA-17121=\u7121\u6CD5\u5012\u56DE\u81F3\u5DF2\u958B\u555F\u81EA\u52D5\u78BA\u8A8D\u7684\u300C\u5132\u5B58\u9EDE\u300D ORA-17122=\u7121\u6CD5\u5012\u56DE\u81F3\u5168\u57DF\u4EA4\u6613\u4E2D\u7684\u5340\u57DF\u4EA4\u6613\u300C\u5132\u5B58\u9EDE\u300D ORA-17123=\u6307\u5B9A\u7684\u6558\u8FF0\u53E5\u5FEB\u53D6\u5927\u5C0F\u7121\u6548 ORA-17124=\u6307\u5B9A\u7684\u9023\u7DDA\u5FEB\u53D6\u300C\u7121\u6D3B\u52D5\u300D\u903E\u6642\u7121\u6548 ORA-17125=\u660E\u78BA\u5FEB\u53D6\u50B3\u56DE\u7684\u6558\u8FF0\u53E5\u985E\u578B\u4E0D\u6B63\u78BA ORA-17126=\u300C\u56FA\u5B9A\u7B49\u5F85\u300D\u903E\u6642\u7D93\u6B77\u6642\u9593 ORA-17127=\u6307\u5B9A\u7684\u300C\u56FA\u5B9A\u7B49\u5F85\u300D\u903E\u6642\u7121\u6548 ORA-17128=SQL \u5B57\u4E32\u4E0D\u662F\u300C\u67E5\u8A62\u300D ORA-17129=SQL \u5B57\u4E32\u4E0D\u662F\u300CDML \u6558\u8FF0\u53E5\u300D ORA-17132=\u8981\u6C42\u7684\u8F49\u63DB\u7121\u6548 ORA-17133=UNUSED ORA-17134=SQL \u4E2D\u7684\u6307\u5B9A\u53C3\u6578\u9577\u5EA6\u8D85\u904E 32 \u500B\u5B57\u5143 ORA-17135=setXXXStream \u4E2D\u4F7F\u7528\u7684\u53C3\u6578\u540D\u7A31\u5728 SQL \u4E2D\u51FA\u73FE\u4E00\u6B21\u4EE5\u4E0A ORA-17136=DATALINK URL \u683C\u5F0F\u932F\u8AA4, \u8ACB\u4F7F\u7528 getString() ORA-17137=\u9023\u7DDA\u5FEB\u53D6\u672A\u555F\u7528\u6216\u4E0D\u662F\u6709\u6548\u7684\u555F\u7528\u5FEB\u53D6\u8CC7\u6599\u4F86\u6E90 ORA-17138=\u7121\u6548\u7684\u9023\u7DDA\u5FEB\u53D6\u540D\u7A31. \u5FC5\u9808\u662F\u6709\u6548\u7684\u5B57\u4E32, \u800C\u4E14\u662F\u552F\u4E00\u7684. ORA-17139=\u7121\u6548\u7684\u9023\u7DDA\u5FEB\u53D6\u7279\u6027 ORA-17140=\u5DF2\u7D93\u6709\u6B64\u5FEB\u53D6\u540D\u7A31\u7684\u9023\u7DDA\u5FEB\u53D6\u5B58\u5728 ORA-17141=\u6B64\u5FEB\u53D6\u540D\u7A31\u7684\u9023\u7DDA\u5FEB\u53D6\u4E0D\u5B58\u5728 ORA-17142=\u5DF2\u7D93\u505C\u7528\u6B64\u5FEB\u53D6\u540D\u7A31\u7684\u9023\u7DDA\u5FEB\u53D6 ORA-17143=\u5728\u9023\u7DDA\u5FEB\u53D6\u4E2D\u767C\u73FE\u7121\u6548\u6216\u904E\u6642\u7684\u9023\u7DDA ORA-17144=\u672A\u57F7\u884C\u6558\u8FF0\u53E5\u8655\u7406 ORA-17145=\u6536\u5230\u7684\u300CONS \u4E8B\u4EF6\u300D\u7121\u6548 ORA-17146=\u6536\u5230\u7684\u300CONS \u4E8B\u4EF6\u7248\u672C\u300D\u7121\u6548 ORA-17147=\u5617\u8A66\u8A2D\u5B9A\u4E0D\u5B58\u5728\u65BC SQL \u7684\u53C3\u6578\u540D\u7A31 ORA-17148=\u50C5\u5728\u7CBE\u7C21\u7248\u624D\u6709\u5BE6\u884C\u65B9\u6CD5 ORA-17149=\u9019\u5DF2\u7D93\u662F\u4EE3\u7406\u4E3B\u6A5F\u968E\u6BB5\u4F5C\u696D ORA-17150=\u4EE3\u7406\u4E3B\u6A5F\u968E\u6BB5\u4F5C\u696D\u7684\u5F15\u6578\u932F\u8AA4 ORA-17151=Clob \u592A\u5927, \u7121\u6CD5\u5132\u5B58\u5728\u300CJava \u5B57\u4E32\u300D\u4E2D ORA-17152=\u6B64\u65B9\u6CD5\u50C5\u5728\u908F\u8F2F\u9023\u7DDA\u5BE6\u884C ORA-17153=\u6B64\u65B9\u6CD5\u50C5\u5728\u5BE6\u9AD4\u9023\u7DDA\u5BE6\u884C ORA-17154=\u7121\u6CD5\u5C07 Oracle \u5B57\u5143\u5C0D\u61C9\u81F3 Unicode ORA-17155=\u7121\u6CD5\u5C07 Unicode \u5C0D\u61C9\u81F3 Oracle \u5B57\u5143 ORA-17156=\u300C\u7AEF\u5C0D\u7AEF\u300D\u6E2C\u91CF\u7D50\u679C\u503C\u7684\u9663\u5217\u5927\u5C0F\u7121\u6548 ORA-17157=setString \u53EA\u80FD\u8655\u7406\u5C0F\u65BC 32766 \u500B\u5B57\u5143\u7684\u5B57\u4E32 ORA-17158=\u6301\u7E8C\u6642\u9593\u5C0D\u6B64\u51FD\u6578\u7121\u6548 ORA-17159=\u7AEF\u5C0D\u7AEF\u8FFD\u8E64\u7684\u6E2C\u91CF\u7D50\u679C\u503C\u592A\u9577 ORA-17160=\u57F7\u884C\u76F8\u95DC\u8CC7\u8A0A\u74B0\u5883 ID \u5E8F\u865F\u8D85\u51FA\u7BC4\u570D ORA-17161=\u4F7F\u7528\u7121\u6548\u7684\u4EA4\u6613\u6A21\u5F0F ORA-17162=\u4E0D\u652F\u63F4\u7684\u4FDD\u7559\u529F\u80FD\u503C ORA-17163=\u555F\u7528\u9023\u7DDA\u5FEB\u53D6\u529F\u80FD\u6642\u7121\u6CD5\u4F7F\u7528 getXAConnection() ORA-17164=\u958B\u555F\u5FEB\u53D6\u529F\u80FD\u6642\u7121\u6CD5\u5F9E\u5BE6\u9AD4\u9023\u7DDA\u547C\u53EB getXAResource() ORA-17165=\u6B64\u9023\u7DDA\u4F3A\u670D\u5668\u4E2D\u672A\u9810\u5148\u8A2D\u5B9A\u6B64\u9023\u7DDA\u7684 DBMS_JDBC \u5957\u88DD\u7A0B\u5F0F ORA-17166=\u7121\u6CD5\u5728 PLSQL \u6558\u8FF0\u53E5\u57F7\u884C\u64F7\u53D6 ORA-17167=\u627E\u4E0D\u5230 PKI \u985E\u5225. \u82E5\u8981\u4F7F\u7528 'connect /' \u529F\u80FD, oraclepki.jar \u5FC5\u9808\u5728\u985E\u5225\u8DEF\u5F91\u4E2D. ORA-17168=\u300C\u5BC6\u78BC\u5132\u5B58\u5EAB\u300D\u767C\u751F\u554F\u984C. \u8ACB\u6AA2\u67E5\u516C\u4E8B\u5305\u4F4D\u7F6E\u662F\u5426\u6709\u958B\u555F\u7684\u516C\u4E8B\u5305 (cwallet.sso), \u4E26\u4E14\u4F7F\u7528 mkstore \u516C\u7528\u7A0B\u5F0F\u78BA\u8A8D\u6B64\u516C\u4E8B\u5305\u662F\u5426\u5305\u542B\u6B63\u78BA\u7684\u8B49\u660E\u8CC7\u6599. ORA-17169=\u7121\u6CD5\u9023\u7D50\u4E32\u6D41\u81F3 ScrollableResultSet \u6216 UpdatableResultSet ORA-17170=\u300C\u547D\u540D\u7A7A\u9593\u300D\u4E0D\u80FD\u662F\u7A7A\u7684 ORA-17171=\u5C6C\u6027\u9577\u5EA6\u4E0D\u80FD\u8D85\u904E 30 \u500B\u5B57\u5143 ORA-17172=\u5C6C\u6027\u503C\u4E0D\u80FD\u8D85\u904E 400 \u500B\u5B57\u5143 ORA-17173=\u50B3\u56DE\u53C3\u6578\u4E26\u6C92\u6709\u5168\u90E8\u90FD\u8A3B\u518A ORA-17174=\u552F\u4E00\u652F\u63F4\u7684\u547D\u540D\u7A7A\u9593\u662F CLIENTCONTEXT ORA-17175=\u8A2D\u5B9A\u9060\u7AEF ONS \u7D44\u614B\u6642\u767C\u751F\u932F\u8AA4 ORA-17200=\u7121\u6CD5\u6B63\u78BA\u7684\u5C07 XA \u958B\u555F\u5B57\u4E32\u5F9E Java \u8F49\u63DB\u70BA C ORA-17201=\u7121\u6CD5\u6B63\u78BA\u7684\u5C07 XA \u95DC\u9589\u5B57\u4E32\u5F9E Java \u8F49\u63DB\u70BA C ORA-17202=\u7121\u6CD5\u6B63\u78BA\u7684\u5C07 RM \u540D\u7A31\u5F9E Java \u8F49\u63DB\u70BA C ORA-17203=\u7121\u6CD5\u5C07\u6307\u6A19\u985E\u578B\u8F49\u578B\u70BA jlong ORA-17204=\u8F38\u5165\u9663\u5217\u592A\u77ED, \u7121\u6CD5\u4FDD\u7559 OCI \u6A19\u793A\u5143 ORA-17205=\u7121\u6CD5\u4F7F\u7528 xaoSvcCtx \u53D6\u5F97 C-XA \u7684 OCISvcCtx \u6A19\u793A\u5143 ORA-17206=\u7121\u6CD5\u4F7F\u7528 xaoEnv \u53D6\u5F97 C-XA \u7684 OCIEnv \u6A19\u793A\u5143 ORA-17207=DataSource \u672A\u8A2D\u5B9A tnsEntry \u5C6C\u6027 ORA-17213=C-XA \u5728 xa_open \u6642\u50B3\u56DE XAER_RMERR ORA-17215=C-XA \u5728 xa_open \u6642\u50B3\u56DE XAER_INVAL ORA-17216=C-XA \u5728 xa_open \u6642\u50B3\u56DE XAER_PROTO ORA-17233=C-XA \u5728 xa_close \u6642\u50B3\u56DE XAER_RMERR ORA-17235=C-XA \u5728 xa_close \u6642\u50B3\u56DE XAER_INVAL ORA-17236=C-XA \u5728 xa_close \u6642\u50B3\u56DE XAER_PROTO # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. # #-------------------------------------------------------------------------- # # TTC Messages # #-------------------------------------------------------------------------- ORA-17401=\u9055\u53CD\u5354\u5B9A ORA-17402=\u53EA\u9810\u671F\u4E00\u500B RPA \u8A0A\u606F ORA-17403=\u53EA\u9810\u671F\u4E00\u500B RXH \u8A0A\u606F ORA-17404=\u6536\u5230\u8D85\u51FA\u9810\u671F\u7684 RXD ORA-17405=UAC \u9577\u5EA6\u4E0D\u70BA\u96F6 ORA-17406=\u8D85\u51FA\u7DE9\u885D\u5340\u7684\u6700\u5927\u9577\u5EA6 ORA-17407=\u985E\u578B\u8868\u793A\u6CD5 (setRep) \u7121\u6548 ORA-17408=\u985E\u578B\u8868\u793A\u6CD5 (getRep) \u7121\u6548 ORA-17409=\u4E0D\u6B63\u78BA\u7684\u7DE9\u885D\u5340\u9577\u5EA6 ORA-17410=\u6C92\u6709\u5F9E\u57E0\u5EA7\u8B80\u53D6\u8CC7\u6599 ORA-17411=\u8CC7\u6599\u985E\u578B\u8868\u793A\u6CD5\u4E0D\u76F8\u7B26 ORA-17412=\u8D85\u904E\u6700\u5927\u7684\u985E\u578B\u9577\u5EA6 ORA-17413=\u8D85\u904E\u7D22\u5F15\u9375\u5927\u5C0F ORA-17414=\u7DE9\u885D\u5340\u5927\u5C0F\u4E0D\u8DB3\u4EE5\u5132\u5B58\u8CC7\u6599\u6B04\u540D\u7A31 ORA-17415=\u672A\u8655\u7406\u6B64\u985E\u578B ORA-17416=FATAL ORA-17417=NLS \u554F\u984C, \u6B04\u4F4D\u540D\u7A31\u89E3\u78BC\u5931\u6557 ORA-17418=\u5167\u90E8\u7D50\u69CB\u6B04\u4F4D\u9577\u5EA6\u932F\u8AA4 ORA-17419=\u50B3\u56DE\u7684\u8CC7\u6599\u6B04\u6578\u76EE\u4E0D\u6B63\u78BA ORA-17420=\u672A\u5B9A\u7FA9 Oracle \u7248\u672C ORA-17421=\u672A\u5B9A\u7FA9\u985E\u578B\u6216\u9023\u7DDA ORA-17422=\u4E0D\u6B63\u78BA\u7684\u7D44\u7E54\u985E\u5225 ORA-17423=\u4F7F\u7528\u7121 IOV \u5B9A\u7FA9\u7684 PLSQL \u5340\u584A ORA-17424=\u5617\u8A66\u4E0D\u540C\u7684\u6392\u5217\u4F5C\u696D ORA-17425=\u50B3\u56DE PLSQL \u5340\u584A\u4E2D\u7684\u4E32\u6D41 ORA-17426=IN \u548C OUT \u9023\u7D50\u7686\u70BA\u7A7A\u503C ORA-17427=\u4F7F\u7528\u672A\u521D\u59CB\u5316\u7684 OAC ORA-17428=\u5FC5\u9808\u5728\u9023\u7DDA\u5F8C\u547C\u53EB\u767B\u5165 ORA-17429=\u81F3\u5C11\u5FC5\u9808\u9023\u7DDA\u81F3\u4F3A\u670D\u5668 ORA-17430=\u5FC5\u9808\u767B\u5165\u4F3A\u670D\u5668 ORA-17431=SQL Statement \u5256\u6790\u70BA\u7A7A\u503C ORA-17432=\u4E0D\u6B63\u78BA\u7684 O7 \u9078\u9805 ORA-17433=\u547C\u53EB\u5F15\u6578\u7121\u6548 ORA-17434=\u4E0D\u662F\u4E32\u6D41\u6A21\u5F0F ORA-17435=IOV \u4E2D\u4E0D\u6B63\u78BA\u7684 in_out_binds \u6578 ORA-17436=\u4E0D\u6B63\u78BA\u7684\u5916\u90E8\u9023\u7D50\u6578 ORA-17437=PLSQL \u5340\u584A IN/OUT \u5F15\u6578\u4E2D\u6709\u932F\u8AA4 ORA-17438=\u5167\u90E8 - \u672A\u9810\u671F\u503C ORA-17439=SQL \u985E\u578B\u7121\u6548 ORA-17440=DBItem/DBType \u70BA\u7A7A\u503C ORA-17441=\u4E0D\u652F\u63F4\u7684 Oracle \u7248\u672C. \u6240\u652F\u63F4\u7684\u6700\u65E9\u7248\u672C\u70BA 7.2.3. ORA-17442=Refcursor \u503C\u4E0D\u6B63\u78BA ORA-17443=\u7A7A\u503C\u7684\u4F7F\u7528\u8005\u6216\u5BC6\u78BC\u4E0D\u652F\u63F4\u65BC THIN \u9A45\u52D5\u7A0B\u5F0F ORA-17444=\u4E0D\u652F\u63F4\u7531\u4F3A\u670D\u5668\u6240\u63A5\u6536\u7684 TTC \u5354\u5B9A\u7248\u672C ORA-17445=\u5DF2\u7D93\u5728\u76F8\u540C\u7684\u4EA4\u6613\u4E2D\u958B\u555F LOB ORA-17446=\u5DF2\u7D93\u5728\u76F8\u540C\u7684\u4EA4\u6613\u4E2D\u95DC\u9589 LOB ORA-17447=OALL8 \u7684\u72C0\u614B\u4E0D\u4E00\u81F4 # ^ ^ ^ ^ # | | | | P L E A S E R E A D # # Add new message above this comment. # Before you add a new message, please read "Message Guideline" at the # top of this file first. #

oracle/jdbc/oci/OracleOCIConnection.class

                    package oracle.jdbc.oci;

                    public 
                    synchronized 
                    class OracleOCIConnection 
                    extends oracle.jdbc.driver.OracleOCIConnection {
    
                    public void OracleOCIConnection(String, String, String, String, java.util.Properties, Object) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/pool/OraclePooledConnection.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OraclePooledConnection 
                    implements javax.sql.PooledConnection, java.io.Serializable {
    
                    public 
                    static 
                    final String 
                    url_string = connection_url;
    
                    public 
                    static 
                    final String 
                    pool_auto_commit_string = pool_auto_commit;
    
                    public 
                    static 
                    final String 
                    object_type_map = obj_type_map;
    
                    public 
                    static 
                    final String 
                    transaction_isolation = trans_isolation;
    
                    public 
                    static 
                    final String 
                    statement_cache_size = stmt_cache_size;
    
                    public 
                    static 
                    final String 
                    isClearMetaData = stmt_cache_clear_metadata;
    
                    public 
                    static 
                    final String 
                    ImplicitStatementCachingEnabled = ImplicitStatementCachingEnabled;
    
                    public 
                    static 
                    final String 
                    ExplicitStatementCachingEnabled = ExplicitStatementCachingEnabled;
    
                    public 
                    static 
                    final String 
                    LoginTimeout = LoginTimeout;
    
                    public 
                    static 
                    final String 
                    connect_auto_commit_string = connect_auto_commit;
    
                    public 
                    static 
                    final String 
                    implicit_caching_enabled = implicit_cache_enabled;
    
                    public 
                    static 
                    final String 
                    explicit_caching_enabled = explict_cache_enabled;
    
                    public 
                    static 
                    final String 
                    connection_properties_string = connection_properties;
    
                    public 
                    static 
                    final String 
                    event_listener_string = event_listener;
    
                    public 
                    static 
                    final String 
                    sql_exception_string = sql_exception;
    
                    public 
                    static 
                    final String 
                    close_callback_string = close_callback;
    
                    public 
                    static 
                    final String 
                    private_data = private_data;
    
                    private java.util.Hashtable 
                    eventListeners;
    
                    private java.sql.SQLException 
                    sqlException;
    
                    protected boolean 
                    autoCommit;
    
                    private javax.sql.ConnectionEventListener 
                    iccEventListener;
    
                    protected 
                    transient oracle.jdbc.internal.OracleConnection 
                    logicalHandle;
    
                    protected 
                    transient oracle.jdbc.internal.OracleConnection 
                    physicalConn;
    
                    private java.util.Hashtable 
                    connectionProperty;
    
                    public java.util.Properties 
                    cachedConnectionAttributes;
    
                    public java.util.Properties 
                    unMatchedCachedConnAttr;
    
                    public int 
                    closeOption;
    
                    protected String 
                    pcUser;
    
                    private String 
                    pcKey;
    
                    private oracle.jdbc.driver.OracleCloseCallback 
                    closeCallback;
    
                    private Object 
                    privateData;
    
                    private long 
                    lastAccessedTime;
    
                    protected String 
                    dataSourceInstanceNameKey;
    
                    protected String 
                    dataSourceHostNameKey;
    
                    protected String 
                    dataSourceDbUniqNameKey;
    
                    protected boolean 
                    connectionMarkedDown;
    
                    protected boolean 
                    isHostDown;
    
                    protected 
                    transient oracle.jdbc.driver.OracleDriver 
                    oracleDriver;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OraclePooledConnection();
    
                    public void OraclePooledConnection(String) 
                    throws java.sql.SQLException;
    
                    public void OraclePooledConnection(String, String, String) 
                    throws java.sql.SQLException;
    
                    public void OraclePooledConnection(java.sql.Connection);
    
                    public void OraclePooledConnection(java.sql.Connection, boolean);
    
                    private void 
                    initialize(java.sql.Connection);
    
                    public 
                    synchronized void 
                    addConnectionEventListener(javax.sql.ConnectionEventListener);
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getLogicalHandle() 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getPhysicalHandle() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setLastAccessedTime(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getLastAccessedTime() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    registerCloseCallback(oracle.jdbc.driver.OracleCloseCallback, Object);
    
                    public 
                    synchronized void 
                    removeConnectionEventListener(javax.sql.ConnectionEventListener);
    
                    public 
                    synchronized void 
                    registerImplicitCacheConnectionEventListener(javax.sql.ConnectionEventListener);
    
                    public void 
                    logicalCloseForImplicitConnectionCache();
    
                    public void 
                    logicalClose();
    
                    private void 
                    callListener(int);
    
                    private void 
                    callImplicitCacheListener(int);
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getStmtCacheSize();
    
                    public void 
                    setStatementCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getStatementCacheSize() 
                    throws java.sql.SQLException;
    
                    public void 
                    setImplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getImplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public void 
                    setExplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getExplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public void 
                    purgeImplicitCache() 
                    throws java.sql.SQLException;
    
                    public void 
                    purgeExplicitCache() 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    getStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.CallableStatement 
                    getCallWithKey(String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isStatementCacheInitialized();
    
                    public 
                    final void 
                    setProperties(java.util.Hashtable);
    
                    public 
                    final void 
                    setUserName(String, String);
    
                    final OracleConnectionCacheEntry 
                    addToImplicitCache(java.util.HashMap, OracleConnectionCacheEntry);
    
                    final OracleConnectionCacheEntry 
                    removeFromImplictCache(java.util.HashMap);
    
                    public javax.transaction.xa.XAResource 
                    getXAResource() 
                    throws java.sql.SQLException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException, java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleConnectionCacheCallback.class

                    package oracle.jdbc.pool;

                    public 
                    abstract 
                    interface OracleConnectionCacheCallback {
    
                    public 
                    abstract boolean 
                    handleAbandonedConnection(oracle.jdbc.OracleConnection, Object);
    
                    public 
                    abstract void 
                    releaseConnection(oracle.jdbc.OracleConnection, Object);
}

                

oracle/jdbc/pool/OracleConnectionCacheEntry.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleConnectionCacheEntry {
    java.util.Vector 
                    userConnList;
    java.util.HashMap 
                    attrConnMap;
    void OracleConnectionCacheEntry();
}

                

oracle/jdbc/pool/OracleDataSource.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleDataSource 
                    implements javax.sql.DataSource, java.io.Serializable, javax.naming.Referenceable {
    
                    protected java.io.PrintWriter 
                    logWriter;
    
                    protected int 
                    loginTimeout;
    
                    protected String 
                    databaseName;
    
                    protected String 
                    serviceName;
    
                    protected String 
                    dataSourceName;
    
                    protected String 
                    description;
    
                    protected String 
                    networkProtocol;
    
                    protected int 
                    portNumber;
    
                    protected String 
                    user;
    
                    protected String 
                    password;
    
                    protected String 
                    serverName;
    
                    protected String 
                    url;
    
                    protected String 
                    driverType;
    
                    protected String 
                    tnsEntry;
    
                    protected int 
                    maxStatements;
    
                    protected boolean 
                    implicitCachingEnabled;
    
                    protected boolean 
                    explicitCachingEnabled;
    
                    protected 
                    transient OracleImplicitConnectionCache 
                    odsCache;
    
                    protected 
                    transient OracleConnectionCacheManager 
                    cacheManager;
    
                    protected String 
                    connCacheName;
    
                    protected java.util.Properties 
                    connCacheProperties;
    
                    protected java.util.Properties 
                    connectionProperties;
    
                    protected boolean 
                    connCachingEnabled;
    
                    protected boolean 
                    fastConnFailover;
    
                    protected String 
                    onsConfigStr;
    
                    public boolean 
                    isOracleDataSource;
    
                    private 
                    static 
                    final boolean 
                    fastConnectionFailoverSysProperty;
    
                    private boolean 
                    urlExplicit;
    
                    private boolean 
                    useDefaultConnection;
    
                    protected 
                    transient oracle.jdbc.driver.OracleDriver 
                    driver;
    
                    private 
                    static 
                    final String 
                    spawnNewThreadToCancelProperty = oracle.jdbc.spawnNewThreadToCancel;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleDataSource() 
                    throws java.sql.SQLException;
    void 
                    processFastConnectionFailoverSysProperty();
    
                    public java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getConnection(String, String) 
                    throws java.sql.SQLException;
    
                    protected java.sql.Connection 
                    getPhysicalConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getConnection(String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized void 
                    cacheInitialize() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getConnectionCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionCacheName(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    getConnectionCacheName() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionCacheProperties(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getConnectionCacheProperties() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setFastConnectionFailoverEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getFastConnectionFailoverEnabled() 
                    throws java.sql.SQLException;
    
                    public String 
                    getONSConfiguration() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setONSConfiguration(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getLoginTimeout();
    
                    public 
                    synchronized void 
                    setLoginTimeout(int);
    
                    public 
                    synchronized void 
                    setLogWriter(java.io.PrintWriter);
    
                    public 
                    synchronized java.io.PrintWriter 
                    getLogWriter();
    
                    public 
                    synchronized void 
                    setTNSEntryName(String);
    
                    public 
                    synchronized String 
                    getTNSEntryName();
    
                    public 
                    synchronized void 
                    setDataSourceName(String);
    
                    public 
                    synchronized String 
                    getDataSourceName();
    
                    public 
                    synchronized String 
                    getDatabaseName();
    
                    public 
                    synchronized void 
                    setDatabaseName(String);
    
                    public 
                    synchronized void 
                    setServiceName(String);
    
                    public 
                    synchronized String 
                    getServiceName();
    
                    public 
                    synchronized void 
                    setServerName(String);
    
                    public 
                    synchronized String 
                    getServerName();
    
                    public 
                    synchronized void 
                    setURL(String);
    
                    public 
                    synchronized String 
                    getURL() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setUser(String);
    
                    public 
                    synchronized String 
                    getUser();
    
                    public 
                    synchronized void 
                    setPassword(String);
    
                    protected 
                    synchronized String 
                    getPassword();
    
                    public 
                    synchronized String 
                    getDescription();
    
                    public 
                    synchronized void 
                    setDescription(String);
    
                    public 
                    synchronized String 
                    getDriverType();
    
                    public 
                    synchronized void 
                    setDriverType(String);
    
                    public 
                    synchronized String 
                    getNetworkProtocol();
    
                    public 
                    synchronized void 
                    setNetworkProtocol(String);
    
                    public 
                    synchronized void 
                    setPortNumber(int);
    
                    public 
                    synchronized int 
                    getPortNumber();
    
                    public 
                    synchronized javax.naming.Reference 
                    getReference() 
                    throws javax.naming.NamingException;
    
                    protected void 
                    addRefProperties(javax.naming.Reference);
    void 
                    makeURL() 
                    throws java.sql.SQLException;
    
                    protected void 
                    trace(String);
    
                    protected void 
                    copy(OracleDataSource) 
                    throws java.sql.SQLException;
    
                    public void 
                    setMaxStatements(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getMaxStatements() 
                    throws java.sql.SQLException;
    
                    public void 
                    setImplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getImplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public void 
                    setExplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getExplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public void 
                    setConnectionProperties(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getConnectionProperties() 
                    throws java.sql.SQLException;
    
                    public 
                    static 
                    final java.util.Properties 
                    filterConnectionProperties(java.util.Properties);
    
                    private void 
                    setSpawnNewThreadToCancel(boolean);
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException, java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleImplicitConnectionCache.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleImplicitConnectionCache {
    
                    protected OracleDataSource 
                    cacheEnabledDS;
    
                    protected String 
                    cacheName;
    
                    protected OracleConnectionPoolDataSource 
                    connectionPoolDS;
    
                    protected boolean 
                    fastConnectionFailoverEnabled;
    
                    protected String 
                    defaultUser;
    
                    protected String 
                    defaultPassword;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_MIN_LIMIT = 0;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_MAX_LIMIT = 2147483647;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_INITIAL_LIMIT = 0;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_MAX_STATEMENTS_LIMIT = 0;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_INACTIVITY_TIMEOUT = 0;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_TIMETOLIVE_TIMEOUT = 0;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_ABANDONED_CONN_TIMEOUT = 0;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_CONNECTION_WAIT_TIMEOUT = 0;
    
                    protected 
                    static 
                    final String 
                    DEFAULT_ATTRIBUTE_WEIGHT = 0;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_LOWER_THRESHOLD_LIMIT = 20;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_PROPERTY_CHECK_INTERVAL = 900;
    
                    protected 
                    static 
                    final int 
                    CLOSE_AND_REMOVE_ALL_CONNECTIONS = 1;
    
                    protected 
                    static 
                    final int 
                    CLOSE_AND_REMOVE_FAILOVER_CONNECTIONS = 2;
    
                    protected 
                    static 
                    final int 
                    PROCESS_INACTIVITY_TIMEOUT = 4;
    
                    protected 
                    static 
                    final int 
                    CLOSE_AND_REMOVE_N_CONNECTIONS = 8;
    
                    protected 
                    static 
                    final int 
                    DISABLE_STATEMENT_CACHING = 16;
    
                    protected 
                    static 
                    final int 
                    RESET_STATEMENT_CACHE_SIZE = 18;
    
                    protected 
                    static 
                    final int 
                    CLOSE_AND_REMOVE_RLB_CONNECTIONS = 24;
    
                    private 
                    static 
                    final String 
                    ATTRKEY_DELIM = 0xffff;
    
                    protected int 
                    cacheMinLimit;
    
                    protected int 
                    cacheMaxLimit;
    
                    protected int 
                    cacheInitialLimit;
    
                    protected int 
                    cacheMaxStatementsLimit;
    
                    protected java.util.Properties 
                    cacheAttributeWeights;
    
                    protected int 
                    cacheInactivityTimeout;
    
                    protected int 
                    cacheTimeToLiveTimeout;
    
                    protected int 
                    cacheAbandonedConnectionTimeout;
    
                    protected int 
                    cacheLowerThresholdLimit;
    
                    protected int 
                    cachePropertyCheckInterval;
    
                    protected boolean 
                    cacheClosestConnectionMatch;
    
                    protected boolean 
                    cacheValidateConnection;
    
                    protected int 
                    cacheConnectionWaitTimeout;
    
                    static 
                    final String 
                    MIN_LIMIT_KEY = MinLimit;
    
                    static 
                    final String 
                    MAX_LIMIT_KEY = MaxLimit;
    
                    static 
                    final String 
                    INITIAL_LIMIT_KEY = InitialLimit;
    
                    static 
                    final String 
                    MAX_STATEMENTS_LIMIT_KEY = MaxStatementsLimit;
    
                    static 
                    final String 
                    ATTRIBUTE_WEIGHTS_KEY = AttributeWeights;
    
                    static 
                    final String 
                    INACTIVITY_TIMEOUT_KEY = InactivityTimeout;
    
                    static 
                    final String 
                    TIME_TO_LIVE_TIMEOUT_KEY = TimeToLiveTimeout;
    
                    static 
                    final String 
                    ABANDONED_CONNECTION_TIMEOUT_KEY = AbandonedConnectionTimeout;
    
                    static 
                    final String 
                    LOWER_THRESHOLD_LIMIT_KEY = LowerThresholdLimit;
    
                    static 
                    final String 
                    PROPERTY_CHECK_INTERVAL_KEY = PropertyCheckInterval;
    
                    static 
                    final String 
                    VALIDATE_CONNECTION_KEY = ValidateConnection;
    
                    static 
                    final String 
                    CLOSEST_CONNECTION_MATCH_KEY = ClosestConnectionMatch;
    
                    static 
                    final String 
                    CONNECTION_WAIT_TIMEOUT_KEY = ConnectionWaitTimeout;
    
                    static 
                    final int 
                    INSTANCE_GOOD = 1;
    
                    static 
                    final int 
                    INSTANCE_UNKNOWN = 2;
    
                    static 
                    final int 
                    INSTANCE_VIOLATING = 3;
    
                    static 
                    final int 
                    INSTANCE_NO_DATA = 4;
    
                    static 
                    final int 
                    INSTANCE_BLOCKED = 5;
    
                    static 
                    final int 
                    RLB_NUMBER_OF_HITS_PER_INSTANCE = 1000;
    int 
                    dbInstancePercentTotal;
    boolean 
                    useGoodGroup;
    java.util.LinkedList 
                    instancesToRetireList;
    OracleDatabaseInstance 
                    instanceToRetire;
    int 
                    retireConnectionsCount;
    int 
                    countTotal;
    
                    protected OracleConnectionCacheManager 
                    cacheManager;
    
                    protected boolean 
                    disableConnectionRequest;
    
                    protected OracleImplicitConnectionCacheThread 
                    timeoutThread;
    
                    protected OracleRuntimeLoadBalancingEventHandlerThread 
                    runtimeLoadBalancingThread;
    
                    protected OracleGravitateConnectionCacheThread 
                    gravitateCacheThread;
    
                    protected int 
                    connectionsToRemove;
    
                    private java.util.HashMap 
                    userMap;
    java.util.Vector 
                    checkedOutConnectionList;
    java.util.LinkedList 
                    databaseInstancesList;
    int 
                    cacheSize;
    
                    protected 
                    static 
                    final String 
                    EVENT_DELIMITER =  ;
    
                    protected boolean 
                    isEntireServiceDownProcessed;
    
                    protected int 
                    defaultUserPreFailureSize;
    
                    protected String 
                    dataSourceServiceName;
    
                    protected OracleFailoverWorkerThread 
                    failoverWorkerThread;
    
                    protected java.util.Random 
                    rand;
    
                    protected int 
                    downEventCount;
    
                    protected int 
                    upEventCount;
    
                    protected int 
                    pendingCreationRequests;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleImplicitConnectionCache(OracleDataSource, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private void 
                    defaultUserPrePopulateCache(int) 
                    throws java.sql.SQLException;
    
                    protected void 
                    initializeConnectionCache() 
                    throws java.sql.SQLException;
    
                    private void 
                    validateUser(String, String) 
                    throws java.sql.SQLException;
    
                    protected java.sql.Connection 
                    getConnection(String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private OraclePooledConnection 
                    getCacheConnection(String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    protected int 
                    getTotalCachedConnections();
    
                    protected int 
                    getNumberOfCheckedOutConnections();
    
                    private 
                    synchronized OraclePooledConnection 
                    retrieveCacheConnection(String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private OraclePooledConnection 
                    retrieveClosestConnectionMatch(java.util.HashMap, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private int 
                    getAttributesMatchCount(java.util.Properties, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private int 
                    getAttributesWeightCount(java.util.Properties, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private void 
                    setUnMatchedAttributes(java.util.Properties, OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    private OraclePooledConnection 
                    retrieveFromConnectionList(java.util.Vector) 
                    throws java.sql.SQLException;
    
                    private OraclePooledConnection 
                    selectConnectionFromList(java.util.Vector, OracleDatabaseInstance);
    
                    private void 
                    removeCacheConnection(OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    protected void 
                    doForEveryCachedConnection(int) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    performPooledConnectionTask(OraclePooledConnection, int) 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    doForEveryCheckedOutConnection(int) 
                    throws java.sql.SQLException;
    
                    protected void 
                    closeCheckedOutConnection(OraclePooledConnection, boolean) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized void 
                    storeCacheConnection(String, java.util.Properties, OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    private String 
                    buildAttrKey(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    protected OraclePooledConnection 
                    makeCacheConnection(String, String) 
                    throws java.sql.SQLException;
    
                    private void 
                    setStatementCaching(OraclePooledConnection, int, boolean) 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    reusePooledConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    protected void 
                    closePooledConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    protected void 
                    refreshCacheConnections(int) 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    reinitializeCacheConnections(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    setConnectionCacheProperties(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    protected java.util.Properties 
                    getConnectionCacheProperties() 
                    throws java.sql.SQLException;
    
                    protected int 
                    testDatabaseConnection(oracle.jdbc.internal.OracleConnection) 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    closeConnectionCache() 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    disableConnectionCache() 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    enableConnectionCache() 
                    throws java.sql.SQLException;
    
                    protected void 
                    initFailoverParameters(OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    protected void 
                    processFailoverEvent(int, String, String, String, String, int);
    
                    synchronized void 
                    processUpEvent(int) 
                    throws java.sql.SQLException;
    
                    private void 
                    loadBalanceConnections(int, boolean) 
                    throws java.sql.SQLException;
    
                    private int 
                    getNumberOfDefaultUserConnections();
    
                    synchronized void 
                    markDownLostConnections(boolean, boolean, String, String, String, String);
    
                    private boolean 
                    markDownConnectionsForServiceEvent(String, String, OraclePooledConnection);
    
                    private boolean 
                    markDownConnectionsForHostEvent(String, OraclePooledConnection);
    
                    synchronized void 
                    cleanupFailoverConnections(boolean, boolean, String, String, String, String);
    void 
                    zapRLBInfo();
    
                    protected 
                    synchronized void 
                    closeAndRemovePooledConnection(OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    private void 
                    abortConnection(OraclePooledConnection);
    
                    private void 
                    actualPooledConnectionClose(OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    protected int 
                    getCacheTimeToLiveTimeout();
    
                    protected int 
                    getCacheInactivityTimeout();
    
                    protected int 
                    getCachePropertyCheckInterval();
    
                    protected int 
                    getCacheAbandonedTimeout();
    
                    private 
                    synchronized void 
                    processConnectionCacheCallback() 
                    throws java.sql.SQLException;
    
                    private void 
                    releaseBasedOnPriority(int, int) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized void 
                    processConnectionWaitTimeout(long) 
                    throws java.sql.SQLException;
    
                    private void 
                    processInactivityTimeout(OraclePooledConnection) 
                    throws java.sql.SQLException;
    
                    private void 
                    cleanupTimeoutThread() 
                    throws java.sql.SQLException;
    
                    protected void 
                    purgeCacheConnections(boolean);
    
                    protected void 
                    updateDatabaseInstance(String, String, int, int);
    
                    protected void 
                    processDatabaseInstances() 
                    throws java.sql.SQLException;
    
                    protected void 
                    gravitateCache();
    
                    protected void 
                    cleanupRLBThreads();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleConnectionPoolDataSource.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleConnectionPoolDataSource 
                    extends OracleDataSource 
                    implements javax.sql.ConnectionPoolDataSource {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleConnectionPoolDataSource() 
                    throws java.sql.SQLException;
    
                    public javax.sql.PooledConnection 
                    getPooledConnection() 
                    throws java.sql.SQLException;
    
                    public javax.sql.PooledConnection 
                    getPooledConnection(String, String) 
                    throws java.sql.SQLException;
    javax.sql.PooledConnection 
                    getPooledConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    protected java.sql.Connection 
                    getPhysicalConnection() 
                    throws java.sql.SQLException;
    
                    protected java.sql.Connection 
                    getPhysicalConnection(String, String, String) 
                    throws java.sql.SQLException;
    
                    protected java.sql.Connection 
                    getPhysicalConnection(String, String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleDatabaseInstance.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleDatabaseInstance {
    String 
                    databaseUniqName;
    String 
                    instanceName;
    int 
                    percent;
    int 
                    flag;
    int 
                    attemptedConnRequestCount;
    int 
                    numberOfConnectionsCount;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleDatabaseInstance(String, String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleConnectionCacheManager$1.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleConnectionCacheManager$1 
                    implements java.security.PrivilegedExceptionAction {
    void OracleConnectionCacheManager$1(OracleConnectionCacheManager, String);
    
                    public Object 
                    run() 
                    throws oracle.ons.ONSException;
}

                

oracle/jdbc/pool/OracleConnectionCacheManager.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleConnectionCacheManager {
    
                    private 
                    static OracleConnectionCacheManager 
                    cacheManagerInstance;
    
                    protected java.util.Hashtable 
                    m_connCache;
    
                    public 
                    static 
                    final int 
                    REFRESH_INVALID_CONNECTIONS = 4096;
    
                    public 
                    static 
                    final int 
                    REFRESH_ALL_CONNECTIONS = 8192;
    
                    protected 
                    static 
                    final int 
                    FAILOVER_EVENT_TYPE_SERVICE = 256;
    
                    protected 
                    static 
                    final int 
                    FAILOVER_EVENT_TYPE_HOST = 512;
    
                    protected 
                    static 
                    final String 
                    EVENT_DELIMITER = {} =;
    
                    protected OracleFailoverEventHandlerThread 
                    failoverEventHandlerThread;
    
                    private 
                    static boolean 
                    isONSInitializedForRemoteSubscription;
    
                    static 
                    final int 
                    ORAERROR_END_OF_FILE_ON_COM_CHANNEL = 3113;
    
                    static 
                    final int 
                    ORAERROR_NOT_CONNECTED_TO_ORACLE = 3114;
    
                    static 
                    final int 
                    ORAERROR_INIT_SHUTDOWN_IN_PROGRESS = 1033;
    
                    static 
                    final int 
                    ORAERROR_ORACLE_NOT_AVAILABLE = 1034;
    
                    static 
                    final int 
                    ORAERROR_IMMEDIATE_SHUTDOWN_IN_PROGRESS = 1089;
    
                    static 
                    final int 
                    ORAERROR_SHUTDOWN_IN_PROGRESS_NO_CONN = 1090;
    
                    static 
                    final int 
                    ORAERROR_NET_IO_EXCEPTION = 17002;
    
                    protected int[] 
                    fatalErrorCodes;
    
                    protected int 
                    failoverEnabledCacheCount;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    private void OracleConnectionCacheManager();
    
                    public 
                    static 
                    synchronized OracleConnectionCacheManager 
                    getConnectionCacheManagerInstance() 
                    throws java.sql.SQLException;
    
                    public String 
                    createCache(OracleDataSource, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public void 
                    createCache(String, OracleDataSource, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public void 
                    removeCache(String, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    reinitializeCache(String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    existsCache(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    enableCache(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    disableCache(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    refreshCache(String, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    purgeCache(String, boolean) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getCacheProperties(String) 
                    throws java.sql.SQLException;
    
                    public String[] 
                    getCacheNameList() 
                    throws java.sql.SQLException;
    
                    public int 
                    getNumberOfAvailableConnections(String) 
                    throws java.sql.SQLException;
    
                    public int 
                    getNumberOfActiveConnections(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionPoolDataSource(String, javax.sql.ConnectionPoolDataSource) 
                    throws java.sql.SQLException;
    
                    protected void 
                    verifyAndHandleEvent(int, byte[]) 
                    throws java.sql.SQLException;
    
                    private void 
                    invokeFailoverProcessingThreads(int, String, String, String, String, String, int) 
                    throws java.sql.SQLException;
    
                    protected void 
                    checkAndStartThread(Thread) 
                    throws java.sql.SQLException;
    
                    protected boolean 
                    failoverEnabledCacheExists();
    
                    protected void 
                    parseRuntimeLoadBalancingEvent(String, byte[]) 
                    throws java.sql.SQLException;
    
                    private void 
                    retrieveServiceMetrics(OracleImplicitConnectionCache, byte[]) 
                    throws java.sql.SQLException;
    
                    protected void 
                    cleanupFCFThreads(OracleImplicitConnectionCache) 
                    throws java.sql.SQLException;
    
                    protected void 
                    cleanupFCFWorkerThread(OracleImplicitConnectionCache) 
                    throws java.sql.SQLException;
    
                    protected void 
                    cleanupFCFEventHandlerThread() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFatalConnectionError(java.sql.SQLException);
    
                    public 
                    synchronized void 
                    setConnectionErrorCodes(int[]) 
                    throws java.sql.SQLException;
    
                    public int[] 
                    getConnectionErrorCodes() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleFailoverEventHandlerThread$1.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleFailoverEventHandlerThread$1 
                    implements java.security.PrivilegedExceptionAction {
    void OracleFailoverEventHandlerThread$1(OracleFailoverEventHandlerThread);
    
                    public Object 
                    run() 
                    throws oracle.ons.ONSException;
}

                

oracle/jdbc/pool/OracleFailoverEventHandlerThread.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleFailoverEventHandlerThread 
                    extends Thread {
    
                    private oracle.ons.Notification 
                    event;
    
                    private OracleConnectionCacheManager 
                    cacheManager;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleFailoverEventHandlerThread() 
                    throws java.sql.SQLException;
    
                    public void 
                    run();
    void 
                    handleEvent(oracle.ons.Notification);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleImplicitConnectionCacheThread.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleImplicitConnectionCacheThread 
                    extends Thread {
    
                    private OracleImplicitConnectionCache 
                    implicitCache;
    
                    protected boolean 
                    timeToLive;
    
                    protected boolean 
                    isSleeping;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleImplicitConnectionCacheThread(OracleImplicitConnectionCache) 
                    throws java.sql.SQLException;
    
                    public void 
                    run();
    
                    private void 
                    runTimeToLiveTimeout(long) 
                    throws java.sql.SQLException;
    
                    private void 
                    runInactivityTimeout();
    
                    private void 
                    runAbandonedTimeout(long) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleRuntimeLoadBalancingEventHandlerThread$1.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleRuntimeLoadBalancingEventHandlerThread$1 
                    implements java.security.PrivilegedExceptionAction {
    void OracleRuntimeLoadBalancingEventHandlerThread$1(OracleRuntimeLoadBalancingEventHandlerThread, String);
    
                    public Object 
                    run() 
                    throws oracle.ons.ONSException;
}

                

oracle/jdbc/pool/OracleRuntimeLoadBalancingEventHandlerThread.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleRuntimeLoadBalancingEventHandlerThread 
                    extends Thread {
    
                    private oracle.ons.Notification 
                    event;
    
                    private OracleConnectionCacheManager 
                    cacheManager;
    String 
                    m_service;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleRuntimeLoadBalancingEventHandlerThread(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    run();
    void 
                    handleEvent(oracle.ons.Notification);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleGravitateConnectionCacheThread.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleGravitateConnectionCacheThread 
                    extends Thread {
    
                    protected OracleImplicitConnectionCache 
                    implicitCache;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleGravitateConnectionCacheThread(OracleImplicitConnectionCache) 
                    throws java.sql.SQLException;
    
                    public void 
                    run();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleFailoverWorkerThread.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleFailoverWorkerThread 
                    extends Thread {
    
                    protected OracleImplicitConnectionCache 
                    implicitCache;
    
                    protected int 
                    eventType;
    
                    protected String 
                    eventServiceName;
    
                    protected String 
                    instanceNameKey;
    
                    protected String 
                    databaseNameKey;
    
                    protected String 
                    hostNameKey;
    
                    protected String 
                    status;
    
                    protected int 
                    cardinality;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleFailoverWorkerThread(OracleImplicitConnectionCache, int, String, String, String, String, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    run();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleOCIConnectionPool.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleOCIConnectionPool 
                    extends OracleDataSource {
    
                    public oracle.jdbc.oci.OracleOCIConnection 
                    m_connection_pool;
    
                    public 
                    static 
                    final String 
                    IS_CONNECTION_POOLING = is_connection_pooling;
    
                    private int 
                    m_conn_min_limit;
    
                    private int 
                    m_conn_max_limit;
    
                    private int 
                    m_conn_increment;
    
                    private int 
                    m_conn_active_size;
    
                    private int 
                    m_conn_pool_size;
    
                    private int 
                    m_conn_timeout;
    
                    private String 
                    m_conn_nowait;
    
                    private int 
                    m_is_transactions_distributed;
    
                    public 
                    static 
                    final String 
                    CONNPOOL_OBJECT = connpool_object;
    
                    public 
                    static 
                    final String 
                    CONNPOOL_LOGON_MODE = connection_pool;
    
                    public 
                    static 
                    final String 
                    CONNECTION_POOL = connection_pool;
    
                    public 
                    static 
                    final String 
                    CONNPOOL_CONNECTION = connpool_connection;
    
                    public 
                    static 
                    final String 
                    CONNPOOL_PROXY_CONNECTION = connpool_proxy_connection;
    
                    public 
                    static 
                    final String 
                    CONNPOOL_ALIASED_CONNECTION = connpool_alias_connection;
    
                    public 
                    static 
                    final String 
                    PROXY_USER_NAME = proxy_user_name;
    
                    public 
                    static 
                    final String 
                    PROXY_DISTINGUISHED_NAME = proxy_distinguished_name;
    
                    public 
                    static 
                    final String 
                    PROXY_CERTIFICATE = proxy_certificate;
    
                    public 
                    static 
                    final String 
                    PROXY_ROLES = proxy_roles;
    
                    public 
                    static 
                    final String 
                    PROXY_NUM_ROLES = proxy_num_roles;
    
                    public 
                    static 
                    final String 
                    PROXY_PASSWORD = proxy_password;
    
                    public 
                    static 
                    final String 
                    PROXYTYPE = proxytype;
    
                    public 
                    static 
                    final String 
                    PROXYTYPE_USER_NAME = proxytype_user_name;
    
                    public 
                    static 
                    final String 
                    PROXYTYPE_DISTINGUISHED_NAME = proxytype_distinguished_name;
    
                    public 
                    static 
                    final String 
                    PROXYTYPE_CERTIFICATE = proxytype_certificate;
    
                    public 
                    static 
                    final String 
                    CONNECTION_ID = connection_id;
    
                    public 
                    static String 
                    CONNPOOL_MIN_LIMIT;
    
                    public 
                    static String 
                    CONNPOOL_MAX_LIMIT;
    
                    public 
                    static String 
                    CONNPOOL_INCREMENT;
    
                    public 
                    static String 
                    CONNPOOL_ACTIVE_SIZE;
    
                    public 
                    static String 
                    CONNPOOL_POOL_SIZE;
    
                    public 
                    static String 
                    CONNPOOL_TIMEOUT;
    
                    public 
                    static String 
                    CONNPOOL_NOWAIT;
    
                    public 
                    static String 
                    CONNPOOL_IS_POOLCREATED;
    
                    public 
                    static 
                    final String 
                    TRANSACTIONS_DISTRIBUTED = transactions_distributed;
    
                    private java.util.Hashtable 
                    m_lconnections;
    
                    private boolean 
                    m_poolCreated;
    
                    private oracle.jdbc.driver.OracleDriver 
                    m_oracleDriver;
    
                    protected int 
                    m_stmtCacheSize;
    
                    protected boolean 
                    m_stmtClearMetaData;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleOCIConnectionPool(String, String, String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public void OracleOCIConnectionPool(String, String, String) 
                    throws java.sql.SQLException;
    
                    public void OracleOCIConnectionPool() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.Connection 
                    getConnection(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized javax.naming.Reference 
                    getReference() 
                    throws javax.naming.NamingException;
    
                    public 
                    synchronized oracle.jdbc.internal.OracleConnection 
                    getProxyConnection(String, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized oracle.jdbc.internal.OracleConnection 
                    getAliasedConnection(byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setPoolConfig(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    static void 
                    readPoolConfig(java.util.Properties, int[]);
    
                    private void 
                    checkPoolConfig(java.util.Properties, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized void 
                    storePoolProperties() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.util.Properties 
                    getPoolConfig() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getActiveSize() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getPoolSize() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getTimeout() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getNoWait() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getMinLimit() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getMaxLimit() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getConnectionIncrement() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isDistributedTransEnabled();
    
                    private void 
                    createConnectionPool(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    isPoolCreated();
    
                    public 
                    synchronized void 
                    connectionClosed(oracle.jdbc.oci.OracleOCIConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getStmtCacheSize();
    
                    public 
                    synchronized boolean 
                    isStmtCacheEnabled();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleConnectionEventListener.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleConnectionEventListener 
                    implements javax.sql.ConnectionEventListener, java.io.Serializable {
    
                    static 
                    final int 
                    _CLOSED_EVENT = 1;
    
                    static 
                    final int 
                    _ERROROCCURED_EVENT = 2;
    
                    private javax.sql.DataSource 
                    dataSource;
    
                    protected long 
                    lastCleanupTime;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleConnectionEventListener();
    
                    public void OracleConnectionEventListener(javax.sql.DataSource);
    
                    public void 
                    setDataSource(javax.sql.DataSource);
    
                    public void 
                    connectionClosed(javax.sql.ConnectionEvent);
    
                    public void 
                    connectionErrorOccurred(javax.sql.ConnectionEvent);
    
                    protected 
                    synchronized void 
                    cleanupInvalidConnections(java.sql.SQLException);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleConnectionCacheEventListener.class

                    package oracle.jdbc.pool;

                    synchronized 
                    class OracleConnectionCacheEventListener 
                    implements javax.sql.ConnectionEventListener, java.io.Serializable {
    
                    static 
                    final int 
                    CONNECTION_CLOSED_EVENT = 101;
    
                    static 
                    final int 
                    CONNECTION_ERROROCCURED_EVENT = 102;
    
                    protected OracleImplicitConnectionCache 
                    implicitCache;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleConnectionCacheEventListener();
    
                    public void OracleConnectionCacheEventListener(OracleImplicitConnectionCache);
    
                    public 
                    synchronized void 
                    connectionClosed(javax.sql.ConnectionEvent);
    
                    public 
                    synchronized void 
                    connectionErrorOccurred(javax.sql.ConnectionEvent);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleConnectionCache.class

                    package oracle.jdbc.pool;

                    public 
                    abstract 
                    interface OracleConnectionCache 
                    extends javax.sql.DataSource {
    
                    public 
                    abstract void 
                    reusePooledConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    closePooledConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    close() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/pool/OracleConnectionCacheImpl.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleConnectionCacheImpl 
                    extends OracleDataSource 
                    implements OracleConnectionCache, java.io.Serializable, javax.naming.Referenceable {
    
                    protected javax.sql.ConnectionPoolDataSource 
                    cpds;
    
                    protected 
                    static int 
                    _DEFAULT_MIN_LIMIT;
    
                    protected 
                    static int 
                    _DEFAULT_MAX_LIMIT;
    
                    protected int 
                    _MIN_LIMIT;
    
                    protected int 
                    _MAX_LIMIT;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_CACHE_TIMEOUT = -1;
    
                    protected 
                    static 
                    final int 
                    DEFAULT_THREAD_INTERVAL = 900;
    
                    public 
                    static 
                    final int 
                    ORAERROR_END_OF_FILE_ON_COCHANNEL = 3113;
    
                    public 
                    static 
                    final int 
                    ORAERROR_NOT_CONNECTED_TO_ORACLE = 3114;
    
                    public 
                    static 
                    final int 
                    ORAERROR_INIT_SHUTDOWN_IN_PROGRESS = 1033;
    
                    public 
                    static 
                    final int 
                    ORAERROR_ORACLE_NOT_AVAILABLE = 1034;
    
                    public 
                    static 
                    final int 
                    ORAERROR_IMMEDIATE_SHUTDOWN_IN_PROGRESS = 1089;
    
                    public 
                    static 
                    final int 
                    ORAERROR_SHUTDOWN_IN_PROGRESS_NO_CONN = 1090;
    
                    public 
                    static 
                    final int 
                    ORAERROR_NET_IO_EXCEPTION = 17002;
    
                    protected long 
                    cacheTTLTimeOut;
    
                    protected long 
                    cacheInactivityTimeOut;
    
                    protected long 
                    cacheFixedWaitTimeOut;
    
                    protected long 
                    threadInterval;
    java.util.Stack 
                    cache;
    java.util.Hashtable 
                    activeCache;
    
                    private Object 
                    CACHE_SIZE_LOCK;
    
                    protected int 
                    cacheSize;
    
                    protected int 
                    activeSize;
    
                    protected int 
                    cacheScheme;
    
                    protected long 
                    cleanupInterval;
    
                    protected int[] 
                    fatalErrorCodes;
    
                    public 
                    static 
                    final long 
                    DEFAULT_FIXED_WAIT_IDLE_TIME = 30;
    
                    protected long 
                    fixedWaitIdleTime;
    
                    public 
                    static 
                    final int 
                    DYNAMIC_SCHEME = 1;
    
                    public 
                    static 
                    final int 
                    FIXED_WAIT_SCHEME = 2;
    
                    public 
                    static 
                    final int 
                    FIXED_RETURN_NULL_SCHEME = 3;
    
                    protected OracleConnectionEventListener 
                    ocel;
    
                    protected int 
                    stmtCacheSize;
    
                    protected boolean 
                    stmtClearMetaData;
    
                    protected OracleConnectionCacheTimeOutThread 
                    timeOutThread;
    java.sql.SQLWarning 
                    warning;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleConnectionCacheImpl() 
                    throws java.sql.SQLException;
    
                    public void OracleConnectionCacheImpl(javax.sql.ConnectionPoolDataSource) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionPoolDataSource(javax.sql.ConnectionPoolDataSource) 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getConnection(String, String) 
                    throws java.sql.SQLException;
    
                    protected javax.sql.PooledConnection 
                    getPooledConnection(String, String) 
                    throws java.sql.SQLException;
    javax.sql.PooledConnection 
                    getNewPoolOrXAConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public void 
                    reusePooledConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    public void 
                    closePooledConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    private void 
                    detachSingleConnection(javax.sql.PooledConnection);
    
                    public void 
                    closeSingleConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    final void 
                    closeSingleConnection(javax.sql.PooledConnection, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.sql.SQLException;
    
                    public void 
                    closeConnections();
    
                    public 
                    synchronized void 
                    setConnectionCleanupInterval(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getConnectionCleanupInterval() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setConnectionErrorCodes(int[]) 
                    throws java.sql.SQLException;
    
                    public int[] 
                    getConnectionErrorCodes() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFatalConnectionError(java.sql.SQLException);
    
                    public 
                    synchronized void 
                    setMinLimit(int) 
                    throws java.sql.SQLException;
    void 
                    initializeConnectionPoolDataSource() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getMinLimit();
    
                    public 
                    synchronized void 
                    setMaxLimit(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getMaxLimit();
    
                    public 
                    synchronized int 
                    getCacheScheme();
    
                    public 
                    synchronized void 
                    setCacheScheme(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCacheScheme(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getActiveSize();
    
                    public 
                    synchronized int 
                    getCacheSize();
    
                    public 
                    synchronized void 
                    setCacheTimeToLiveTimeout(long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCacheInactivityTimeout(long) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCacheFixedWaitTimeout(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getCacheTimeToLiveTimeout() 
                    throws java.sql.SQLException;
    
                    public long 
                    getCacheInactivityTimeout() 
                    throws java.sql.SQLException;
    
                    public long 
                    getCacheFixedWaitTimeout() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setThreadWakeUpInterval(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getThreadWakeUpInterval() 
                    throws java.sql.SQLException;
    
                    private void 
                    checkAndStartTimeOutThread() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    clearWarnings() 
                    throws java.sql.SQLException;
    
                    private 
                    final void 
                    checkCredentials(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized javax.naming.Reference 
                    getReference() 
                    throws javax.naming.NamingException;
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setStmtCacheSize(int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized int 
                    getStmtCacheSize();
    
                    synchronized boolean 
                    isStmtCacheEnabled();
    
                    private void 
                    putConnectionToCache(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    private javax.sql.PooledConnection 
                    removeConnectionFromCache() 
                    throws java.sql.SQLException;
    
                    private boolean 
                    removeConnectionFromCache(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setCacheFixedWaitIdleTime(long) 
                    throws java.sql.SQLException;
    
                    public long 
                    getCacheFixedWaitIdleTime() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleConnectionCacheTimeOutThread.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleConnectionCacheTimeOutThread 
                    extends Thread 
                    implements java.io.Serializable {
    
                    private OracleConnectionCacheImpl 
                    occi;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    void OracleConnectionCacheTimeOutThread(OracleConnectionCacheImpl) 
                    throws java.sql.SQLException;
    
                    public void 
                    run();
    
                    public void 
                    runTimeToLiveTimeOut(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    runInactivityTimeOut(long) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleDataSourceFactory.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleDataSourceFactory 
                    implements javax.naming.spi.ObjectFactory {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleDataSourceFactory();
    
                    public Object 
                    getObjectInstance(Object, javax.naming.Name, javax.naming.Context, java.util.Hashtable) 
                    throws Exception;
    
                    private java.util.Properties 
                    extractConnectionCacheProperties(String) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/pool/OracleXAConnectionCacheImpl.class

                    package oracle.jdbc.pool;

                    public 
                    synchronized 
                    class OracleXAConnectionCacheImpl 
                    extends OracleConnectionCacheImpl 
                    implements javax.sql.XADataSource, java.io.Serializable {
    
                    private boolean 
                    nativeXA;
    
                    private 
                    static 
                    final String 
                    clientXADS = oracle.jdbc.xa.client.OracleXADataSource;
    
                    private 
                    static 
                    final String 
                    serverXADS = oracle.jdbc.xa.server.OracleXADataSource;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void OracleXAConnectionCacheImpl() 
                    throws java.sql.SQLException;
    
                    public void OracleXAConnectionCacheImpl(javax.sql.ConnectionPoolDataSource) 
                    throws java.sql.SQLException;
    void 
                    initializeConnectionPoolDataSource() 
                    throws java.sql.SQLException;
    javax.sql.PooledConnection 
                    getNewPoolOrXAConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized javax.sql.XAConnection 
                    getXAConnection() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized javax.sql.XAConnection 
                    getXAConnection(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    getNativeXA();
    
                    public 
                    synchronized void 
                    setNativeXA(boolean);
    
                    public 
                    synchronized void 
                    closeActualConnection(javax.sql.PooledConnection) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/util/SQLStateMapping.class

                    package oracle.jdbc.util;

                    public 
                    synchronized 
                    class SQLStateMapping {
    
                    public int 
                    err;
    
                    public String 
                    sqlState;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void SQLStateMapping(int, String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/util/SQLStateRange.class

                    package oracle.jdbc.util;

                    public 
                    synchronized 
                    class SQLStateRange {
    
                    public int 
                    low;
    
                    public int 
                    high;
    
                    public String 
                    sqlState;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void SQLStateRange(int, int, String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/util/RepConversion.class

                    package oracle.jdbc.util;

                    public 
                    synchronized 
                    class RepConversion {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void RepConversion();
    
                    public 
                    static void 
                    printInHex(byte);
    
                    public 
                    static byte 
                    nibbleToHex(byte);
    
                    public 
                    static byte 
                    asciiHexToNibble(byte);
    
                    public 
                    static void 
                    bArray2Nibbles(byte[], byte[]);
    
                    public 
                    static String 
                    bArray2String(byte[]);
    
                    public 
                    static byte[] 
                    nibbles2bArray(byte[]);
    
                    public 
                    static void 
                    printInHex(long);
    
                    public 
                    static void 
                    printInHex(int);
    
                    public 
                    static void 
                    printInHex(short);
    
                    public 
                    static byte[] 
                    toHex(long);
    
                    public 
                    static byte[] 
                    toHex(int);
    
                    public 
                    static byte[] 
                    toHex(short);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/util/Login.class

                    package oracle.jdbc.util;

                    public 
                    synchronized 
                    class Login {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:39_PST_2006;
    
                    public void Login();
    
                    public 
                    static byte[] 
                    generateResponse(String, String, byte[]);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/client/OracleXADataSource.class

                    package oracle.jdbc.xa.client;

                    public 
                    synchronized 
                    class OracleXADataSource 
                    extends oracle.jdbc.xa.OracleXADataSource {
    
                    private 
                    static 
                    final boolean 
                    DEBUG = 0;
    
                    private int 
                    rmid;
    
                    private String 
                    xaOpenString;
    
                    private 
                    static boolean 
                    libraryLoaded;
    
                    private 
                    static 
                    final String 
                    dbSuffix = HeteroXA;
    
                    private 
                    static 
                    final String 
                    dllName = heteroxa10;
    
                    private 
                    static 
                    final char 
                    atSignChar = 64;
    
                    private 
                    static int 
                    rmidSeed;
    
                    private 
                    static 
                    final int 
                    MAX_RMID_SEED = 65536;
    
                    private String 
                    driverCharSetIdString;
    
                    private String 
                    oldTnsEntry;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXADataSource() 
                    throws java.sql.SQLException;
    
                    public javax.sql.XAConnection 
                    getXAConnection() 
                    throws java.sql.SQLException;
    
                    public javax.sql.XAConnection 
                    getXAConnection(String, String) 
                    throws java.sql.SQLException;
    
                    public javax.sql.XAConnection 
                    getXAConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public javax.sql.PooledConnection 
                    getPooledConnection(String, String) 
                    throws java.sql.SQLException;
    
                    public javax.sql.PooledConnection 
                    getPooledConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    private 
                    native int 
                    doXaOpen(String, int, int, int);
    
                    private 
                    native int 
                    convertOciHandles(String, long[]);
    
                    synchronized void 
                    setRmid(int);
    
                    synchronized int 
                    getRmid();
    
                    synchronized void 
                    setXaOpenString(String);
    
                    synchronized String 
                    getXaOpenString();
    
                    private String 
                    generateXAOpenString(String, String, String, String, int, int, boolean, boolean, String, int, boolean, boolean, String, String);
    
                    private String 
                    generateXACloseString(String, boolean);
    
                    private String 
                    getTNSEntryFromUrl(String);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/client/OracleXAHeteroConnection.class

                    package oracle.jdbc.xa.client;

                    public 
                    synchronized 
                    class OracleXAHeteroConnection 
                    extends OracleXAConnection {
    
                    private int 
                    rmid;
    
                    private String 
                    xaCloseString;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAHeteroConnection() 
                    throws javax.transaction.xa.XAException;
    
                    public void OracleXAHeteroConnection(java.sql.Connection) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    synchronized javax.transaction.xa.XAResource 
                    getXAResource();
    
                    synchronized void 
                    setRmid(int);
    
                    synchronized int 
                    getRmid();
    
                    synchronized void 
                    setXaCloseString(String);
    
                    synchronized String 
                    getXaCloseString();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/client/OracleXAConnection.class

                    package oracle.jdbc.xa.client;

                    public 
                    synchronized 
                    class OracleXAConnection 
                    extends oracle.jdbc.xa.OracleXAConnection {
    
                    protected boolean 
                    isXAResourceTransLoose;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAConnection() 
                    throws javax.transaction.xa.XAException;
    
                    public void OracleXAConnection(java.sql.Connection) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    synchronized javax.transaction.xa.XAResource 
                    getXAResource();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/client/OracleXAHeteroCloseCallback.class

                    package oracle.jdbc.xa.client;

                    public 
                    synchronized 
                    class OracleXAHeteroCloseCallback 
                    implements oracle.jdbc.driver.OracleCloseCallback {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAHeteroCloseCallback();
    
                    public 
                    synchronized void 
                    beforeClose(oracle.jdbc.internal.OracleConnection, Object);
    
                    public 
                    synchronized void 
                    afterClose(Object);
    
                    private 
                    native int 
                    doXaClose(String, int, int, int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/client/OracleXAResource.class

                    package oracle.jdbc.xa.client;

                    public 
                    synchronized 
                    class OracleXAResource 
                    extends oracle.jdbc.xa.OracleXAResource {
    
                    private short 
                    m_version;
    
                    private 
                    static String 
                    xa_start_816;
    
                    private 
                    static String 
                    xa_start_post_816;
    
                    private 
                    static String 
                    xa_end_816;
    
                    private 
                    static String 
                    xa_end_post_816;
    
                    private 
                    static String 
                    xa_commit_816;
    
                    private 
                    static String 
                    xa_commit_post_816;
    
                    private 
                    static String 
                    xa_prepare_816;
    
                    private 
                    static String 
                    xa_prepare_post_816;
    
                    private 
                    static String 
                    xa_rollback_816;
    
                    private 
                    static String 
                    xa_rollback_post_816;
    
                    private 
                    static String 
                    xa_forget_816;
    
                    private 
                    static String 
                    xa_forget_post_816;
    boolean 
                    isTransLoose;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAResource();
    
                    public void OracleXAResource(java.sql.Connection, oracle.jdbc.xa.OracleXAConnection) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    start(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doStart(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    end(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doEnd(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    commit(javax.transaction.xa.Xid, boolean) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doCommit(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public int 
                    prepare(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doPrepare(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    forget(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doForget(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    rollback(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doRollback(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    doTwoPhaseAction(int, int, String[], javax.transaction.xa.Xid[]) 
                    throws javax.transaction.xa.XAException;
    
                    protected int 
                    doDoTwoPhaseAction(int, int, String[], javax.transaction.xa.Xid[]) 
                    throws javax.transaction.xa.XAException;
    
                    private 
                    static byte[] 
                    getSerializedBytes(javax.transaction.xa.Xid);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/client/OracleXAHeteroResource.class

                    package oracle.jdbc.xa.client;

                    public 
                    synchronized 
                    class OracleXAHeteroResource 
                    extends OracleXAResource {
    
                    private int 
                    rmid;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAHeteroResource(java.sql.Connection, OracleXAConnection) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    start(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    end(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    commit(javax.transaction.xa.Xid, boolean) 
                    throws javax.transaction.xa.XAException;
    
                    public int 
                    prepare(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    forget(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    rollback(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    private 
                    native int 
                    doXaStart(int, byte[], byte[], int, int, int);
    
                    private 
                    native int 
                    doXaEnd(int, byte[], byte[], int, int, int);
    
                    private 
                    native int 
                    doXaCommit(int, byte[], byte[], int, int, int);
    
                    private 
                    native int 
                    doXaPrepare(int, byte[], byte[], int, int, int);
    
                    private 
                    native int 
                    doXaForget(int, byte[], byte[], int, int, int);
    
                    private 
                    native int 
                    doXaRollback(int, byte[], byte[], int, int, int);
    
                    synchronized void 
                    setRmid(int);
    
                    synchronized int 
                    getRmid();
    
                    private 
                    static byte[] 
                    getSerializedBytes(javax.transaction.xa.Xid);
    
                    private void 
                    checkStatus(int) 
                    throws javax.transaction.xa.XAException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/OracleXADataSource.class

                    package oracle.jdbc.xa;

                    public 
                    abstract 
                    synchronized 
                    class OracleXADataSource 
                    extends oracle.jdbc.pool.OracleConnectionPoolDataSource 
                    implements javax.sql.XADataSource {
    
                    protected boolean 
                    useNativeXA;
    
                    protected boolean 
                    thinUseNativeXA;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXADataSource() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract javax.sql.XAConnection 
                    getXAConnection() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract javax.sql.XAConnection 
                    getXAConnection(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract javax.sql.XAConnection 
                    getXAConnection(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    setNativeXA(boolean);
    
                    public 
                    synchronized boolean 
                    getNativeXA();
    
                    protected void 
                    copy(oracle.jdbc.pool.OracleDataSource) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/OracleXAConnection.class

                    package oracle.jdbc.xa;

                    public 
                    abstract 
                    synchronized 
                    class OracleXAConnection 
                    extends oracle.jdbc.pool.OraclePooledConnection 
                    implements javax.sql.XAConnection {
    
                    protected javax.transaction.xa.XAResource 
                    xaResource;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAConnection() 
                    throws javax.transaction.xa.XAException;
    
                    public void OracleXAConnection(java.sql.Connection) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    abstract javax.transaction.xa.XAResource 
                    getXAResource();
    
                    public 
                    synchronized java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    boolean 
                    getAutoCommit() 
                    throws java.sql.SQLException;
    void 
                    setAutoCommit(boolean) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/OracleXAResource.class

                    package oracle.jdbc.xa;

                    public 
                    abstract 
                    synchronized 
                    class OracleXAResource 
                    implements javax.transaction.xa.XAResource {
    
                    public 
                    static 
                    final int 
                    XA_OK = 0;
    
                    public 
                    static 
                    final short 
                    DEFAULT_XA_TIMEOUT = 60;
    
                    protected boolean 
                    savedConnectionAutoCommit;
    
                    protected boolean 
                    savedXAConnectionAutoCommit;
    
                    public 
                    static 
                    final int 
                    TMNOFLAGS = 0;
    
                    public 
                    static 
                    final int 
                    TMNOMIGRATE = 2;
    
                    public 
                    static 
                    final int 
                    TMENDRSCAN = 8388608;
    
                    public 
                    static 
                    final int 
                    TMFAIL = 536870912;
    
                    public 
                    static 
                    final int 
                    TMMIGRATE = 1048576;
    
                    public 
                    static 
                    final int 
                    TMJOIN = 2097152;
    
                    public 
                    static 
                    final int 
                    TMONEPHASE = 1073741824;
    
                    public 
                    static 
                    final int 
                    TMRESUME = 134217728;
    
                    public 
                    static 
                    final int 
                    TMSTARTRSCAN = 16777216;
    
                    public 
                    static 
                    final int 
                    TMSUCCESS = 67108864;
    
                    public 
                    static 
                    final int 
                    TMSUSPEND = 33554432;
    
                    public 
                    static 
                    final int 
                    ORATMREADONLY = 256;
    
                    public 
                    static 
                    final int 
                    ORATMREADWRITE = 512;
    
                    public 
                    static 
                    final int 
                    ORATMSERIALIZABLE = 1024;
    
                    public 
                    static 
                    final int 
                    ORAISOLATIONMASK = 65280;
    
                    public 
                    static 
                    final int 
                    ORATRANSLOOSE = 65536;
    
                    protected java.sql.Connection 
                    connection;
    
                    protected OracleXAConnection 
                    xaconnection;
    
                    protected int 
                    timeout;
    
                    protected String 
                    dblink;
    
                    private java.sql.Connection 
                    logicalConnection;
    
                    private String 
                    synchronizeBeforeRecover;
    
                    private String 
                    recoverySqlRows;
    
                    protected java.util.Vector 
                    locallySuspendedTransactions;
    
                    protected boolean 
                    canBeMigratablySuspended;
    
                    protected javax.transaction.xa.Xid 
                    currentStackedXid;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAResource();
    
                    public void OracleXAResource(java.sql.Connection, OracleXAConnection) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    synchronized void 
                    setConnection(java.sql.Connection) 
                    throws javax.transaction.xa.XAException;
    
                    protected void 
                    push(javax.transaction.xa.Xid);
    
                    protected void 
                    pop();
    
                    protected javax.transaction.xa.Xid 
                    suspendStacked(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    protected javax.transaction.xa.Xid 
                    suspendStacked(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    protected void 
                    resumeStacked(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    abstract void 
                    start(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    abstract void 
                    end(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    abstract void 
                    commit(javax.transaction.xa.Xid, boolean) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    abstract int 
                    prepare(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    abstract void 
                    forget(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public 
                    abstract void 
                    rollback(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public javax.transaction.xa.Xid[] 
                    recover(int) 
                    throws javax.transaction.xa.XAException;
    
                    protected void 
                    restoreAutoCommitModeForGlobalTransaction() 
                    throws javax.transaction.xa.XAException;
    
                    protected void 
                    saveAndAlterAutoCommitModeForGlobalTransaction() 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    resume(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    join(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    suspend(javax.transaction.xa.Xid) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    join(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    resume(javax.transaction.xa.Xid, int) 
                    throws javax.transaction.xa.XAException;
    
                    public java.sql.Connection 
                    getConnection();
    
                    public int 
                    getTransactionTimeout() 
                    throws javax.transaction.xa.XAException;
    
                    public boolean 
                    isSameRM(javax.transaction.xa.XAResource) 
                    throws javax.transaction.xa.XAException;
    
                    public boolean 
                    setTransactionTimeout(int) 
                    throws javax.transaction.xa.XAException;
    
                    public String 
                    getDBLink();
    
                    public void 
                    setDBLink(String);
    
                    public void 
                    setLogicalConnection(java.sql.Connection);
    
                    protected void 
                    allowGlobalTxnModeOnly(int) 
                    throws javax.transaction.xa.XAException;
    
                    protected void 
                    exitGlobalTxnMode();
    
                    protected void 
                    enterGlobalTxnMode();
    
                    protected void 
                    checkError(int) 
                    throws OracleXAException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/OracleXAException.class

                    package oracle.jdbc.xa;

                    public 
                    synchronized 
                    class OracleXAException 
                    extends javax.transaction.xa.XAException {
    
                    private int 
                    xaError;
    
                    private int 
                    primary;
    
                    private int 
                    secondary;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXAException();
    
                    public void OracleXAException(int);
    
                    public 
                    static int 
                    errorConvert(int);
    
                    public int 
                    getXAError();
    
                    public int 
                    getOracleError();
    
                    public int 
                    getOracleSQLError();
    
                    public 
                    static String 
                    getXAErrorMessage(int);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/OracleXid.class

                    package oracle.jdbc.xa;

                    public 
                    synchronized 
                    class OracleXid 
                    implements javax.transaction.xa.Xid, java.io.Serializable {
    
                    private int 
                    formatId;
    
                    private byte[] 
                    gtrid;
    
                    private byte[] 
                    bqual;
    
                    private byte[] 
                    txctx;
    
                    public 
                    static 
                    final int 
                    MAXGTRIDSIZE = 64;
    
                    public 
                    static 
                    final int 
                    MAXBQUALSIZE = 64;
    
                    private int 
                    state;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void OracleXid(int, byte[], byte[]) 
                    throws javax.transaction.xa.XAException;
    
                    public void OracleXid(int, byte[], byte[], byte[]) 
                    throws javax.transaction.xa.XAException;
    
                    public void 
                    setState(int);
    
                    public int 
                    getState();
    
                    public int 
                    getFormatId();
    
                    public byte[] 
                    getGlobalTransactionId();
    
                    public byte[] 
                    getBranchQualifier();
    
                    public byte[] 
                    getTxContext();
    
                    public void 
                    setTxContext(byte[]);
    
                    public 
                    static 
                    final boolean 
                    isLocalTransaction(javax.transaction.xa.Xid);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/xa/OracleMultiPhaseArgs.class

                    package oracle.jdbc.xa;

                    public 
                    synchronized 
                    class OracleMultiPhaseArgs {
    int 
                    action;
    int 
                    nsites;
    java.util.Vector 
                    dbLinks;
    java.util.Vector 
                    xids;
    
                    public void OracleMultiPhaseArgs();
    
                    public void OracleMultiPhaseArgs(int, int, java.util.Vector, java.util.Vector);
    
                    public void OracleMultiPhaseArgs(byte[]);
    
                    public byte[] 
                    toByteArray();
    
                    public java.io.ByteArrayOutputStream 
                    toByteArrayOS();
    
                    public int 
                    getAction();
    
                    public int 
                    getnsite();
    
                    public java.util.Vector 
                    getdbLinks();
    
                    public java.util.Vector 
                    getXids();
    
                    public void 
                    printMPArgs();
    
                    private void 
                    printByteArray(byte[]);
}

                

oracle/jdbc/rowset/OracleCachedRowSet.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleCachedRowSet 
                    extends OracleRowSet 
                    implements javax.sql.RowSet, javax.sql.RowSetInternal, java.io.Serializable, Cloneable, javax.sql.rowset.CachedRowSet {
    
                    private java.sql.SQLWarning 
                    sqlWarning;
    
                    private javax.sql.rowset.RowSetWarning 
                    rowsetWarning;
    
                    protected int 
                    presentRow;
    
                    private int 
                    currentPage;
    
                    private boolean 
                    isPopulateDone;
    
                    private boolean 
                    previousColumnWasNull;
    
                    private OracleRow 
                    insertRow;
    
                    private int 
                    insertRowPosition;
    
                    private boolean 
                    insertRowFlag;
    
                    private int 
                    updateRowPosition;
    
                    private boolean 
                    updateRowFlag;
    
                    protected java.sql.ResultSetMetaData 
                    rowsetMetaData;
    
                    private 
                    transient java.sql.ResultSet 
                    resultSet;
    
                    private 
                    transient java.sql.Connection 
                    connection;
    
                    private 
                    transient boolean 
                    isConnectionStayingOpenForTxnControl;
    
                    protected java.util.Vector 
                    rows;
    
                    private java.util.Vector 
                    param;
    
                    private String[] 
                    metaData;
    
                    protected int 
                    colCount;
    
                    protected int 
                    rowCount;
    
                    private javax.sql.RowSetReader 
                    reader;
    
                    private javax.sql.RowSetWriter 
                    writer;
    
                    private int[] 
                    keyColumns;
    
                    private int 
                    pageSize;
    
                    private javax.sql.rowset.spi.SyncProvider 
                    syncProvider;
    
                    private 
                    static 
                    final String 
                    DEFAULT_SYNCPROVIDER = com.sun.rowset.providers.RIOptimisticProvider;
    
                    private String 
                    tableName;
    
                    private boolean 
                    driverManagerInitialized;
    
                    public void OracleCachedRowSet() 
                    throws java.sql.SQLException;
    
                    public java.sql.Connection 
                    getConnection() 
                    throws java.sql.SQLException;
    java.sql.Connection 
                    getConnectionInternal() 
                    throws java.sql.SQLException;
    
                    public java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    public javax.sql.RowSetReader 
                    getReader();
    
                    public javax.sql.RowSetWriter 
                    getWriter();
    
                    public void 
                    setFetchDirection(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setReader(javax.sql.RowSetReader);
    
                    public void 
                    setWriter(javax.sql.RowSetWriter);
    
                    private 
                    final int 
                    getColumnIndex(String) 
                    throws java.sql.SQLException;
    
                    private 
                    final void 
                    checkColumnIndex(int) 
                    throws java.sql.SQLException;
    
                    private 
                    final boolean 
                    isUpdated(int) 
                    throws java.sql.SQLException;
    
                    private 
                    final void 
                    checkParamIndex(int) 
                    throws java.sql.SQLException;
    
                    private 
                    final void 
                    populateInit(java.sql.ResultSet) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized java.io.InputStream 
                    getStream(int) 
                    throws java.sql.SQLException;
    
                    protected 
                    synchronized void 
                    notifyCursorMoved();
    
                    protected void 
                    checkAndFilterObject(int, Object) 
                    throws java.sql.SQLException;
    OracleRow 
                    getCurrentRow() 
                    throws java.sql.SQLException;
    boolean 
                    isConnectionStayingOpen();
    void 
                    setOriginal() 
                    throws java.sql.SQLException;
    boolean 
                    setOriginalRowInternal(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public void 
                    beforeFirst() 
                    throws java.sql.SQLException;
    
                    public void 
                    afterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    first() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    last() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    relative(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    populate(java.sql.ResultSet) 
                    throws java.sql.SQLException;
    
                    public String 
                    getCursorName() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    clearParameters() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    clearWarnings() 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getParams() 
                    throws java.sql.SQLException;
    
                    public void 
                    setMetaData(javax.sql.RowSetMetaData) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    execute() 
                    throws java.sql.SQLException;
    
                    public void 
                    acceptChanges() 
                    throws javax.sql.rowset.spi.SyncProviderException;
    
                    public void 
                    acceptChanges(java.sql.Connection) 
                    throws javax.sql.rowset.spi.SyncProviderException;
    
                    public Object 
                    clone() 
                    throws CloneNotSupportedException;
    
                    public javax.sql.rowset.CachedRowSet 
                    createCopy() 
                    throws java.sql.SQLException;
    
                    public javax.sql.RowSet 
                    createShared() 
                    throws java.sql.SQLException;
    
                    public void 
                    release() 
                    throws java.sql.SQLException;
    
                    public void 
                    restoreOriginal() 
                    throws java.sql.SQLException;
    
                    public java.util.Collection 
                    toCollection() 
                    throws java.sql.SQLException;
    
                    public java.util.Collection 
                    toCollection(int) 
                    throws java.sql.SQLException;
    
                    public java.util.Collection 
                    toCollection(String) 
                    throws java.sql.SQLException;
    
                    public int 
                    getRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    cancelRowInsert() 
                    throws java.sql.SQLException;
    
                    public void 
                    cancelRowDelete() 
                    throws java.sql.SQLException;
    
                    public void 
                    cancelRowUpdates() 
                    throws java.sql.SQLException;
    
                    public void 
                    insertRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    deleteRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    refreshRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    moveToInsertRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    moveToCurrentRow() 
                    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 java.sql.ResultSet 
                    getOriginalRow() 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    getOriginal() 
                    throws java.sql.SQLException;
    
                    public void 
                    setNull(int, int) 
                    throws java.sql.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;
    
                    public void 
                    setInt(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setLong(int, long) 
                    throws java.sql.SQLException;
    
                    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 
                    setString(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytes(int, byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDate(int, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTime(int, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRef(int, java.sql.Ref) 
                    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 
                    setArray(int, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryStream(int, java.io.InputStream, int) 
                    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 void 
                    setTimestamp(int, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void 
                    setAsciiStream(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, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDate(int, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(int) 
                    throws java.sql.SQLException;
    
                    private 
                    synchronized Number 
                    getNumber(int) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(int, java.util.Map) 
                    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) 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    getBigDecimal(int, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    getDate(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    getTime(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Ref 
                    getRef(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.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public String 
                    getString(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.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized Object 
                    getObject(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 java.math.BigDecimal 
                    getBigDecimal(String, int) 
                    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 java.sql.Time 
                    getTime(String, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    getDate(String, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getAsciiStream(String) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getUnicodeStream(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    getString(String) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream(String) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    getCharacterStream(String) 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    getBigDecimal(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(String, java.util.Calendar) 
                    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 
                    synchronized void 
                    updateObject(int, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateNull(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    updateCharacterStream(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCharacterStream(String, java.io.Reader, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTimestamp(String, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBinaryStream(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    updateBinaryStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    updateAsciiStream(int, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTimestamp(int, java.sql.Timestamp) 
                    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 
                    updateString(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBytes(int, byte[]) 
                    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 
                    updateObject(int, Object, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateNull(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateAsciiStream(String, java.io.InputStream, int) 
                    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 
                    updateString(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBytes(String, byte[]) 
                    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 
                    updateObject(String, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateObject(String, Object, int) 
                    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 
                    updateClob(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateClob(String, java.sql.Clob) 
                    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 int[] 
                    getKeyColumns() 
                    throws java.sql.SQLException;
    
                    public void 
                    setKeyColumns(int[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    getPageSize();
    
                    public void 
                    setPageSize(int) 
                    throws java.sql.SQLException;
    
                    public javax.sql.rowset.spi.SyncProvider 
                    getSyncProvider() 
                    throws java.sql.SQLException;
    
                    public void 
                    setSyncProvider(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    getTableName() 
                    throws java.sql.SQLException;
    
                    public void 
                    setTableName(String) 
                    throws java.sql.SQLException;
    
                    public javax.sql.rowset.CachedRowSet 
                    createCopyNoConstraints() 
                    throws java.sql.SQLException;
    
                    public javax.sql.rowset.CachedRowSet 
                    createCopySchema() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    columnUpdated(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    columnUpdated(String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    execute(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void 
                    commit() 
                    throws java.sql.SQLException;
    
                    public void 
                    rollback() 
                    throws java.sql.SQLException;
    
                    public void 
                    rollback(java.sql.Savepoint) 
                    throws java.sql.SQLException;
    
                    public void 
                    oracleRollback(oracle.jdbc.OracleSavepoint) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOriginalRow() 
                    throws java.sql.SQLException;
    
                    public int 
                    size();
    
                    public boolean 
                    nextPage() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    previousPage() 
                    throws java.sql.SQLException;
    
                    public void 
                    rowSetPopulated(javax.sql.RowSetEvent, int) 
                    throws java.sql.SQLException;
    
                    public javax.sql.rowset.RowSetWarning 
                    getRowSetWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    populate(java.sql.ResultSet, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    undoDelete() 
                    throws java.sql.SQLException;
    
                    public void 
                    undoInsert() 
                    throws java.sql.SQLException;
    
                    public void 
                    undoUpdate() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleRowSet.class

                    package oracle.jdbc.rowset;

                    abstract 
                    synchronized 
                    class OracleRowSet 
                    implements java.io.Serializable, Cloneable, javax.sql.rowset.Joinable {
    
                    protected String 
                    dataSource;
    
                    protected String 
                    dataSourceName;
    
                    protected String 
                    url;
    
                    protected String 
                    username;
    
                    protected String 
                    password;
    
                    protected java.util.Map 
                    typeMap;
    
                    protected int 
                    maxFieldSize;
    
                    protected int 
                    maxRows;
    
                    protected int 
                    queryTimeout;
    
                    protected int 
                    fetchSize;
    
                    protected int 
                    transactionIsolation;
    
                    protected boolean 
                    escapeProcessing;
    
                    protected String 
                    command;
    
                    protected int 
                    concurrency;
    
                    protected boolean 
                    readOnly;
    
                    protected int 
                    fetchDirection;
    
                    protected int 
                    rowsetType;
    
                    protected boolean 
                    showDeleted;
    
                    protected java.util.Vector 
                    listener;
    
                    protected javax.sql.RowSetEvent 
                    rowsetEvent;
    
                    protected java.util.Vector 
                    matchColumnIndexes;
    
                    protected java.util.Vector 
                    matchColumnNames;
    
                    protected void OracleRowSet() 
                    throws java.sql.SQLException;
    
                    protected void 
                    initializeProperties();
    
                    public String 
                    getCommand();
    
                    public int 
                    getConcurrency() 
                    throws java.sql.SQLException;
    
                    public String 
                    getDataSource();
    
                    public String 
                    getDataSourceName();
    
                    public boolean 
                    getEscapeProcessing() 
                    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 String 
                    getPassword();
    
                    public int 
                    getQueryTimeout() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getReadOnly();
    
                    public boolean 
                    isReadOnly();
    
                    public boolean 
                    getShowDeleted();
    
                    public int 
                    getTransactionIsolation();
    
                    public int 
                    getType() 
                    throws java.sql.SQLException;
    
                    public java.util.Map 
                    getTypeMap() 
                    throws java.sql.SQLException;
    
                    public String 
                    getUrl();
    
                    public String 
                    getUsername();
    
                    public void 
                    setCommand(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setConcurrency(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDataSource(String);
    
                    public void 
                    setDataSourceName(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setEscapeProcessing(boolean) 
                    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 
                    setPassword(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setQueryTimeout(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setReadOnly(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setShowDeleted(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTransactionIsolation(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setType(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTypeMap(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public void 
                    setUrl(String);
    
                    public void 
                    setUsername(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    addRowSetListener(javax.sql.RowSetListener);
    
                    public void 
                    removeRowSetListener(javax.sql.RowSetListener);
    
                    protected 
                    synchronized void 
                    notifyCursorMoved();
    
                    protected void 
                    notifyRowChanged();
    
                    protected void 
                    notifyRowSetChanged();
    
                    public int[] 
                    getMatchColumnIndexes() 
                    throws java.sql.SQLException;
    
                    public String[] 
                    getMatchColumnNames() 
                    throws java.sql.SQLException;
    
                    public void 
                    setMatchColumn(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setMatchColumn(int[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    setMatchColumn(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setMatchColumn(String[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    unsetMatchColumn(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    unsetMatchColumn(int[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    unsetMatchColumn(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    unsetMatchColumn(String[]) 
                    throws java.sql.SQLException;
    
                    protected void 
                    checkIfMatchColumnIndexesSet() 
                    throws java.sql.SQLException;
    
                    protected void 
                    checkIfMatchColumnNamesSet() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    abstract String 
                    getTableName() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleRow.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleRow 
                    implements java.io.Serializable, Cloneable {
    
                    private Object[] 
                    column;
    
                    private Object[] 
                    changedColumn;
    
                    private boolean[] 
                    isOriginalNull;
    
                    private byte[] 
                    columnChangeFlag;
    
                    private int 
                    noColumn;
    
                    private int 
                    noColumnsInserted;
    
                    private boolean 
                    rowDeleted;
    
                    private boolean 
                    rowInserted;
    
                    private 
                    final byte 
                    COLUMN_CHANGED;
    
                    private boolean 
                    rowUpdated;
    
                    public void OracleRow(int);
    
                    public void OracleRow(int, boolean);
    
                    public void OracleRow(int, Object[]);
    
                    public void 
                    setColumnValue(int, Object);
    void 
                    markOriginalNull(int, boolean) 
                    throws java.sql.SQLException;
    boolean 
                    isOriginalNull(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateObject(int, Object);
    
                    public void 
                    cancelRowUpdates();
    
                    public Object 
                    getColumn(int);
    
                    public Object 
                    getModifiedColumn(int);
    
                    public boolean 
                    isColumnChanged(int);
    
                    public boolean 
                    isRowUpdated();
    
                    public void 
                    setRowUpdated(boolean);
    
                    public boolean 
                    isRowInserted();
    
                    public void 
                    cancelRowDeletion();
    
                    public void 
                    setRowDeleted(boolean);
    
                    public boolean 
                    isRowDeleted();
    
                    public Object[] 
                    getOriginalRow();
    
                    public boolean 
                    isRowFullyPopulated();
    
                    public void 
                    setInsertedFlag(boolean);
    void 
                    makeUpdatesOriginal();
    
                    public void 
                    insertRow();
    
                    public java.util.Collection 
                    toCollection();
    
                    public OracleRow 
                    createCopy() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getCopy(Object) 
                    throws java.sql.SQLException;
    
                    public Object 
                    clone() 
                    throws CloneNotSupportedException;
}

                

oracle/jdbc/rowset/OracleCachedRowSetReader.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleCachedRowSetReader 
                    implements javax.sql.RowSetReader, java.io.Serializable {
    
                    static 
                    final 
                    transient int 
                    UNICODESTREAM = 273;
    
                    static 
                    final 
                    transient int 
                    BINARYSTREAM = 546;
    
                    static 
                    final 
                    transient int 
                    ASCIISTREAM = 819;
    
                    static 
                    final 
                    transient int 
                    TWO_PARAMETERS = 2;
    
                    static 
                    final 
                    transient int 
                    THREE_PARAMETERS = 3;
    
                    private 
                    static 
                    transient boolean 
                    driverManagerInitialized;
    
                    public void OracleCachedRowSetReader();
    java.sql.Connection 
                    getConnection(javax.sql.RowSetInternal) 
                    throws java.sql.SQLException;
    
                    private void 
                    setParams(Object[], java.sql.PreparedStatement) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    readData(javax.sql.RowSetInternal) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/rowset/OracleCachedRowSetWriter.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleCachedRowSetWriter 
                    implements javax.sql.RowSetWriter, java.io.Serializable {
    
                    private StringBuffer 
                    updateClause;
    
                    private StringBuffer 
                    deleteClause;
    
                    private StringBuffer 
                    insertClause;
    
                    private java.sql.PreparedStatement 
                    insertStmt;
    
                    private java.sql.PreparedStatement 
                    updateStmt;
    
                    private java.sql.PreparedStatement 
                    deleteStmt;
    
                    private java.sql.ResultSetMetaData 
                    rsmd;
    
                    private 
                    transient java.sql.Connection 
                    connection;
    
                    private int 
                    columnCount;
    
                    public void OracleCachedRowSetWriter();
    
                    private String 
                    getSchemaName(javax.sql.RowSet) 
                    throws java.sql.SQLException;
    
                    private String 
                    getTableName(javax.sql.RowSet) 
                    throws java.sql.SQLException;
    
                    private void 
                    initSQLStatement(javax.sql.RowSet) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    insertRow(OracleRow) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    updateRow(javax.sql.RowSet, OracleRow) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    updateRowWithNull(javax.sql.RowSet, OracleRow) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    deleteRow(javax.sql.RowSet, OracleRow) 
                    throws java.sql.SQLException;
    
                    private boolean 
                    deleteRowWithNull(javax.sql.RowSet, OracleRow) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized boolean 
                    writeData(javax.sql.RowSetInternal) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleSerialClob.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleSerialClob 
                    implements java.sql.Clob, java.io.Serializable, Cloneable {
    
                    private char[] 
                    buffer;
    
                    private long 
                    length;
    
                    public void OracleSerialClob(char[]) 
                    throws java.sql.SQLException;
    
                    public void OracleSerialClob(java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getAsciiStream() 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    getCharacterStream() 
                    throws java.sql.SQLException;
    
                    public String 
                    getSubString(long, int) 
                    throws java.sql.SQLException;
    
                    public long 
                    length() 
                    throws java.sql.SQLException;
    
                    public long 
                    position(String, long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(java.sql.Clob, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    setString(long, String) 
                    throws java.sql.SQLException;
    
                    public int 
                    setString(long, String, int, int) 
                    throws java.sql.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;
}

                

oracle/jdbc/rowset/OracleSerialBlob.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleSerialBlob 
                    implements java.sql.Blob, java.io.Serializable, Cloneable {
    
                    private byte[] 
                    buffer;
    
                    private long 
                    length;
    
                    public void OracleSerialBlob(byte[]) 
                    throws java.sql.SQLException;
    
                    public void OracleSerialBlob(java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream() 
                    throws java.sql.SQLException;
    
                    public byte[] 
                    getBytes(long, int) 
                    throws java.sql.SQLException;
    
                    public long 
                    length() 
                    throws java.sql.SQLException;
    
                    public long 
                    position(byte[], long) 
                    throws java.sql.SQLException;
    
                    public long 
                    position(java.sql.Blob, long) 
                    throws java.sql.SQLException;
    
                    public int 
                    setBytes(long, byte[]) 
                    throws java.sql.SQLException;
    
                    public int 
                    setBytes(long, byte[], int, int) 
                    throws java.sql.SQLException;
    
                    public java.io.OutputStream 
                    setBinaryStream(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    truncate(long) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleRowSetMetaData.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleRowSetMetaData 
                    implements javax.sql.RowSetMetaData, java.io.Serializable {
    
                    private int 
                    columnCount;
    
                    private int[] 
                    nullable;
    
                    private int[] 
                    columnDisplaySize;
    
                    private int[] 
                    precision;
    
                    private int[] 
                    scale;
    
                    private int[] 
                    columnType;
    
                    private boolean[] 
                    searchable;
    
                    private boolean[] 
                    caseSensitive;
    
                    private boolean[] 
                    readOnly;
    
                    private boolean[] 
                    writable;
    
                    private boolean[] 
                    definatelyWritable;
    
                    private boolean[] 
                    currency;
    
                    private boolean[] 
                    autoIncrement;
    
                    private boolean[] 
                    signed;
    
                    private String[] 
                    columnLabel;
    
                    private String[] 
                    schemaName;
    
                    private String[] 
                    columnName;
    
                    private String[] 
                    tableName;
    
                    private String[] 
                    columnTypeName;
    
                    private String[] 
                    catalogName;
    
                    private String[] 
                    columnClassName;
    void OracleRowSetMetaData(int) 
                    throws java.sql.SQLException;
    void OracleRowSetMetaData(java.sql.ResultSetMetaData) 
                    throws java.sql.SQLException;
    
                    private void 
                    validateColumnIndex(int) 
                    throws java.sql.SQLException;
    
                    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;
    
                    public void 
                    setAutoIncrement(int, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCaseSensitive(int, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCatalogName(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setColumnCount(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setColumnDisplaySize(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setColumnLabel(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setColumnName(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setColumnType(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setColumnTypeName(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCurrency(int, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setNullable(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setPrecision(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setScale(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setSchemaName(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setSearchable(int, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setSigned(int, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTableName(int, String) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleFilteredRowSet.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleFilteredRowSet 
                    extends OracleWebRowSet 
                    implements javax.sql.rowset.FilteredRowSet {
    
                    private javax.sql.rowset.Predicate 
                    predicate;
    
                    public void OracleFilteredRowSet() 
                    throws java.sql.SQLException;
    
                    public void 
                    setFilter(javax.sql.rowset.Predicate) 
                    throws java.sql.SQLException;
    
                    public javax.sql.rowset.Predicate 
                    getFilter();
    
                    public boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    protected void 
                    checkAndFilterObject(int, Object) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleWebRowSet.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleWebRowSet 
                    extends OracleCachedRowSet 
                    implements javax.sql.rowset.WebRowSet {
    
                    private 
                    transient OracleWebRowSetXmlReader 
                    xmlReader;
    
                    private 
                    transient OracleWebRowSetXmlWriter 
                    xmlWriter;
    
                    public void OracleWebRowSet() 
                    throws java.sql.SQLException;
    
                    public void 
                    readXml(java.io.Reader) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeXml(java.io.Writer) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeXml(java.sql.ResultSet, java.io.Writer) 
                    throws java.sql.SQLException;
    
                    public void 
                    readXml(java.io.InputStream) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeXml(java.io.OutputStream) 
                    throws java.sql.SQLException;
    
                    public void 
                    writeXml(java.sql.ResultSet, java.io.OutputStream) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleWebRowSetXmlReader.class

                    package oracle.jdbc.rowset;

                    public 
                    abstract 
                    interface OracleWebRowSetXmlReader 
                    extends javax.sql.rowset.spi.XmlReader {
}

                

oracle/jdbc/rowset/OracleWebRowSetXmlWriter.class

                    package oracle.jdbc.rowset;

                    public 
                    abstract 
                    interface OracleWebRowSetXmlWriter 
                    extends javax.sql.rowset.spi.XmlWriter {
}

                

oracle/jdbc/rowset/OracleWebRowSetXmlReaderImpl.class

                    package oracle.jdbc.rowset;

                    synchronized 
                    class OracleWebRowSetXmlReaderImpl 
                    implements OracleWebRowSetXmlReader {
    
                    private 
                    static 
                    final String 
                    JAVA_SAXPARSER_PROPERTY = javax.xml.parsers.SAXParserFactory;
    
                    private 
                    static 
                    final String 
                    JAVA_DOMPARSER_PROPERTY = javax.xml.parsers.DocumentBuilderFactory;
    
                    private 
                    static 
                    final String 
                    ORACLE_JAXP_SAXPARSER_FACTORY = oracle.xml.jaxp.JXSAXParserFactory;
    
                    private 
                    static 
                    final String 
                    ORACLE_JAXP_DOMPARSER_FACTORY = oracle.xml.jaxp.JXDocumentBuilderFactory;
    
                    private 
                    static 
                    final String 
                    JAXP_SCHEMA_LANGUAGE = http://java.sun.com/xml/jaxp/properties/schemaLanguage;
    
                    private 
                    static 
                    final String 
                    JAXP_SCHEMA_SOURCE = http://java.sun.com/xml/jaxp/properties/schemaSource;
    
                    private 
                    static 
                    final String 
                    W3C_XML_SCHEMA = http://www.w3.org/2001/XMLSchema;
    
                    private 
                    static 
                    final String 
                    WEBROWSET_SCHEMA = http://java.sun.com/xml/ns/jdbc/webrowset.xsd;
    
                    private org.w3c.dom.Document 
                    document;
    
                    private String 
                    parserStr;
    void OracleWebRowSetXmlReaderImpl();
    
                    public void 
                    readXML(javax.sql.rowset.WebRowSet, java.io.Reader) 
                    throws java.sql.SQLException;
    
                    public void 
                    readData(javax.sql.RowSetInternal) 
                    throws java.sql.SQLException;
    
                    private void 
                    readXMLSax(OracleWebRowSet, java.io.Reader) 
                    throws java.sql.SQLException;
    
                    private void 
                    readXMLDom(OracleWebRowSet, java.io.Reader) 
                    throws java.sql.SQLException;
    
                    private String 
                    getSystemProperty(String);
}

                

oracle/jdbc/rowset/OracleWebRowSetXmlWriterImpl.class

                    package oracle.jdbc.rowset;

                    synchronized 
                    class OracleWebRowSetXmlWriterImpl 
                    implements OracleWebRowSetXmlWriter {
    
                    private java.io.Writer 
                    xmlWriter;
    
                    private java.util.Stack 
                    xmlTagStack;
    
                    private 
                    static 
                    final String 
                    WEBROWSET_ELEMENT = webRowSet;
    
                    private 
                    static 
                    final String 
                    PROPERTIES_ELEMENT = properties;
    
                    private 
                    static 
                    final String 
                    METADATA_ELEMENT = metadata;
    
                    private 
                    static 
                    final String 
                    DATA_ELEMENT = data;
    
                    private 
                    static 
                    final String 
                    PROPERTY_COMMAND = command;
    
                    private 
                    static 
                    final String 
                    PROPERTY_CONCURRENCY = concurrency;
    
                    private 
                    static 
                    final String 
                    PROPERTY_DATASOURCE = datasource;
    
                    private 
                    static 
                    final String 
                    PROPERTY_ESCAPEPROCESSING = escape-processing;
    
                    private 
                    static 
                    final String 
                    PROPERTY_FETCHDIRECTION = fetch-direction;
    
                    private 
                    static 
                    final String 
                    PROPERTY_FETCHSIZE = fetch-size;
    
                    private 
                    static 
                    final String 
                    PROPERTY_ISOLATIONLEVEL = isolation-level;
    
                    private 
                    static 
                    final String 
                    PROPERTY_KEYCOLUMNS = key-columns;
    
                    private 
                    static 
                    final String 
                    PROPERTY_MAP = map;
    
                    private 
                    static 
                    final String 
                    PROPERTY_MAXFIELDSIZE = max-field-size;
    
                    private 
                    static 
                    final String 
                    PROPERTY_MAXROWS = max-rows;
    
                    private 
                    static 
                    final String 
                    PROPERTY_QUERYTIMEOUT = query-timeout;
    
                    private 
                    static 
                    final String 
                    PROPERTY_READONLY = read-only;
    
                    private 
                    static 
                    final String 
                    PROPERTY_ROWSETTYPE = rowset-type;
    
                    private 
                    static 
                    final String 
                    PROPERTY_SHOWDELETED = show-deleted;
    
                    private 
                    static 
                    final String 
                    PROPERTY_TABLENAME = table-name;
    
                    private 
                    static 
                    final String 
                    PROPERTY_URL = url;
    
                    private 
                    static 
                    final String 
                    PROPERTY_SYNCPROVIDER = sync-provider;
    
                    private 
                    static 
                    final String 
                    PROPERTY_NULL = null;
    
                    private 
                    static 
                    final String 
                    PROPERTY_KC_COLUMN = column;
    
                    private 
                    static 
                    final String 
                    PROPERTY_MAP_TYPE = type;
    
                    private 
                    static 
                    final String 
                    PROPERTY_MAP_CLASS = class;
    
                    private 
                    static 
                    final String 
                    PROPERTY_S_PROVIDERNAME = sync-provider-name;
    
                    private 
                    static 
                    final String 
                    PROPERTY_S_PROVIDERVENDOR = sync-provider-vendor;
    
                    private 
                    static 
                    final String 
                    PROPERTY_S_PROVIDERVERSION = sync-provider-version;
    
                    private 
                    static 
                    final String 
                    PROPERTY_S_PROVIDERGRADE = sync-provider-grade;
    
                    private 
                    static 
                    final String 
                    PROPERTY_S_DATASOURCELOCK = data-source-lock;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNCOUNT = column-count;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNDEFINITION = column-definition;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNINDEX = column-index;
    
                    private 
                    static 
                    final String 
                    METADATA_AUTOINCREMENT = auto-increment;
    
                    private 
                    static 
                    final String 
                    METADATA_CASESENSITIVE = case-sensitive;
    
                    private 
                    static 
                    final String 
                    METADATA_CURRENCY = currency;
    
                    private 
                    static 
                    final String 
                    METADATA_NULLABLE = nullable;
    
                    private 
                    static 
                    final String 
                    METADATA_SIGNED = signed;
    
                    private 
                    static 
                    final String 
                    METADATA_SEARCHABLE = searchable;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNDISPLAYSIZE = column-display-size;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNLABEL = column-label;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNNAME = column-name;
    
                    private 
                    static 
                    final String 
                    METADATA_SCHEMANAME = schema-name;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNPRECISION = column-precision;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNSCALE = column-scale;
    
                    private 
                    static 
                    final String 
                    METADATA_TABLENAME = table-name;
    
                    private 
                    static 
                    final String 
                    METADATA_CATALOGNAME = catalog-name;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNTYPE = column-type;
    
                    private 
                    static 
                    final String 
                    METADATA_COLUMNTYPENAME = column-type-name;
    
                    private 
                    static 
                    final String 
                    METADATA_NULL = null;
    
                    private 
                    static 
                    final String 
                    DATA_CURRENTROW = currentRow;
    
                    private 
                    static 
                    final String 
                    DATA_INSERTROW = insertRow;
    
                    private 
                    static 
                    final String 
                    DATA_DELETEROW = deleteRow;
    
                    private 
                    static 
                    final String 
                    DATA_MODIFYROW = modifyRow;
    
                    private 
                    static 
                    final String 
                    DATA_COLUMNVALUE = columnValue;
    
                    private 
                    static 
                    final String 
                    DATA_UPDATEVALUE = updateValue;
    
                    private 
                    static 
                    final String 
                    DATA_NULL = null;
    void OracleWebRowSetXmlWriterImpl();
    
                    public void 
                    writeXML(javax.sql.rowset.WebRowSet, java.io.Writer) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    writeData(javax.sql.RowSetInternal) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeRowSet(OracleWebRowSet) 
                    throws java.sql.SQLException;
    
                    private void 
                    writeHeaderAndStartWebRowSetElement() 
                    throws java.io.IOException;
    
                    private void 
                    endWebRowSetElement() 
                    throws java.io.IOException;
    
                    private void 
                    startElement(String) 
                    throws java.io.IOException;
    
                    private void 
                    endElement(String) 
                    throws java.io.IOException;
    
                    private void 
                    endElement() 
                    throws java.io.IOException;
    
                    private void 
                    startTag(String) 
                    throws java.io.IOException;
    
                    private void 
                    endTag(String) 
                    throws java.io.IOException;
    
                    private void 
                    setCurrentTag(String);
    
                    private String 
                    getCurrentTag();
    
                    private void 
                    writeEmptyElement(String) 
                    throws java.io.IOException;
    
                    private void 
                    writeProperties(OracleWebRowSet) 
                    throws java.io.IOException;
    
                    private void 
                    writeMetaData(OracleWebRowSet) 
                    throws java.io.IOException;
    
                    private void 
                    writeElementBoolean(String, boolean) 
                    throws java.io.IOException;
    
                    private void 
                    writeElementInteger(String, int) 
                    throws java.io.IOException;
    
                    private void 
                    writeElementString(String, String) 
                    throws java.io.IOException;
    
                    private void 
                    writeData(OracleWebRowSet) 
                    throws java.io.IOException;
    
                    private void 
                    writeBigDecimal(java.math.BigDecimal) 
                    throws java.io.IOException;
    
                    private void 
                    writeBoolean(boolean) 
                    throws java.io.IOException;
    
                    private void 
                    writeDouble(double) 
                    throws java.io.IOException;
    
                    private void 
                    writeFloat(float) 
                    throws java.io.IOException;
    
                    private void 
                    writeInteger(int) 
                    throws java.io.IOException;
    
                    private void 
                    writeLong(long) 
                    throws java.io.IOException;
    
                    private void 
                    writeNull() 
                    throws java.io.IOException;
    
                    private void 
                    writeShort(short) 
                    throws java.io.IOException;
    
                    private void 
                    writeBytes(byte[]) 
                    throws java.io.IOException;
    
                    private void 
                    writeString(String) 
                    throws java.io.IOException;
    
                    private void 
                    writeIndent(int) 
                    throws java.io.IOException;
    
                    private void 
                    writeValue(int, javax.sql.RowSet) 
                    throws java.io.IOException;
}

                

oracle/jdbc/rowset/OracleWebRowSetXmlReaderContHandler.class

                    package oracle.jdbc.rowset;

                    synchronized 
                    class OracleWebRowSetXmlReaderContHandler 
                    extends org.xml.sax.helpers.DefaultHandler {
    
                    private OracleWebRowSet 
                    wrset;
    
                    private javax.sql.RowSetMetaData 
                    rsetMetaData;
    
                    private java.util.Vector 
                    updatesToRowSet;
    
                    private java.util.Vector 
                    keyCols;
    
                    private String 
                    columnValue;
    
                    private String 
                    propertyValue;
    
                    private String 
                    metadataValue;
    
                    private boolean 
                    isNullValue;
    
                    private int 
                    columnIndex;
    
                    private java.util.Hashtable 
                    propertyNameTagMap;
    
                    private java.util.Hashtable 
                    metadataNameTagMap;
    
                    private java.util.Hashtable 
                    dataNameTagMap;
    
                    protected 
                    static 
                    final String 
                    WEBROWSET_ELEMENT_NAME = webRowSet;
    
                    protected 
                    static 
                    final String 
                    PROPERTIES_ELEMENT_NAME = properties;
    
                    protected 
                    static 
                    final String 
                    METADATA_ELEMENT_NAME = metadata;
    
                    protected 
                    static 
                    final String 
                    DATA_ELEMENT_NAME = data;
    
                    private int 
                    state;
    
                    private 
                    static 
                    final int 
                    INITIAL_STATE = 0;
    
                    private 
                    static 
                    final int 
                    PROPERTIES_STATE = 1;
    
                    private 
                    static 
                    final int 
                    METADATA_STATE = 2;
    
                    private 
                    static 
                    final int 
                    DATA_STATE = 3;
    
                    private int 
                    tag;
    
                    private 
                    static 
                    final int 
                    NO_TAG = -1;
    
                    private String[] 
                    propertyNames;
    
                    private boolean 
                    readReadOnlyValue;
    
                    private 
                    static 
                    final int 
                    PROPERTY_COMMAND_TAG = 0;
    
                    private 
                    static 
                    final int 
                    PROPERTY_CONCURRENCY_TAG = 1;
    
                    private 
                    static 
                    final int 
                    PROPERTY_DATASOURCETAG = 2;
    
                    private 
                    static 
                    final int 
                    PROPERTY_ESCAPEPROCESSING_TAG = 3;
    
                    private 
                    static 
                    final int 
                    PROPERTY_FETCHDIRECTION_TAG = 4;
    
                    private 
                    static 
                    final int 
                    PROPERTY_FETCHSIZE_TAG = 5;
    
                    private 
                    static 
                    final int 
                    PROPERTY_ISOLATIONLEVEL_TAG = 6;
    
                    private 
                    static 
                    final int 
                    PROPERTY_KEYCOLUMNS_TAG = 7;
    
                    private 
                    static 
                    final int 
                    PROPERTY_MAP_TAG = 8;
    
                    private 
                    static 
                    final int 
                    PROPERTY_MAXFIELDSIZE_TAG = 9;
    
                    private 
                    static 
                    final int 
                    PROPERTY_MAXROWS_TAG = 10;
    
                    private 
                    static 
                    final int 
                    PROPERTY_QUERYTIMEOUT_TAG = 11;
    
                    private 
                    static 
                    final int 
                    PROPERTY_READONLY_TAG = 12;
    
                    private 
                    static 
                    final int 
                    PROPERTY_ROWSETTYPE_TAG = 13;
    
                    private 
                    static 
                    final int 
                    PROPERTY_SHOWDELETED_TAG = 14;
    
                    private 
                    static 
                    final int 
                    PROPERTY_TABLENAME_TAG = 15;
    
                    private 
                    static 
                    final int 
                    PROPERTY_URL_TAG = 16;
    
                    private 
                    static 
                    final int 
                    PROPERTY_SYNCPROVIDER_TAG = 17;
    
                    private 
                    static 
                    final int 
                    PROPERTY_NULL_TAG = 18;
    
                    private 
                    static 
                    final int 
                    PROPERTY_COLUMN_TAG = 19;
    
                    private 
                    static 
                    final int 
                    PROPERTY_TYPE_TAG = 20;
    
                    private 
                    static 
                    final int 
                    PROPERTY_CLASS_TAG = 21;
    
                    private 
                    static 
                    final int 
                    PROPERTY_SYNCPROVIDERNAME_TAG = 22;
    
                    private 
                    static 
                    final int 
                    PROPERTY_SYNCPROVIDERVENDOR_TAG = 23;
    
                    private 
                    static 
                    final int 
                    PROPERTY_SYNCPROVIDERVERSION_TAG = 24;
    
                    private 
                    static 
                    final int 
                    PROPERTY_SYNCPROVIDERGRADE_TAG = 25;
    
                    private 
                    static 
                    final int 
                    PROPERTY_DATASOURCELOCK_TAG = 26;
    
                    private String[] 
                    metadataNames;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNCOUNT_TAG = 0;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNDEFINITION_TAG = 1;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNINDEX_TAG = 2;
    
                    private 
                    static 
                    final int 
                    METADATA_AUTOINCREMENT_TAG = 3;
    
                    private 
                    static 
                    final int 
                    METADATA_CASESENSITIVE_TAG = 4;
    
                    private 
                    static 
                    final int 
                    METADATA_CURRENCY_TAG = 5;
    
                    private 
                    static 
                    final int 
                    METADATA_NULLABLE_TAG = 6;
    
                    private 
                    static 
                    final int 
                    METADATA_SIGNED_TAG = 7;
    
                    private 
                    static 
                    final int 
                    METADATA_SEARCHABLE_TAG = 8;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNDISPLAYSIZE_TAG = 9;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNLABEL_TAG = 10;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNNAME_TAG = 11;
    
                    private 
                    static 
                    final int 
                    METADATA_SCHEMANAME_TAG = 12;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNPRECISION_TAG = 13;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNSCALE_TAG = 14;
    
                    private 
                    static 
                    final int 
                    METADATA_TABLENAME_TAG = 15;
    
                    private 
                    static 
                    final int 
                    METADATA_CATALOGNAME_TAG = 16;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNTYPE_TAG = 17;
    
                    private 
                    static 
                    final int 
                    METADATA_COLUMNTYPENAME_TAG = 18;
    
                    private 
                    static 
                    final int 
                    METADATA_NULL_TAG = 19;
    
                    private String[] 
                    dataNames;
    
                    private 
                    static 
                    final int 
                    DATA_CURRENTROW_TAG = 0;
    
                    private 
                    static 
                    final int 
                    DATA_INSERTROW_TAG = 1;
    
                    private 
                    static 
                    final int 
                    DATA_DELETEROW_TAG = 2;
    
                    private 
                    static 
                    final int 
                    DATA_MODIFYROW_TAG = 3;
    
                    private 
                    static 
                    final int 
                    DATA_COLUMNVALUE_TAG = 4;
    
                    private 
                    static 
                    final int 
                    DATA_UPDATEVALUE_TAG = 5;
    
                    private 
                    static 
                    final int 
                    DATA_NULL_TAG = 6;
    void OracleWebRowSetXmlReaderContHandler(javax.sql.RowSet);
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endDocument() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endElement(String, String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    error(org.xml.sax.SAXParseException) 
                    throws org.xml.sax.SAXParseException;
    
                    public void 
                    warning(org.xml.sax.SAXParseException) 
                    throws org.xml.sax.SAXParseException;
    
                    private void 
                    initialize();
    
                    protected void 
                    processElement(String) 
                    throws org.xml.sax.SAXException;
    
                    private java.math.BigDecimal 
                    getBigDecimalValue(String);
    
                    private byte[] 
                    getBinaryValue(String);
    
                    private boolean 
                    getBooleanValue(String);
    
                    private byte 
                    getByteValue(String);
    
                    private java.sql.Date 
                    getDateValue(String);
    
                    private double 
                    getDoubleValue(String);
    
                    private float 
                    getFloatValue(String);
    
                    private int 
                    getIntegerValue(String);
    
                    private long 
                    getLongValue(String);
    
                    private boolean 
                    getNullValue();
    
                    private short 
                    getShortValue(String);
    
                    private String 
                    getStringValue(String);
    
                    private java.sql.Time 
                    getTimeValue(String);
    
                    private java.sql.Timestamp 
                    getTimestampValue(String);
    
                    private java.sql.Blob 
                    getBlobValue(String) 
                    throws java.sql.SQLException;
    
                    private java.sql.Clob 
                    getClobValue(String) 
                    throws java.sql.SQLException;
    
                    private void 
                    applyUpdates() 
                    throws org.xml.sax.SAXException;
    
                    private void 
                    insertValue(String) 
                    throws java.sql.SQLException;
    
                    private void 
                    setPropertyValue(String) 
                    throws java.sql.SQLException;
    
                    private void 
                    setMetaDataValue(String) 
                    throws java.sql.SQLException;
    
                    private void 
                    setDataValue(String) 
                    throws java.sql.SQLException;
    
                    protected void 
                    setNullValue(boolean);
    
                    private int 
                    getState();
    
                    private int 
                    getTag();
    
                    private void 
                    setState(String) 
                    throws org.xml.sax.SAXException;
    
                    private void 
                    setTag(int);
}

                

oracle/jdbc/rowset/OracleWebRowSetXmlReaderDomHandler.class

                    package oracle.jdbc.rowset;

                    synchronized 
                    class OracleWebRowSetXmlReaderDomHandler 
                    extends OracleWebRowSetXmlReaderContHandler {
    void OracleWebRowSetXmlReaderDomHandler(javax.sql.RowSet);
    void 
                    readXMLDocument(org.w3c.dom.Document) 
                    throws org.xml.sax.SAXException;
}

                

oracle/jdbc/rowset/OracleJDBCRowSet.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleJDBCRowSet 
                    extends OracleRowSet 
                    implements javax.sql.RowSet, javax.sql.rowset.JdbcRowSet {
    
                    private java.sql.Connection 
                    connection;
    
                    private 
                    static boolean 
                    driverManagerInitialized;
    
                    private java.sql.PreparedStatement 
                    preparedStatement;
    
                    private java.sql.ResultSet 
                    resultSet;
    
                    public void OracleJDBCRowSet() 
                    throws java.sql.SQLException;
    
                    public void OracleJDBCRowSet(java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    public void 
                    execute() 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    private java.sql.Connection 
                    getConnection(javax.sql.RowSet) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    wasNull() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    clearWarnings() 
                    throws java.sql.SQLException;
    
                    public String 
                    getCursorName() 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSetMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public int 
                    findColumn(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    clearParameters() 
                    throws java.sql.SQLException;
    
                    public java.sql.Statement 
                    getStatement() 
                    throws java.sql.SQLException;
    
                    public void 
                    setCommand(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setReadOnly(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setFetchDirection(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setShowDeleted(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    next() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    previous() 
                    throws java.sql.SQLException;
    
                    public void 
                    beforeFirst() 
                    throws java.sql.SQLException;
    
                    public void 
                    afterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    first() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    last() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    absolute(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    relative(int) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isBeforeFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isAfterLast() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isFirst() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isLast() 
                    throws java.sql.SQLException;
    
                    public void 
                    insertRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    updateRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    deleteRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    refreshRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    cancelRowUpdates() 
                    throws java.sql.SQLException;
    
                    public void 
                    moveToInsertRow() 
                    throws java.sql.SQLException;
    
                    public void 
                    moveToCurrentRow() 
                    throws java.sql.SQLException;
    
                    public int 
                    getRow() 
                    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 
                    setNull(int, int) 
                    throws java.sql.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;
    
                    public void 
                    setInt(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setLong(int, long) 
                    throws java.sql.SQLException;
    
                    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 
                    setString(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBytes(int, byte[]) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDate(int, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public void 
                    setTime(int, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    setRef(int, java.sql.Ref) 
                    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 
                    setArray(int, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public void 
                    setBinaryStream(int, java.io.InputStream, int) 
                    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 void 
                    setTimestamp(int, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void 
                    setAsciiStream(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, int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObject(int, Object, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDate(int, java.sql.Date, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(int, java.util.Map) 
                    throws java.sql.SQLException;
    
                    public java.math.BigDecimal 
                    getBigDecimal(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Ref 
                    getRef(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.Array 
                    getArray(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    getDate(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Time 
                    getTime(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(int, java.util.Calendar) 
                    throws java.sql.SQLException;
    
                    public String 
                    getString(int) 
                    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 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 byte[] 
                    getBytes(int) 
                    throws java.sql.SQLException;
    
                    public java.sql.Date 
                    getDate(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 java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getInt(int) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(int) 
                    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 java.math.BigDecimal 
                    getBigDecimal(String, int) 
                    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 java.io.InputStream 
                    getAsciiStream(String) 
                    throws java.sql.SQLException;
    
                    public java.io.InputStream 
                    getUnicodeStream(String) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObject(String) 
                    throws java.sql.SQLException;
    
                    public java.io.Reader 
                    getCharacterStream(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.math.BigDecimal 
                    getBigDecimal(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.io.InputStream 
                    getBinaryStream(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.Timestamp 
                    getTimestamp(String, java.util.Calendar) 
                    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 void 
                    updateNull(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCharacterStream(int, java.io.Reader, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateTimestamp(int, java.sql.Timestamp) 
                    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 
                    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 
                    updateString(int, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBytes(int, byte[]) 
                    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 
                    updateObject(int, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateObject(int, Object, int) 
                    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 
                    updateString(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateBytes(String, byte[]) 
                    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 
                    updateObject(String, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateObject(String, Object, int) 
                    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 
                    updateTimestamp(String, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateCharacterStream(String, java.io.Reader, int) 
                    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 
                    updateClob(int, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public void 
                    updateClob(String, java.sql.Clob) 
                    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 void 
                    commit() 
                    throws java.sql.SQLException;
    
                    public void 
                    rollback() 
                    throws java.sql.SQLException;
    
                    public void 
                    rollback(java.sql.Savepoint) 
                    throws java.sql.SQLException;
    
                    public void 
                    oracleRollback(oracle.jdbc.OracleSavepoint) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoCommit() 
                    throws java.sql.SQLException;
    
                    public void 
                    setAutoCommit(boolean) 
                    throws java.sql.SQLException;
    
                    public javax.sql.rowset.RowSetWarning 
                    getRowSetWarnings() 
                    throws java.sql.SQLException;
    String 
                    getTableName() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleJoinable.class

                    package oracle.jdbc.rowset;

                    public 
                    abstract 
                    interface OracleJoinable 
                    extends javax.sql.rowset.Joinable {
    
                    public 
                    abstract int[] 
                    getMatchColumnIndexes() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String[] 
                    getMatchColumnNames() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setMatchColumn(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setMatchColumn(int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setMatchColumn(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setMatchColumn(String[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    unsetMatchColumn(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    unsetMatchColumn(int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    unsetMatchColumn(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    unsetMatchColumn(String[]) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleJoinRowSet.class

                    package oracle.jdbc.rowset;

                    public 
                    synchronized 
                    class OracleJoinRowSet 
                    extends OracleWebRowSet 
                    implements javax.sql.rowset.JoinRowSet {
    
                    private 
                    static 
                    final String 
                    MATCH_COLUMN_SUFFIX = #MATCH_COLUMN;
    
                    private 
                    static boolean[] 
                    supportedJoins;
    
                    private int 
                    joinType;
    
                    private java.util.Vector 
                    addedRowSets;
    
                    private java.util.Vector 
                    addedRowSetNames;
    
                    private Object 
                    lockForJoinActions;
    
                    public void OracleJoinRowSet() 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    addRowSet(javax.sql.rowset.Joinable) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    addRowSet(javax.sql.RowSet, int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    addRowSet(javax.sql.RowSet, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    addRowSet(javax.sql.RowSet[], int[]) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    addRowSet(javax.sql.RowSet[], String[]) 
                    throws java.sql.SQLException;
    
                    public java.util.Collection 
                    getRowSets() 
                    throws java.sql.SQLException;
    
                    public String[] 
                    getRowSetNames() 
                    throws java.sql.SQLException;
    
                    public javax.sql.rowset.CachedRowSet 
                    toCachedRowSet() 
                    throws java.sql.SQLException;
    
                    public int 
                    getJoinType();
    
                    public boolean 
                    supportsCrossJoin();
    
                    public boolean 
                    supportsInnerJoin();
    
                    public boolean 
                    supportsLeftOuterJoin();
    
                    public boolean 
                    supportsRightOuterJoin();
    
                    public boolean 
                    supportsFullJoin();
    
                    public void 
                    setJoinType(int) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized String 
                    getWhereClause() 
                    throws java.sql.SQLException;
    
                    private void 
                    doInnerJoin(OracleCachedRowSet) 
                    throws java.sql.SQLException;
    
                    private void 
                    setNewColumnMetaData(int, javax.sql.RowSetMetaData, int, javax.sql.RowSetMetaData, boolean, String) 
                    throws java.sql.SQLException;
    
                    private OracleCachedRowSet 
                    checkAndWrapRowSet(javax.sql.RowSet) 
                    throws java.sql.SQLException;
    
                    private String 
                    getMatchColumnTableName(javax.sql.RowSet) 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/rowset/OraclePredicate.class

                    package oracle.jdbc.rowset;

                    public 
                    abstract 
                    interface OraclePredicate 
                    extends javax.sql.rowset.Predicate {
    
                    public 
                    abstract boolean 
                    evaluate(javax.sql.RowSet);
    
                    public 
                    abstract boolean 
                    evaluate(Object, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    evaluate(Object, String) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/rowset/OracleRowSetListenerAdapter.class

                    package oracle.jdbc.rowset;

                    public 
                    abstract 
                    synchronized 
                    class OracleRowSetListenerAdapter 
                    implements javax.sql.RowSetListener, java.io.Serializable {
    
                    public void OracleRowSetListenerAdapter();
    
                    public void 
                    cursorMoved(javax.sql.RowSetEvent);
    
                    public void 
                    rowChanged(javax.sql.RowSetEvent);
    
                    public void 
                    rowSetChanged(javax.sql.RowSetEvent);
}

                

oracle/jdbc/connector/OracleConnectionManager.class

                    package oracle.jdbc.connector;

                    public 
                    synchronized 
                    class OracleConnectionManager 
                    implements javax.resource.spi.ConnectionManager {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:41_PST_2006;
    
                    public void OracleConnectionManager();
    
                    public Object 
                    allocateConnection(javax.resource.spi.ManagedConnectionFactory, javax.resource.spi.ConnectionRequestInfo) 
                    throws javax.resource.ResourceException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/connector/OracleConnectionRequestInfo.class

                    package oracle.jdbc.connector;

                    public 
                    synchronized 
                    class OracleConnectionRequestInfo 
                    implements javax.resource.spi.ConnectionRequestInfo {
    
                    private String 
                    user;
    
                    private String 
                    password;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:41_PST_2006;
    
                    public void OracleConnectionRequestInfo(String, String);
    
                    public String 
                    getUser();
    
                    public void 
                    setUser(String);
    
                    public String 
                    getPassword();
    
                    public void 
                    setPassword(String);
    
                    public boolean 
                    equals(Object);
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/connector/OracleLocalTransaction.class

                    package oracle.jdbc.connector;

                    public 
                    synchronized 
                    class OracleLocalTransaction 
                    implements javax.resource.spi.LocalTransaction {
    
                    private OracleManagedConnection 
                    managedConnection;
    
                    private java.sql.Connection 
                    connection;
    boolean 
                    isBeginCalled;
    
                    private 
                    static 
                    final String 
                    RAERR_LTXN_COMMIT = commit without begin;
    
                    private 
                    static 
                    final String 
                    RAERR_LTXN_ROLLBACK = rollback without begin;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:41_PST_2006;
    void OracleLocalTransaction(OracleManagedConnection) 
                    throws javax.resource.ResourceException;
    
                    public void 
                    begin() 
                    throws javax.resource.ResourceException;
    
                    public void 
                    commit() 
                    throws javax.resource.ResourceException;
    
                    public void 
                    rollback() 
                    throws javax.resource.ResourceException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/connector/OracleManagedConnection.class

                    package oracle.jdbc.connector;

                    public 
                    synchronized 
                    class OracleManagedConnection 
                    implements javax.resource.spi.ManagedConnection {
    
                    private oracle.jdbc.xa.OracleXAConnection 
                    xaConnection;
    
                    private java.util.Hashtable 
                    connectionListeners;
    
                    private java.sql.Connection 
                    connection;
    
                    private java.io.PrintWriter 
                    logWriter;
    
                    private javax.resource.spi.security.PasswordCredential 
                    passwordCredential;
    
                    private OracleLocalTransaction 
                    localTxn;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:41_PST_2006;
    void OracleManagedConnection(javax.sql.XAConnection);
    
                    public Object 
                    getConnection(javax.security.auth.Subject, javax.resource.spi.ConnectionRequestInfo) 
                    throws javax.resource.ResourceException;
    
                    public void 
                    destroy() 
                    throws javax.resource.ResourceException;
    
                    public void 
                    cleanup() 
                    throws javax.resource.ResourceException;
    
                    public void 
                    associateConnection(Object);
    
                    public void 
                    addConnectionEventListener(javax.resource.spi.ConnectionEventListener);
    
                    public void 
                    removeConnectionEventListener(javax.resource.spi.ConnectionEventListener);
    
                    public javax.transaction.xa.XAResource 
                    getXAResource() 
                    throws javax.resource.ResourceException;
    
                    public javax.resource.spi.LocalTransaction 
                    getLocalTransaction() 
                    throws javax.resource.ResourceException;
    
                    public javax.resource.spi.ManagedConnectionMetaData 
                    getMetaData() 
                    throws javax.resource.ResourceException;
    
                    public void 
                    setLogWriter(java.io.PrintWriter) 
                    throws javax.resource.ResourceException;
    
                    public java.io.PrintWriter 
                    getLogWriter() 
                    throws javax.resource.ResourceException;
    java.sql.Connection 
                    getPhysicalConnection() 
                    throws javax.resource.ResourceException;
    void 
                    setPasswordCredential(javax.resource.spi.security.PasswordCredential);
    javax.resource.spi.security.PasswordCredential 
                    getPasswordCredential();
    void 
                    eventOccurred(int) 
                    throws javax.resource.ResourceException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/connector/OracleManagedConnectionMetaData.class

                    package oracle.jdbc.connector;

                    public 
                    synchronized 
                    class OracleManagedConnectionMetaData 
                    implements javax.resource.spi.ManagedConnectionMetaData {
    
                    private OracleManagedConnection 
                    managedConnection;
    
                    private oracle.jdbc.driver.OracleDatabaseMetaData 
                    databaseMetaData;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:41_PST_2006;
    void OracleManagedConnectionMetaData(OracleManagedConnection) 
                    throws javax.resource.ResourceException;
    
                    public String 
                    getEISProductName() 
                    throws javax.resource.ResourceException;
    
                    public String 
                    getEISProductVersion() 
                    throws javax.resource.ResourceException;
    
                    public int 
                    getMaxConnections() 
                    throws javax.resource.ResourceException;
    
                    public String 
                    getUserName() 
                    throws javax.resource.ResourceException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/connector/OracleManagedConnectionFactory.class

                    package oracle.jdbc.connector;

                    public 
                    synchronized 
                    class OracleManagedConnectionFactory 
                    implements javax.resource.spi.ManagedConnectionFactory {
    
                    private javax.sql.XADataSource 
                    xaDataSource;
    
                    private String 
                    xaDataSourceName;
    
                    private 
                    static 
                    final String 
                    RAERR_MCF_SET_XADS = invalid xads;
    
                    private 
                    static 
                    final String 
                    RAERR_MCF_GET_PCRED = no password credential;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:41_PST_2006;
    
                    public void OracleManagedConnectionFactory() 
                    throws javax.resource.ResourceException;
    
                    public void OracleManagedConnectionFactory(javax.sql.XADataSource) 
                    throws javax.resource.ResourceException;
    
                    public void 
                    setXADataSourceName(String);
    
                    public String 
                    getXADataSourceName();
    
                    public Object 
                    createConnectionFactory(javax.resource.spi.ConnectionManager) 
                    throws javax.resource.ResourceException;
    
                    public Object 
                    createConnectionFactory() 
                    throws javax.resource.ResourceException;
    
                    public javax.resource.spi.ManagedConnection 
                    createManagedConnection(javax.security.auth.Subject, javax.resource.spi.ConnectionRequestInfo) 
                    throws javax.resource.ResourceException;
    
                    public javax.resource.spi.ManagedConnection 
                    matchManagedConnections(java.util.Set, javax.security.auth.Subject, javax.resource.spi.ConnectionRequestInfo) 
                    throws javax.resource.ResourceException;
    
                    public void 
                    setLogWriter(java.io.PrintWriter) 
                    throws javax.resource.ResourceException;
    
                    public java.io.PrintWriter 
                    getLogWriter() 
                    throws javax.resource.ResourceException;
    
                    private void 
                    setupXADataSource() 
                    throws javax.resource.ResourceException;
    
                    private javax.resource.spi.security.PasswordCredential 
                    getPasswordCredential(javax.security.auth.Subject, javax.resource.spi.ConnectionRequestInfo) 
                    throws javax.resource.ResourceException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/connector/OracleResourceAdapter.class

                    package oracle.jdbc.connector;

                    public 
                    synchronized 
                    class OracleResourceAdapter 
                    implements javax.resource.spi.ResourceAdapter {
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:41_PST_2006;
    
                    public void OracleResourceAdapter();
    
                    public void 
                    start(javax.resource.spi.BootstrapContext) 
                    throws javax.resource.spi.ResourceAdapterInternalException;
    
                    public void 
                    stop();
    
                    public void 
                    endpointActivation(javax.resource.spi.endpoint.MessageEndpointFactory, javax.resource.spi.ActivationSpec) 
                    throws javax.resource.NotSupportedException;
    
                    public void 
                    endpointDeactivation(javax.resource.spi.endpoint.MessageEndpointFactory, javax.resource.spi.ActivationSpec);
    
                    public javax.transaction.xa.XAResource[] 
                    getXAResources(javax.resource.spi.ActivationSpec[]) 
                    throws javax.resource.ResourceException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/OracleConnection.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleConnection 
                    extends java.sql.Connection {
    
                    public 
                    static 
                    final int 
                    DATABASE_OK = 0;
    
                    public 
                    static 
                    final int 
                    DATABASE_CLOSED = -1;
    
                    public 
                    static 
                    final int 
                    DATABASE_NOTOK = -2;
    
                    public 
                    static 
                    final int 
                    DATABASE_TIMEOUT = -3;
    
                    public 
                    static 
                    final int 
                    INVALID_CONNECTION = 4096;
    
                    public 
                    static 
                    final int 
                    PROXY_SESSION = 1;
    
                    public 
                    static 
                    final int 
                    ABANDONED_CONNECTION_CALLBACK = 1;
    
                    public 
                    static 
                    final int 
                    RELEASE_CONNECTION_CALLBACK = 2;
    
                    public 
                    static 
                    final int 
                    ALL_CONNECTION_CALLBACKS = 4;
    
                    public 
                    static 
                    final int 
                    CONNECTION_RELEASE_LOCKED = 256;
    
                    public 
                    static 
                    final int 
                    CONNECTION_RELEASE_LOW = 512;
    
                    public 
                    static 
                    final int 
                    CONNECTION_RELEASE_HIGH = 1024;
    
                    public 
                    static 
                    final int 
                    PROXYTYPE_USER_NAME = 1;
    
                    public 
                    static 
                    final int 
                    PROXYTYPE_DISTINGUISHED_NAME = 2;
    
                    public 
                    static 
                    final int 
                    PROXYTYPE_CERTIFICATE = 3;
    
                    public 
                    static 
                    final String 
                    PROXY_USER_NAME = PROXY_USER_NAME;
    
                    public 
                    static 
                    final String 
                    PROXY_USER_PASSWORD = PROXY_USER_PASSWORD;
    
                    public 
                    static 
                    final String 
                    PROXY_DISTINGUISHED_NAME = PROXY_DISTINGUISHED_NAME;
    
                    public 
                    static 
                    final String 
                    PROXY_CERTIFICATE = PROXY_CERTIFICATE;
    
                    public 
                    static 
                    final String 
                    PROXY_ROLES = PROXY_ROLES;
    
                    public 
                    static 
                    final int 
                    END_TO_END_ACTION_INDEX = 0;
    
                    public 
                    static 
                    final int 
                    END_TO_END_CLIENTID_INDEX = 1;
    
                    public 
                    static 
                    final int 
                    END_TO_END_ECID_INDEX = 2;
    
                    public 
                    static 
                    final int 
                    END_TO_END_MODULE_INDEX = 3;
    
                    public 
                    static 
                    final int 
                    END_TO_END_STATE_INDEX_MAX = 4;
    
                    public 
                    static 
                    final int 
                    CACHE_SIZE_NOT_SET = -1;
    
                    public 
                    abstract void 
                    archive(int, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    openProxySession(int, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getAutoClose() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getDefaultExecuteBatch();
    
                    public 
                    abstract int 
                    getDefaultRowPrefetch();
    
                    public 
                    abstract Object 
                    getDescriptor(String);
    
                    public 
                    abstract String[] 
                    getEndToEndMetrics() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract short 
                    getEndToEndECIDSequenceNumber() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getIncludeSynonyms();
    
                    public 
                    abstract boolean 
                    getRestrictGetTables();
    
                    public 
                    abstract Object 
                    getJavaObject(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getRemarksReporting();
    
                    public 
                    abstract String 
                    getSQLType(Object) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getStmtCacheSize();
    
                    public 
                    abstract short 
                    getStructAttrCsId() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getUserName() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getUsingXAFlag();
    
                    public 
                    abstract boolean 
                    getXAErrorFlag();
    
                    public 
                    abstract int 
                    pingDatabase(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    putDescriptor(String, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerSQLType(String, Class) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerSQLType(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setAutoClose(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setDefaultExecuteBatch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setDefaultRowPrefetch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setEndToEndMetrics(String[], short) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setIncludeSynonyms(boolean);
    
                    public 
                    abstract void 
                    setRemarksReporting(boolean);
    
                    public 
                    abstract void 
                    setRestrictGetTables(boolean);
    
                    public 
                    abstract void 
                    setStmtCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStmtCacheSize(int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStatementCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getStatementCacheSize() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setImplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getImplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setExplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    getExplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    purgeImplicitCache() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    purgeExplicitCache() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.PreparedStatement 
                    getStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.CallableStatement 
                    getCallWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setUsingXAFlag(boolean);
    
                    public 
                    abstract void 
                    setXAErrorFlag(boolean);
    
                    public 
                    abstract void 
                    shutdown(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    startup(String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.PreparedStatement 
                    prepareStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.CallableStatement 
                    prepareCallWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCreateStatementAsRefCursor(boolean);
    
                    public 
                    abstract boolean 
                    getCreateStatementAsRefCursor();
    
                    public 
                    abstract void 
                    setSessionTimeZone(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getSessionTimeZone();
    
                    public 
                    abstract java.util.Properties 
                    getProperties();
    
                    public 
                    abstract java.sql.Connection 
                    _getPC();
    
                    public 
                    abstract boolean 
                    isLogicalConnection();
    
                    public 
                    abstract void 
                    registerTAFCallback(OracleOCIFailover, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract OracleConnection 
                    unwrap();
    
                    public 
                    abstract void 
                    setWrapper(OracleConnection);
    
                    public 
                    abstract internal.OracleConnection 
                    physicalConnectionWithin();
    
                    public 
                    abstract OracleSavepoint 
                    oracleSetSavepoint() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract OracleSavepoint 
                    oracleSetSavepoint(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    oracleRollback(OracleSavepoint) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    oracleReleaseSavepoint(OracleSavepoint) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    close(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    close(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isProxySession();
    
                    public 
                    abstract void 
                    applyConnectionAttributes(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.util.Properties 
                    getConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.util.Properties 
                    getUnMatchedConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerConnectionCacheCallback(pool.OracleConnectionCacheCallback, Object, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setConnectionReleasePriority(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getConnectionReleasePriority() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setPlsqlWarnings(String) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleStatement.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleStatement 
                    extends java.sql.Statement {
    
                    public 
                    static 
                    final int 
                    NEW = 0;
    
                    public 
                    static 
                    final int 
                    IMPLICIT = 1;
    
                    public 
                    static 
                    final int 
                    EXPLICIT = 2;
    
                    public 
                    abstract void 
                    clearDefines() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineColumnType(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineColumnType(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineColumnType(int, int, int, short) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineColumnTypeBytes(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineColumnTypeChars(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineColumnType(int, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getRowPrefetch();
    
                    public 
                    abstract void 
                    setResultSetCache(OracleResultSetCache) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setRowPrefetch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    closeWithKey(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    creationState();
    
                    public 
                    abstract boolean 
                    isNCHAR(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleOCIFailover.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleOCIFailover {
    
                    public 
                    static 
                    final int 
                    FO_SESSION = 1;
    
                    public 
                    static 
                    final int 
                    FO_SELECT = 2;
    
                    public 
                    static 
                    final int 
                    FO_NONE = 3;
    
                    public 
                    static 
                    final int 
                    FO_TYPE_UNKNOWN = 4;
    
                    public 
                    static 
                    final int 
                    FO_BEGIN = 1;
    
                    public 
                    static 
                    final int 
                    FO_END = 2;
    
                    public 
                    static 
                    final int 
                    FO_ABORT = 3;
    
                    public 
                    static 
                    final int 
                    FO_REAUTH = 4;
    
                    public 
                    static 
                    final int 
                    FO_ERROR = 5;
    
                    public 
                    static 
                    final int 
                    FO_RETRY = 6;
    
                    public 
                    static 
                    final int 
                    FO_EVENT_UNKNOWN = 7;
    
                    public 
                    abstract int 
                    callbackFn(java.sql.Connection, Object, int, int);
}

                

oracle/jdbc/OracleSavepoint.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleSavepoint 
                    extends java.sql.Savepoint {
    
                    public 
                    abstract int 
                    getSavepointId() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getSavepointName() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleConnectionWrapper.class

                    package oracle.jdbc;

                    public 
                    synchronized 
                    class OracleConnectionWrapper 
                    implements OracleConnection {
    
                    protected OracleConnection 
                    connection;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleConnectionWrapper();
    
                    public void OracleConnectionWrapper(OracleConnection);
    
                    public OracleConnection 
                    unwrap();
    
                    public internal.OracleConnection 
                    physicalConnectionWithin();
    
                    public void 
                    setWrapper(OracleConnection);
    
                    public java.sql.Statement 
                    createStatement() 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    prepareStatement(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.CallableStatement 
                    prepareCall(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    nativeSQL(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setAutoCommit(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoCommit() 
                    throws java.sql.SQLException;
    
                    public void 
                    commit() 
                    throws java.sql.SQLException;
    
                    public void 
                    rollback() 
                    throws java.sql.SQLException;
    
                    public void 
                    close() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isClosed() 
                    throws java.sql.SQLException;
    
                    public java.sql.DatabaseMetaData 
                    getMetaData() 
                    throws java.sql.SQLException;
    
                    public void 
                    setReadOnly(boolean) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isReadOnly() 
                    throws java.sql.SQLException;
    
                    public void 
                    setCatalog(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    getCatalog() 
                    throws java.sql.SQLException;
    
                    public void 
                    setTransactionIsolation(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getTransactionIsolation() 
                    throws java.sql.SQLException;
    
                    public java.sql.SQLWarning 
                    getWarnings() 
                    throws java.sql.SQLException;
    
                    public void 
                    clearWarnings() 
                    throws java.sql.SQLException;
    
                    public java.sql.Statement 
                    createStatement(int, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    prepareStatement(String, int, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.CallableStatement 
                    prepareCall(String, int, int) 
                    throws java.sql.SQLException;
    
                    public java.util.Map 
                    getTypeMap() 
                    throws java.sql.SQLException;
    
                    public void 
                    setTypeMap(java.util.Map) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    isProxySession();
    
                    public void 
                    openProxySession(int, java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public void 
                    archive(int, int, String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getAutoClose() 
                    throws java.sql.SQLException;
    
                    public java.sql.CallableStatement 
                    getCallWithKey(String) 
                    throws java.sql.SQLException;
    
                    public int 
                    getDefaultExecuteBatch();
    
                    public int 
                    getDefaultRowPrefetch();
    
                    public Object 
                    getDescriptor(String);
    
                    public String[] 
                    getEndToEndMetrics() 
                    throws java.sql.SQLException;
    
                    public short 
                    getEndToEndECIDSequenceNumber() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getIncludeSynonyms();
    
                    public boolean 
                    getRestrictGetTables();
    
                    public boolean 
                    getImplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getExplicitCachingEnabled() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getJavaObject(String) 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getRemarksReporting();
    
                    public String 
                    getSQLType(Object) 
                    throws java.sql.SQLException;
    
                    public int 
                    getStmtCacheSize();
    
                    public int 
                    getStatementCacheSize() 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    getStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public short 
                    getStructAttrCsId() 
                    throws java.sql.SQLException;
    
                    public String 
                    getUserName() 
                    throws java.sql.SQLException;
    
                    public boolean 
                    getUsingXAFlag();
    
                    public boolean 
                    getXAErrorFlag();
    
                    public OracleSavepoint 
                    oracleSetSavepoint() 
                    throws java.sql.SQLException;
    
                    public OracleSavepoint 
                    oracleSetSavepoint(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    oracleRollback(OracleSavepoint) 
                    throws java.sql.SQLException;
    
                    public void 
                    oracleReleaseSavepoint(OracleSavepoint) 
                    throws java.sql.SQLException;
    
                    public int 
                    pingDatabase(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    purgeExplicitCache() 
                    throws java.sql.SQLException;
    
                    public void 
                    purgeImplicitCache() 
                    throws java.sql.SQLException;
    
                    public void 
                    putDescriptor(String, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    registerSQLType(String, Class) 
                    throws java.sql.SQLException;
    
                    public void 
                    registerSQLType(String, String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setAutoClose(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDefaultExecuteBatch(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDefaultRowPrefetch(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setEndToEndMetrics(String[], short) 
                    throws java.sql.SQLException;
    
                    public void 
                    setExplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setImplicitCachingEnabled(boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setIncludeSynonyms(boolean);
    
                    public void 
                    setRemarksReporting(boolean);
    
                    public void 
                    setRestrictGetTables(boolean);
    
                    public void 
                    setStmtCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStatementCacheSize(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setStmtCacheSize(int, boolean) 
                    throws java.sql.SQLException;
    
                    public void 
                    setUsingXAFlag(boolean);
    
                    public void 
                    setXAErrorFlag(boolean);
    
                    public void 
                    shutdown(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    startup(String, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    prepareStatementWithKey(String) 
                    throws java.sql.SQLException;
    
                    public java.sql.CallableStatement 
                    prepareCallWithKey(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setCreateStatementAsRefCursor(boolean);
    
                    public boolean 
                    getCreateStatementAsRefCursor();
    
                    public void 
                    setSessionTimeZone(String) 
                    throws java.sql.SQLException;
    
                    public String 
                    getSessionTimeZone();
    
                    public java.sql.Connection 
                    _getPC();
    
                    public boolean 
                    isLogicalConnection();
    
                    public void 
                    registerTAFCallback(OracleOCIFailover, Object) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getProperties();
    
                    public void 
                    close(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public void 
                    close(int) 
                    throws java.sql.SQLException;
    
                    public void 
                    applyConnectionAttributes(java.util.Properties) 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public java.util.Properties 
                    getUnMatchedConnectionAttributes() 
                    throws java.sql.SQLException;
    
                    public void 
                    registerConnectionCacheCallback(pool.OracleConnectionCacheCallback, Object, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setConnectionReleasePriority(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getConnectionReleasePriority() 
                    throws java.sql.SQLException;
    
                    public void 
                    setPlsqlWarnings(String) 
                    throws java.sql.SQLException;
    
                    public void 
                    setHoldability(int) 
                    throws java.sql.SQLException;
    
                    public int 
                    getHoldability() 
                    throws java.sql.SQLException;
    
                    public java.sql.Statement 
                    createStatement(int, int, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.PreparedStatement 
                    prepareStatement(String, int, int, int) 
                    throws java.sql.SQLException;
    
                    public java.sql.CallableStatement 
                    prepareCall(String, int, int, int) 
                    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;
    
                    public 
                    synchronized void 
                    rollback(java.sql.Savepoint) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized void 
                    releaseSavepoint(java.sql.Savepoint) 
                    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;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/OracleResultSetCache.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleResultSetCache {
    
                    public 
                    abstract void 
                    put(int, int, Object) 
                    throws java.io.IOException;
    
                    public 
                    abstract Object 
                    get(int, int) 
                    throws java.io.IOException;
    
                    public 
                    abstract void 
                    remove(int) 
                    throws java.io.IOException;
    
                    public 
                    abstract void 
                    remove(int, int) 
                    throws java.io.IOException;
    
                    public 
                    abstract void 
                    clear() 
                    throws java.io.IOException;
    
                    public 
                    abstract void 
                    close() 
                    throws java.io.IOException;
}

                

oracle/jdbc/OracleResultSet.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleResultSet 
                    extends java.sql.ResultSet {
    
                    public 
                    static 
                    final int 
                    HOLD_CURSORS_OVER_COMMIT = 1;
    
                    public 
                    static 
                    final int 
                    CLOSE_CURSORS_AT_COMMIT = 2;
    
                    public 
                    abstract oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ARRAY 
                    getARRAY(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    getBfile(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    getBfile(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    getBFILE(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BLOB 
                    getBLOB(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CHAR 
                    getCHAR(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CLOB 
                    getCLOB(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.OPAQUE 
                    getOPAQUE(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.INTERVALYM 
                    getINTERVALYM(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.INTERVALDS 
                    getINTERVALDS(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMP 
                    getTIMESTAMP(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSet 
                    getCursor(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CustomDatum 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ORAData 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CustomDatum 
                    getCustomDatum(String, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ORAData 
                    getORAData(String, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.DATE 
                    getDATE(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.NUMBER 
                    getNUMBER(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.Datum 
                    getOracleObject(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.RAW 
                    getRAW(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.REF 
                    getREF(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ROWID 
                    getROWID(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.STRUCT 
                    getSTRUCT(String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateARRAY(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateARRAY(String, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBfile(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBFILE(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBfile(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBFILE(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBLOB(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateBLOB(String, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCHAR(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCHAR(String, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCLOB(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCLOB(String, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCustomDatum(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateORAData(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateCustomDatum(String, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateORAData(String, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateDATE(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateDATE(String, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateINTERVALYM(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateINTERVALDS(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTIMESTAMP(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTIMESTAMPTZ(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateTIMESTAMPLTZ(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateNUMBER(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateNUMBER(String, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateOracleObject(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateOracleObject(String, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateRAW(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateRAW(String, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateREF(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateREF(String, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateROWID(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateROWID(String, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateSTRUCT(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    updateSTRUCT(String, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleResultSetMetaData.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleResultSetMetaData 
                    extends java.sql.ResultSetMetaData {
    
                    public 
                    abstract boolean 
                    isNCHAR(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OraclePreparedStatement.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OraclePreparedStatement 
                    extends java.sql.PreparedStatement, OracleStatement {
    
                    public 
                    static 
                    final short 
                    FORM_NCHAR = 2;
    
                    public 
                    static 
                    final short 
                    FORM_CHAR = 1;
    
                    public 
                    abstract void 
                    defineParameterTypeBytes(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineParameterTypeChars(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    defineParameterType(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getExecuteBatch();
    
                    public 
                    abstract int 
                    sendBatch() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setARRAY(int, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBfile(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBFILE(int, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBLOB(int, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCHAR(int, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCLOB(int, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCursor(int, java.sql.ResultSet) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCustomDatum(int, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setORAData(int, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setDATE(int, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setExecuteBatch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setFixedCHAR(int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setNUMBER(int, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryFloat(int, float) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryFloat(int, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryDouble(int, double) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryDouble(int, oracle.sql.BINARY_DOUBLE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setOPAQUE(int, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setOracleObject(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStructDescriptor(int, oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setRAW(int, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setREF(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setRefType(int, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setROWID(int, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setSTRUCT(int, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTIMESTAMP(int, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTIMESTAMPTZ(int, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTIMESTAMPLTZ(int, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setINTERVALYM(int, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setINTERVALDS(int, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setNullAtName(String, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setNullAtName(String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBooleanAtName(String, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setByteAtName(String, byte) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setShortAtName(String, short) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setIntAtName(String, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setLongAtName(String, long) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setFloatAtName(String, float) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setDoubleAtName(String, double) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryFloatAtName(String, float) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryFloatAtName(String, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryDoubleAtName(String, double) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryDoubleAtName(String, oracle.sql.BINARY_DOUBLE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBigDecimalAtName(String, java.math.BigDecimal) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStringAtName(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStringForClob(int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStringForClobAtName(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setFixedCHARAtName(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCursorAtName(String, java.sql.ResultSet) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setROWIDAtName(String, oracle.sql.ROWID) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setArrayAtName(String, java.sql.Array) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setARRAYAtName(String, oracle.sql.ARRAY) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setOPAQUEAtName(String, oracle.sql.OPAQUE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStructDescriptorAtName(String, oracle.sql.StructDescriptor) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setSTRUCTAtName(String, oracle.sql.STRUCT) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setRAWAtName(String, oracle.sql.RAW) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCHARAtName(String, oracle.sql.CHAR) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setDATEAtName(String, oracle.sql.DATE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setNUMBERAtName(String, oracle.sql.NUMBER) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBLOBAtName(String, oracle.sql.BLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBlobAtName(String, java.sql.Blob) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCLOBAtName(String, oracle.sql.CLOB) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setClobAtName(String, java.sql.Clob) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBFILEAtName(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBfileAtName(String, oracle.sql.BFILE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBytesAtName(String, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBytesForBlob(int, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBytesForBlobAtName(String, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setDateAtName(String, java.sql.Date) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTimeAtName(String, java.sql.Time) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTimestampAtName(String, java.sql.Timestamp) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setINTERVALYMAtName(String, oracle.sql.INTERVALYM) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setINTERVALDSAtName(String, oracle.sql.INTERVALDS) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTIMESTAMPAtName(String, oracle.sql.TIMESTAMP) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTIMESTAMPTZAtName(String, oracle.sql.TIMESTAMPTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setTIMESTAMPLTZAtName(String, oracle.sql.TIMESTAMPLTZ) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setAsciiStreamAtName(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryStreamAtName(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setUnicodeStreamAtName(String, java.io.InputStream, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCustomDatumAtName(String, oracle.sql.CustomDatum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setORADataAtName(String, oracle.sql.ORAData) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setObjectAtName(String, Object, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setObjectAtName(String, Object, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setRefTypeAtName(String, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setRefAtName(String, java.sql.Ref) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setREFAtName(String, oracle.sql.REF) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setObjectAtName(String, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setOracleObjectAtName(String, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setURLAtName(String, java.net.URL) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setCheckBindTypes(boolean);
    
                    public 
                    abstract void 
                    setPlsqlIndexTable(int, Object, int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setFormOfUse(int, short);
    
                    public 
                    abstract void 
                    setDisableStmtCaching(boolean);
    
                    public 
                    abstract OracleParameterMetaData 
                    OracleGetParameterMetaData() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerReturnParameter(int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerReturnParameter(int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerReturnParameter(int, int, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSet 
                    getReturnResultSet() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleParameterMetaData.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleParameterMetaData 
                    extends java.sql.ParameterMetaData {
    
                    public 
                    static 
                    final int 
                    parameterNoNulls = 0;
    
                    public 
                    static 
                    final int 
                    parameterNullable = 1;
    
                    public 
                    static 
                    final int 
                    parameterNullableUnknown = 2;
    
                    public 
                    static 
                    final int 
                    parameterModeUnknown = 0;
    
                    public 
                    static 
                    final int 
                    parameterModeIn = 1;
    
                    public 
                    static 
                    final int 
                    parameterModeInOut = 2;
    
                    public 
                    static 
                    final int 
                    parameterModeOut = 4;
    
                    public 
                    abstract int 
                    getParameterCount() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    isNullable(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isSigned(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getPrecision(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getScale(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getParameterType(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getParameterTypeName(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getParameterClassName(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getParameterMode(int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleDatabaseMetaData.class

                    package oracle.jdbc;

                    public 
                    synchronized 
                    class OracleDatabaseMetaData 
                    implements java.sql.DatabaseMetaData {
    
                    private 
                    static String 
                    DRIVER_NAME;
    
                    private 
                    static String 
                    DRIVER_VERSION;
    
                    private 
                    static int 
                    DRIVER_MAJOR_VERSION;
    
                    private 
                    static int 
                    DRIVER_MINOR_VERSION;
    
                    private 
                    static String 
                    LOB_MAXSIZE;
    
                    private 
                    static long 
                    LOB_MAXLENGTH_32BIT;
    
                    protected internal.OracleConnection 
                    connection;
    int 
                    procedureResultUnknown;
    int 
                    procedureNoResult;
    int 
                    procedureReturnsResult;
    int 
                    procedureColumnUnknown;
    int 
                    procedureColumnIn;
    int 
                    procedureColumnInOut;
    int 
                    procedureColumnOut;
    int 
                    procedureColumnReturn;
    int 
                    procedureColumnResult;
    int 
                    procedureNoNulls;
    int 
                    procedureNullable;
    int 
                    procedureNullableUnknown;
    int 
                    columnNoNulls;
    int 
                    columnNullable;
    int 
                    columnNullableUnknown;
    
                    static 
                    final int 
                    bestRowTemporary = 0;
    
                    static 
                    final int 
                    bestRowTransaction = 1;
    
                    static 
                    final int 
                    bestRowSession = 2;
    
                    static 
                    final int 
                    bestRowUnknown = 0;
    
                    static 
                    final int 
                    bestRowNotPseudo = 1;
    
                    static 
                    final int 
                    bestRowPseudo = 2;
    int 
                    versionColumnUnknown;
    int 
                    versionColumnNotPseudo;
    int 
                    versionColumnPseudo;
    int 
                    importedKeyCascade;
    int 
                    importedKeyRestrict;
    int 
                    importedKeySetNull;
    int 
                    typeNoNulls;
    int 
                    typeNullable;
    int 
                    typeNullableUnknown;
    int 
                    typePredNone;
    int 
                    typePredChar;
    int 
                    typePredBasic;
    int 
                    typeSearchable;
    short 
                    tableIndexStatistic;
    short 
                    tableIndexClustered;
    short 
                    tableIndexHashed;
    short 
                    tableIndexOther;
    short 
                    attributeNoNulls;
    short 
                    attributeNullable;
    short 
                    attributeNullableUnknown;
    int 
                    sqlStateXOpen;
    int 
                    sqlStateSQL99;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleDatabaseMetaData(OracleConnection);
    
                    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 
                    synchronized java.sql.ResultSet 
                    getProcedures(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getProcedureColumns(String, String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized 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 
                    synchronized java.sql.ResultSet 
                    getColumnPrivileges(String, String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getTablePrivileges(String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getBestRowIdentifier(String, String, String, int, boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized java.sql.ResultSet 
                    getVersionColumns(String, String, String) 
                    throws java.sql.SQLException;
    
                    public java.sql.ResultSet 
                    getPrimaryKeys(String, String, String) 
                    throws java.sql.SQLException;
    java.sql.ResultSet 
                    keys_query(String, String, String, String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    synchronized 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 
                    synchronized java.sql.ResultSet 
                    getIndexInfo(String, String, String, boolean, boolean) 
                    throws java.sql.SQLException;
    java.sql.SQLException 
                    fail();
    
                    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;
    
                    public 
                    static String 
                    getDriverNameInfo() 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    getDriverVersionInfo() 
                    throws java.sql.SQLException;
    
                    public 
                    static int 
                    getDriverMajorVersionInfo();
    
                    public 
                    static int 
                    getDriverMinorVersionInfo();
    
                    public 
                    static void 
                    setGetLobPrecision(boolean) 
                    throws java.sql.SQLException;
    
                    public 
                    static boolean 
                    getGetLobPrecision() 
                    throws java.sql.SQLException;
    
                    public 
                    static String 
                    getLobPrecision() 
                    throws java.sql.SQLException;
    
                    public long 
                    getLobMaxLength() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/OracleCallableStatement.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface OracleCallableStatement 
                    extends java.sql.CallableStatement, OraclePreparedStatement {
    
                    public 
                    abstract oracle.sql.ARRAY 
                    getARRAY(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    getAsciiStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BFILE 
                    getBFILE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    getBinaryStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.BLOB 
                    getBLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CHAR 
                    getCHAR(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.Reader 
                    getCharacterStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.CLOB 
                    getCLOB(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.sql.ResultSet 
                    getCursor(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getCustomDatum(int, oracle.sql.CustomDatumFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getORAData(int, oracle.sql.ORADataFactory) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getAnyDataEmbeddedObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.DATE 
                    getDATE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.NUMBER 
                    getNUMBER(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.OPAQUE 
                    getOPAQUE(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.Datum 
                    getOracleObject(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.RAW 
                    getRAW(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.REF 
                    getREF(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.ROWID 
                    getROWID(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.STRUCT 
                    getSTRUCT(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.INTERVALYM 
                    getINTERVALYM(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.INTERVALDS 
                    getINTERVALDS(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMP 
                    getTIMESTAMP(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMPTZ 
                    getTIMESTAMPTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.TIMESTAMPLTZ 
                    getTIMESTAMPLTZ(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract java.io.InputStream 
                    getUnicodeStream(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerOutParameter(int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerOutParameterBytes(int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerOutParameterChars(int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    sendBatch() 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setExecuteBatch(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getPlsqlIndexTable(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract Object 
                    getPlsqlIndexTable(int, Class) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract oracle.sql.Datum[] 
                    getOraclePlsqlIndexTable(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerIndexTableOutParameter(int, int, int, int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryFloat(String, oracle.sql.BINARY_FLOAT) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBinaryDouble(String, oracle.sql.BINARY_DOUBLE) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setStringForClob(String, String) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    setBytesForBlob(String, byte[]) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract void 
                    registerOutParameter(String, int, int, int) 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleTypes.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    synchronized 
                    class OracleTypes {
    
                    public 
                    static 
                    final int 
                    BIT = -7;
    
                    public 
                    static 
                    final int 
                    TINYINT = -6;
    
                    public 
                    static 
                    final int 
                    SMALLINT = 5;
    
                    public 
                    static 
                    final int 
                    INTEGER = 4;
    
                    public 
                    static 
                    final int 
                    BIGINT = -5;
    
                    public 
                    static 
                    final int 
                    FLOAT = 6;
    
                    public 
                    static 
                    final int 
                    REAL = 7;
    
                    public 
                    static 
                    final int 
                    DOUBLE = 8;
    
                    public 
                    static 
                    final int 
                    NUMERIC = 2;
    
                    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 
                    TIMESTAMPNS = -100;
    
                    public 
                    static 
                    final int 
                    TIMESTAMPTZ = -101;
    
                    public 
                    static 
                    final int 
                    TIMESTAMPLTZ = -102;
    
                    public 
                    static 
                    final int 
                    INTERVALYM = -103;
    
                    public 
                    static 
                    final int 
                    INTERVALDS = -104;
    
                    public 
                    static 
                    final int 
                    BINARY = -2;
    
                    public 
                    static 
                    final int 
                    VARBINARY = -3;
    
                    public 
                    static 
                    final int 
                    LONGVARBINARY = -4;
    
                    public 
                    static 
                    final int 
                    ROWID = -8;
    
                    public 
                    static 
                    final int 
                    CURSOR = -10;
    
                    public 
                    static 
                    final int 
                    BLOB = 2004;
    
                    public 
                    static 
                    final int 
                    CLOB = 2005;
    
                    public 
                    static 
                    final int 
                    BFILE = -13;
    
                    public 
                    static 
                    final int 
                    STRUCT = 2002;
    
                    public 
                    static 
                    final int 
                    ARRAY = 2003;
    
                    public 
                    static 
                    final int 
                    REF = 2006;
    
                    public 
                    static 
                    final int 
                    OPAQUE = 2007;
    
                    public 
                    static 
                    final int 
                    JAVA_STRUCT = 2008;
    
                    public 
                    static 
                    final int 
                    JAVA_OBJECT = 2000;
    
                    public 
                    static 
                    final int 
                    PLSQL_INDEX_TABLE = -14;
    
                    public 
                    static 
                    final int 
                    BINARY_FLOAT = 100;
    
                    public 
                    static 
                    final int 
                    BINARY_DOUBLE = 101;
    
                    public 
                    static 
                    final int 
                    NULL = 0;
    
                    public 
                    static 
                    final int 
                    NUMBER = 2;
    
                    public 
                    static 
                    final int 
                    RAW = -2;
    
                    public 
                    static 
                    final int 
                    OTHER = 1111;
    
                    public 
                    static 
                    final int 
                    FIXED_CHAR = 999;
    
                    public 
                    static 
                    final int 
                    DATALINK = 70;
    
                    public 
                    static 
                    final int 
                    BOOLEAN = 16;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:32_PST_2006;
    
                    public void OracleTypes();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/Const.class

                    package oracle.jdbc;

                    public 
                    synchronized 
                    class Const {
    
                    public 
                    static 
                    final short 
                    NCHAR = 2;
    
                    public 
                    static 
                    final short 
                    CHAR = 1;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:31_PST_2006;
    
                    public void Const();
    
                    static void 
                    <clinit>();
}

                

oracle/jdbc/StructMetaData.class

                    package oracle.jdbc;

                    public 
                    abstract 
                    interface StructMetaData 
                    extends OracleResultSetMetaData {
    
                    public 
                    abstract String 
                    getAttributeJavaName(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract String 
                    getOracleColumnClassName(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract boolean 
                    isInherited(int) 
                    throws java.sql.SQLException;
    
                    public 
                    abstract int 
                    getLocalColumnCount() 
                    throws java.sql.SQLException;
}

                

oracle/jdbc/OracleDriver.class

                    package oracle.jdbc;

                    public 
                    synchronized 
                    class OracleDriver 
                    extends driver.OracleDriver {
    
                    public void OracleDriver();
    
                    public 
                    static 
                    final boolean 
                    isDMS();
    
                    public 
                    static 
                    final boolean 
                    isInServer();
    
                    public 
                    static 
                    final boolean 
                    isJDK14();
    
                    public 
                    static 
                    final boolean 
                    isDebug();
    
                    public 
                    static 
                    final boolean 
                    isPrivateDebug();
}

                

oracle/jpub/runtime/MutableArray.class

                    package oracle.jpub.runtime;

                    public 
                    synchronized 
                    class MutableArray {
    int 
                    length;
    Object[] 
                    elements;
    oracle.sql.Datum[] 
                    datums;
    oracle.sql.ARRAY 
                    pickled;
    boolean 
                    pickledCorrect;
    int 
                    sqlType;
    oracle.sql.ORADataFactory 
                    factory;
    oracle.sql.CustomDatumFactory 
                    old_factory;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void MutableArray(int, oracle.sql.ARRAY, oracle.sql.ORADataFactory);
    
                    public void MutableArray(int, oracle.sql.Datum[], oracle.sql.ORADataFactory);
    
                    public void MutableArray(int, Object[], oracle.sql.ORADataFactory);
    
                    public void MutableArray(int, double[], oracle.sql.ORADataFactory);
    
                    public void MutableArray(int, int[], oracle.sql.ORADataFactory);
    
                    public void MutableArray(int, float[], oracle.sql.ORADataFactory);
    
                    public void MutableArray(int, short[], oracle.sql.ORADataFactory);
    
                    public void MutableArray(oracle.sql.ARRAY, int, oracle.sql.CustomDatumFactory);
    
                    public void MutableArray(oracle.sql.Datum[], int, oracle.sql.CustomDatumFactory);
    
                    public void MutableArray(Object[], int, oracle.sql.CustomDatumFactory);
    
                    public void MutableArray(double[], int, oracle.sql.CustomDatumFactory);
    
                    public void MutableArray(int[], int, oracle.sql.CustomDatumFactory);
    
                    public void MutableArray(float[], int, oracle.sql.CustomDatumFactory);
    
                    public void MutableArray(short[], int, oracle.sql.CustomDatumFactory);
    
                    public oracle.sql.Datum 
                    toDatum(java.sql.Connection, String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(oracle.jdbc.OracleConnection, String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(oracle.jdbc.driver.OracleConnection, String) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getOracleArray() 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getOracleArray(long, int) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getOracleArray(long, Object[]) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getOracleArray(Object[]) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getObjectArray() 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getObjectArray(long, int) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getObjectArray(long, Object[]) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getObjectArray(Object[]) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getArray() 
                    throws java.sql.SQLException;
    
                    public Object 
                    getArray(long, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOracleArray(Object[]);
    
                    public void 
                    setOracleArray(Object[], long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObjectArray(Object[]);
    
                    public void 
                    setObjectArray(Object[], long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setArray(double[]);
    
                    public void 
                    setArray(double[], long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setArray(int[]);
    
                    public void 
                    setArray(int[], long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setArray(float[]);
    
                    public void 
                    setArray(float[], long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setArray(short[]);
    
                    public void 
                    setArray(short[], long) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getObjectElement(long) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getOracleElement(long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setObjectElement(Object, long) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOracleElement(Object, long) 
                    throws java.sql.SQLException;
    
                    public String 
                    getBaseTypeName() 
                    throws java.sql.SQLException;
    
                    public int 
                    getBaseType() 
                    throws java.sql.SQLException;
    
                    public oracle.sql.ArrayDescriptor 
                    getDescriptor() 
                    throws java.sql.SQLException;
    oracle.sql.Datum[] 
                    getDatumArray(java.sql.Connection) 
                    throws java.sql.SQLException;
    void 
                    setDatumArray(oracle.sql.Datum[]);
    void 
                    setDatumArray(oracle.sql.Datum[], long) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getDatumElement(long, java.sql.Connection) 
                    throws java.sql.SQLException;
    void 
                    setDatumElement(oracle.sql.Datum, long) 
                    throws java.sql.SQLException;
    void 
                    resetElement(long) 
                    throws java.sql.SQLException;
    void 
                    setNullArray();
    void 
                    setArrayGeneric(int);
    
                    public int 
                    length() 
                    throws java.sql.SQLException;
    
                    public int 
                    sliceLength(long, int) 
                    throws java.sql.SQLException;
    void 
                    resetOracleElement(long) 
                    throws java.sql.SQLException;
    Object[] 
                    getLazyArray() 
                    throws java.sql.SQLException;
    oracle.sql.Datum[] 
                    getLazyOracleArray() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

oracle/jpub/runtime/Util.class

                    package oracle.jpub.runtime;

                    public 
                    synchronized 
                    class Util {
    
                    static short 
                    lastCsId;
    
                    static oracle.sql.CharacterSet 
                    lastCS;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void Util();
    
                    public 
                    static Object 
                    convertToObject(oracle.sql.Datum, int, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static Object 
                    _convertToObject(oracle.sql.Datum, int, Object) 
                    throws java.sql.SQLException;
    
                    public 
                    static oracle.sql.Datum 
                    convertToOracle(Object, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    private 
                    static oracle.sql.Datum 
                    _convertToOracle(Object, java.sql.Connection) 
                    throws java.sql.SQLException;
    
                    static boolean 
                    isMutable(oracle.sql.Datum, oracle.sql.ORADataFactory);
    
                    static boolean 
                    isMutable(oracle.sql.Datum, oracle.sql.CustomDatumFactory);
    
                    static void 
                    <clinit>();
}

                

oracle/jpub/runtime/MutableStruct.class

                    package oracle.jpub.runtime;

                    public 
                    synchronized 
                    class MutableStruct {
    int 
                    length;
    oracle.sql.STRUCT 
                    pickled;
    oracle.sql.Datum[] 
                    datums;
    Object[] 
                    attributes;
    oracle.sql.CustomDatumFactory[] 
                    old_factories;
    oracle.sql.ORADataFactory[] 
                    factories;
    int[] 
                    sqlTypes;
    boolean 
                    pickledCorrect;
    
                    private 
                    static 
                    final String 
                    _Copyright_2004_Oracle_All_Rights_Reserved_;
    
                    public 
                    static 
                    final boolean 
                    TRACE = 0;
    
                    public 
                    static 
                    final boolean 
                    PRIVATE_TRACE = 0;
    
                    public 
                    static 
                    final String 
                    BUILD_DATE = Wed_Jan_25_01:27:40_PST_2006;
    
                    public void MutableStruct(oracle.sql.STRUCT, int[], oracle.sql.ORADataFactory[]);
    
                    public void MutableStruct(Object[], int[], oracle.sql.ORADataFactory[]);
    
                    public void MutableStruct(oracle.sql.STRUCT, int[], oracle.sql.CustomDatumFactory[]);
    
                    public void MutableStruct(Object[], int[], oracle.sql.CustomDatumFactory[]);
    
                    public oracle.sql.Datum 
                    toDatum(java.sql.Connection, String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(oracle.jdbc.OracleConnection, String) 
                    throws java.sql.SQLException;
    
                    public oracle.sql.Datum 
                    toDatum(oracle.jdbc.driver.OracleConnection, String) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getAttribute(int) 
                    throws java.sql.SQLException;
    
                    public Object 
                    getOracleAttribute(int) 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getAttributes() 
                    throws java.sql.SQLException;
    
                    public Object[] 
                    getOracleAttributes() 
                    throws java.sql.SQLException;
    
                    public void 
                    setAttribute(int, Object) 
                    throws java.sql.SQLException;
    
                    public void 
                    setDoubleAttribute(int, double) 
                    throws java.sql.SQLException;
    
                    public void 
                    setFloatAttribute(int, float) 
                    throws java.sql.SQLException;
    
                    public void 
                    setIntAttribute(int, int) 
                    throws java.sql.SQLException;
    
                    public void 
                    setOracleAttribute(int, Object) 
                    throws java.sql.SQLException;
    oracle.sql.Datum 
                    getDatumAttribute(int, java.sql.Connection) 
                    throws java.sql.SQLException;
    void 
                    setDatumAttribute(int, oracle.sql.Datum) 
                    throws java.sql.SQLException;
    oracle.sql.Datum[] 
                    getDatumAttributes(java.sql.Connection) 
                    throws java.sql.SQLException;
    void 
                    resetAttribute(int) 
                    throws java.sql.SQLException;
    void 
                    resetDatum(int) 
                    throws java.sql.SQLException;
    Object[] 
                    getLazyAttributes();
    oracle.sql.Datum[] 
                    getLazyDatums() 
                    throws java.sql.SQLException;
    
                    static void 
                    <clinit>();
}

                

WebContent/WEB-INF/web.xml

ReadWriteDB ReadWriteDB ReadWriteDB readwrite.ReadWriteDB ReadWriteDB /ReadWriteDB

.classpath

.project

ReadWriteORADB org.eclipse.wst.jsdt.core.javascriptValidator org.eclipse.jdt.core.javabuilder org.eclipse.wst.common.project.facet.core.builder org.eclipse.wst.validation.validationbuilder org.eclipse.jem.workbench.JavaEMFNature org.eclipse.wst.common.modulecore.ModuleCoreNature org.eclipse.wst.common.project.facet.core.nature org.eclipse.jdt.core.javanature org.eclipse.wst.jsdt.core.jsNature