亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? oracleconnectionwrapper.java

?? Java示例100
?? JAVA
字號:
package oracle.jdbc;import java.sql.*;/** * A simple implementation of a connection wrapper which may be nested to any depth. */public class  OracleConnectionWrapper implements oracle.jdbc.OracleConnection{  protected oracle.jdbc.OracleConnection connection;  /**   * Construct an instace which wraps the arguement   */  public OracleConnectionWrapper( oracle.jdbc.OracleConnection toBeWrapped )  {    super();    connection = toBeWrapped;    toBeWrapped.setWrapper( (oracle.jdbc.OracleConnection)this );  }  /**   * Unwrap one level.   * Returns the connection within this wrapper.   */  public oracle.jdbc.OracleConnection unwrap(){return connection;}  /**   * Set a connection wrapper as the wrapper of this connection.   * Recursively sets the wrapper to the lowest level.   * Thus the physical connection will always know its outermost wrapper   * The recursion is terminated by the method in oracle.jdbc.driver.OracleConnction   * which stores its argument.   * @ See the methods getJavaSqlConnection and getOracleConnection   * @ in oracle.jdbc.driver.OracleConnection   */  public void setWrapper( oracle.jdbc.OracleConnection wrapper )   {     connection.setWrapper(wrapper);     }  /* override methods in Object to forward them */       //  none at present  /* implement java.sql.Connection */  public Statement createStatement() throws SQLException   { return connection.createStatement();}  public PreparedStatement prepareStatement(String sql)	    throws SQLException{ return connection.prepareStatement(sql) ;}  public CallableStatement prepareCall(String sql) throws SQLException      { return connection.prepareCall(sql) ;}  public String nativeSQL(String sql) throws SQLException      { return connection.nativeSQL(sql) ;}  public void setAutoCommit(boolean autoCommit) throws SQLException      { connection. setAutoCommit(autoCommit) ;}  public boolean getAutoCommit() throws SQLException     { return connection.getAutoCommit()  ;}  public void commit() throws SQLException      { connection.commit() ;}  public void rollback() throws SQLException      { connection.rollback() ;}  public void close() throws SQLException      {connection.close();}  public boolean isClosed() throws SQLException    { return connection.isClosed()  ;}  public DatabaseMetaData getMetaData() throws SQLException     { return connection.getMetaData() ;}  public void setReadOnly(boolean readOnly) throws SQLException      { connection.setReadOnly(readOnly) ;}  public boolean isReadOnly() throws SQLException      { return connection.isReadOnly();}  public void setCatalog(String catalog) throws SQLException      { connection.setCatalog(catalog) ;}  public String getCatalog() throws SQLException      { return connection.getCatalog() ;}  public void setTransactionIsolation(int level) throws SQLException      { connection.setTransactionIsolation(level) ;}  public int getTransactionIsolation() throws SQLException    { return connection.getTransactionIsolation();}  public SQLWarning getWarnings() throws SQLException    { return connection.getWarnings() ;}  public void clearWarnings() throws SQLException    { connection.clearWarnings() ;}  public Statement createStatement(int resultSetType, int resultSetConcurrency)       throws SQLException{ return connection.createStatement                                   (resultSetType, resultSetConcurrency) ;}  public PreparedStatement prepareStatement(String sql, int resultSetType, 					int resultSetConcurrency)       throws SQLException{ return connection.prepareStatement                              (sql, resultSetType, resultSetConcurrency) ;}  public CallableStatement prepareCall(String sql, int resultSetType, 				 int resultSetConcurrency) throws SQLException       { return connection.prepareCall(sql, resultSetType, resultSetConcurrency) ;}  public java.util.Map getTypeMap() throws SQLException      { return connection.getTypeMap() ;}  public void setTypeMap(java.util.Map map) throws SQLException      { connection.setTypeMap(map) ;}  /* implement oracle.jdbc.OracleConnection methods */  public void archive(int mode, int aseq, String acstext) throws SQLException    { connection.archive(mode, aseq, acstext) ;}  public boolean getAutoClose() throws SQLException     { return connection.getAutoClose()  ;}  public CallableStatement getCallWithKey(String key)throws SQLException  { return connection.getCallWithKey(key);}  public int getDefaultExecuteBatch()      { return connection.getDefaultExecuteBatch() ;}  public int getDefaultRowPrefetch()    { return connection.getDefaultRowPrefetch() ;}  public Object getDescriptor(String sql_name)     { return connection.getDescriptor(sql_name) ;}  public boolean getIncludeSynonyms()     { return connection.getIncludeSynonyms()  ;}  public boolean getRestrictGetTables()     { return connection.getRestrictGetTables()  ;}  public boolean getImplicitCachingEnabled() throws SQLException  { return connection.getImplicitCachingEnabled();}  public boolean getExplicitCachingEnabled() throws SQLException  { return connection.getExplicitCachingEnabled();}  public Object getJavaObject(String sql_name) throws SQLException     { return connection.getJavaObject(sql_name) ;}  public boolean getRemarksReporting()    { return connection.getRemarksReporting()  ;}  public String getSQLType(Object obj) throws SQLException    { return connection.getSQLType(obj) ;}  public int getStmtCacheSize()    { return connection.getStmtCacheSize() ;}  public int getStatementCacheSize() throws SQLException  { return connection.getStatementCacheSize();}  public PreparedStatement getStatementWithKey(String key)throws SQLException  { return connection.getStatementWithKey(key);}  public short getStructAttrCsId() throws SQLException     { return connection.getStructAttrCsId() ;}  public String getUserName() throws SQLException     { return connection.getUserName() ;}  public boolean getUsingXAFlag()     { return connection. getUsingXAFlag()  ;}  public boolean getXAErrorFlag()     { return connection.getXAErrorFlag()  ;}  public OracleSavepoint oracleSetSavepoint()throws SQLException  { return connection.oracleSetSavepoint(); }  public OracleSavepoint oracleSetSavepoint(String name) throws SQLException  { return connection.oracleSetSavepoint(name);}  public void oracleRollback(OracleSavepoint savepoint) throws SQLException  { connection.oracleRollback(savepoint);}  public void oracleReleaseSavepoint(OracleSavepoint savepoint)     throws SQLException  { connection.oracleReleaseSavepoint(savepoint);}  public int pingDatabase (int timeOut) throws SQLException     { return connection.pingDatabase (timeOut) ;}     public void purgeExplicitCache() throws SQLException  { connection.purgeExplicitCache(); }       public void purgeImplicitCache() throws SQLException  { connection.purgeImplicitCache(); }       public void putDescriptor(String sql_name,                 Object desc) throws SQLException    { connection.putDescriptor( sql_name, desc) ;}  public void registerSQLType(String sql_name,                 Class java_class) throws SQLException    { connection.registerSQLType(sql_name, java_class) ;}  public void registerSQLType(String sql_name,                 String java_class_name) throws SQLException     { connection.registerSQLType(sql_name, java_class_name) ;}  public void setAutoClose(boolean autoClose) throws SQLException     { connection.setAutoClose(autoClose) ;}  public void setDefaultExecuteBatch(int batch) throws SQLException     { connection.setDefaultExecuteBatch(batch) ;}  public void setDefaultRowPrefetch(int value) throws SQLException     { connection.setDefaultRowPrefetch(value) ;}  public void setExplicitCachingEnabled(boolean cache) throws SQLException    { connection.setExplicitCachingEnabled(cache); }  public void setImplicitCachingEnabled(boolean cache) throws SQLException    { connection.setImplicitCachingEnabled(cache); } public void setIncludeSynonyms(boolean synonyms)      { connection.setIncludeSynonyms(synonyms) ;}  public void setRemarksReporting(boolean reportRemarks)     { connection.setRemarksReporting(reportRemarks) ;}  public void setRestrictGetTables(boolean restrict)    { connection.setRestrictGetTables(restrict) ;}  public void setStmtCacheSize(int size) throws SQLException    { connection.setStmtCacheSize(size) ;}  public void setStatementCacheSize(int size)    throws SQLException    { connection.setStatementCacheSize(size); }  public void setStmtCacheSize(int size, boolean clearMetaData)    throws SQLException   { connection.setStmtCacheSize(size, clearMetaData) ;}  public void setUsingXAFlag(boolean value)     { connection.setUsingXAFlag(value) ;}  public void setXAErrorFlag(boolean value)     { connection.setXAErrorFlag(value) ;} public void shutdown(int mode) throws SQLException    { connection.shutdown(mode) ;}  public void startup(String startup_str, int mode) throws SQLException     { connection.startup(startup_str, mode) ;} public PreparedStatement prepareStatementWithKey(String key)    throws SQLException    { return connection.prepareStatementWithKey(key) ;}  public CallableStatement prepareCallWithKey(String key)    throws SQLException    { return connection.prepareCallWithKey(key) ;}  public void setCreateStatementAsRefCursor (boolean value)    { connection.setCreateStatementAsRefCursor (value) ;}  public boolean getCreateStatementAsRefCursor ()    { return connection.getCreateStatementAsRefCursor()  ;}  public void setSessionTimeZone(String regionName) throws SQLException     { connection.setSessionTimeZone(regionName) ;}  public String getSessionTimeZone()    { return connection.getSessionTimeZone() ;}  public void assertComplete() throws java.sql.SQLException    { connection.assertComplete() ;}  public boolean getSynchronousMode()     { return connection.getSynchronousMode()  ;}  public void setSynchronousMode(boolean isSynchronous)     { connection.setSynchronousMode(isSynchronous) ;}  public void registerApiDescription(String apiName, short major, short minor,				     String className)     { connection.registerApiDescription(apiName, major, minor,className) ;}  public Object openJoltConnection(String apiName, short major, short minor)    { return connection.openJoltConnection(apiName, major, minor) ;}  public Connection _getPC()      { return connection._getPC() ;}  public boolean isLogicalConnection()     { return connection.isLogicalConnection()  ;}  public void registerTAFCallback(oracle.jdbc.OracleOCIFailover cbk, Object obj)    throws java.sql.SQLException    { connection.registerTAFCallback(cbk, obj) ;}  public java.util.Properties getProperties()  {    return connection.getProperties();  }  // JDBC 3.0 methods  /* The following methods are JDBC3.0 APIs  public void setHoldability(int holdability) throws SQLException    { connection.setHoldability(holdability); }  public int getHoldability() throws SQLException  { return connection.getHoldability(); }   public synchronized java.sql.Savepoint setSavepoint() throws SQLException  { return connection.setSavepoint();}  public synchronized java.sql.Savepoint setSavepoint(String name) throws SQLException  { return connection.setSavepoint(name);}  public synchronized void rollback(java.sql.Savepoint savepoint) throws SQLException  { connection.rollback(savepoint);}  public synchronized void releaseSavepoint(java.sql.Savepoint savepoint) throws SQLException  { connection.releaseSavepoint(savepoint);}  public Statement createStatement(int resultSetType, int resultSetConcurrency,                                    int resultSetHoldability)    throws SQLException  { return connection.createStatement(resultSetType, resultSetConcurrency, 				      resultSetHoldability);}  public PreparedStatement prepareStatement(String sql, int resultSetType,                              int resultSetConcurrency, int resultSetHoldability)    throws SQLException  { return connection. prepareStatement( sql,  resultSetType, 					 resultSetConcurrency,                                          resultSetHoldability);}  public CallableStatement prepareCall(String sql, int resultSetType,                                        int resultSetConcurrency,                                        int resultSetHoldability)    throws SQLException  { return connection.prepareCall( sql,  resultSetType,                                         resultSetConcurrency, 				   resultSetHoldability);}  public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys)    throws SQLException    { return connection.prepareStatement(sql, autoGeneratedKeys);}  public PreparedStatement prepareStatement(String sql, int columnIndexes[])    throws SQLException    { return connection.prepareStatement(sql, columnIndexes);}  public PreparedStatement prepareStatement(String sql, String columnNames[])    throws SQLException    { return connection.prepareStatement(sql, columnNames); }  */}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区二区三区av| 国产日韩欧美综合一区| 麻豆精品精品国产自在97香蕉| 精品乱人伦一区二区三区| 92精品国产成人观看免费| 久久99精品久久久久| 亚洲午夜精品17c| 国产精品美女久久久久高潮| 欧美一区二区三区在线观看视频| 99久久99久久精品免费观看| 精品亚洲aⅴ乱码一区二区三区| 亚洲综合一区二区三区| 日本一二三不卡| 精品国产三级电影在线观看| 欧美三级电影在线看| 97久久久精品综合88久久| 韩国成人精品a∨在线观看| 舔着乳尖日韩一区| 亚洲免费在线视频| 国产欧美日韩亚州综合| 欧美r级在线观看| 欧美剧情片在线观看| 一本色道**综合亚洲精品蜜桃冫| 丰满岳乱妇一区二区三区| 免费av成人在线| 亚洲成人免费影院| 夜夜揉揉日日人人青青一国产精品 | av高清久久久| 韩国精品久久久| 蜜臀av亚洲一区中文字幕| 亚洲超丰满肉感bbw| 亚洲综合色噜噜狠狠| 亚洲三级理论片| 亚洲特黄一级片| 日韩伦理电影网| 亚洲欧美日韩精品久久久久| 国产精品国产三级国产普通话蜜臀| 久久亚洲综合av| 精品剧情v国产在线观看在线| 91精品国产免费久久综合| 欧美日韩在线观看一区二区| 欧美日韩国产影片| 欧美日韩国产精品成人| 正在播放一区二区| 欧美一卡二卡在线观看| 日韩欧美区一区二| 久久综合色之久久综合| 精品美女一区二区| 国产亚洲女人久久久久毛片| 国产欧美精品一区二区色综合朱莉| 国产日韩精品一区二区三区在线| 国产日韩精品一区二区三区| 国产精品国产三级国产有无不卡| 亚洲婷婷综合久久一本伊一区| 亚洲女同ⅹxx女同tv| 亚洲成a人v欧美综合天堂下载| 日韩高清在线一区| 久久99久久99| 成人午夜大片免费观看| 91麻豆产精品久久久久久| 欧美亚洲国产一区二区三区va | 欧美大胆一级视频| 91精品国产91综合久久蜜臀| 欧美一级夜夜爽| 精品福利一区二区三区免费视频| 国产亚洲欧美激情| 综合久久久久久| 天天色综合成人网| 欧美亚州韩日在线看免费版国语版| 欧美日本精品一区二区三区| 精品av综合导航| 中文字幕永久在线不卡| 一区二区三区日韩| 久久综合综合久久综合| 丁香网亚洲国际| 日本一区二区在线不卡| 精品成人在线观看| 精品国产一区久久| 欧美精品一区二区三| 国产日韩精品一区二区浪潮av| 久久嫩草精品久久久精品一| 国产三级三级三级精品8ⅰ区| 日本一区二区在线不卡| 国产精品女同互慰在线看| 亚洲欧美国产77777| 日韩成人一区二区三区在线观看| 日本在线观看不卡视频| 国产精品一区二区男女羞羞无遮挡 | 久久人人爽人人爽| 亚洲综合在线视频| 日本不卡一二三| 在线视频国内一区二区| 国产欧美一区二区三区鸳鸯浴| 免费成人在线观看视频| 91精品国产综合久久久久久久 | www.66久久| 久久99精品视频| 欧美亚洲国产一区二区三区va| 国产亚洲短视频| 欧美日韩在线播放一区| 国产很黄免费观看久久| 久久爱www久久做| 欧美私人免费视频| 精品av久久707| 亚洲成人精品一区| 精品成人一区二区| 久久精品国产免费看久久精品| 国产一区二区三区视频在线播放| 99综合电影在线视频| 日韩欧美三级在线| 亚洲午夜精品网| 97久久精品人人做人人爽50路| 26uuu亚洲婷婷狠狠天堂| 一区二区成人在线| av一区二区三区黑人| 日韩欧美一级在线播放| 亚洲va中文字幕| 国产亚洲一区二区三区在线观看 | 狠狠色狠狠色综合系列| av高清不卡在线| 久久精品一区二区三区不卡| 卡一卡二国产精品| 日韩无一区二区| 另类小说图片综合网| 欧美大度的电影原声| 国产一区二区三区综合| 久久精品日韩一区二区三区| 日韩高清不卡一区二区三区| 91麻豆精品国产91久久久资源速度| 亚洲成av人片一区二区| 欧美午夜在线观看| 日韩电影免费一区| 久久伊人中文字幕| 99麻豆久久久国产精品免费 | 26uuu久久天堂性欧美| 日韩免费性生活视频播放| 亚洲成av人片在www色猫咪| 欧美日韩免费电影| 99久久精品费精品国产一区二区| 91色|porny| 精品国产一区二区三区不卡| 亚洲一区在线观看视频| 日本道色综合久久| 亚洲国产精品一区二区久久| 欧美综合亚洲图片综合区| 亚洲色图在线播放| 色综合久久久久| 亚洲一区二区三区四区的 | 在线观看av不卡| 一区二区高清在线| 欧美日韩国产在线播放网站| 三级欧美在线一区| 欧美成人综合网站| 国产精一品亚洲二区在线视频| 久久精品视频在线免费观看| 盗摄精品av一区二区三区| 国产精品久久三| 在线亚洲一区观看| 天天综合色天天综合色h| 91精品婷婷国产综合久久性色| 美女在线视频一区| 水蜜桃久久夜色精品一区的特点| 国产日产欧美精品一区二区三区| 777午夜精品免费视频| 欧美精选午夜久久久乱码6080| 国产视频一区二区在线| 日本一二三不卡| 欧美成人猛片aaaaaaa| 亚洲一区日韩精品中文字幕| 亚洲国产精品久久久久婷婷884| 亚洲一区二区三区爽爽爽爽爽| 麻豆精品在线播放| 91福利视频网站| 美女www一区二区| 欧美国产精品一区| 欧美日韩在线播放一区| 久久99精品久久久久婷婷| 国产精品久线观看视频| 欧美午夜电影网| 8v天堂国产在线一区二区| 国产一区二区三区香蕉| 久久99国产精品免费| 成人欧美一区二区三区视频网页| 欧美日韩国产乱码电影| 懂色av噜噜一区二区三区av| 亚洲一区二区三区激情| 久久先锋资源网| 91同城在线观看| 美女在线观看视频一区二区| 中文无字幕一区二区三区| 欧美日韩久久久| 日韩一区二区三区四区| 91麻豆福利精品推荐| 精品一区二区三区免费视频| 亚洲精品视频自拍| 久久精品欧美日韩| 欧美高清视频一二三区| 99久久精品国产毛片| 久久99久久精品| 午夜视频在线观看一区二区|