Java Servlet
.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)+" |
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>(); }