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

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

?? statement.java

?? gcc的組建
?? JAVA
字號:
/* Statement.java -- Interface for executing SQL statements.   Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version. GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package java.sql;/** * This interface provides a mechanism for executing SQL statements. * * @author Aaron M. Renn (arenn@urbanophile.com) */public interface Statement {  int CLOSE_CURRENT_RESULT = 1;  int KEEP_CURRENT_RESULT = 2;  int CLOSE_ALL_RESULTS = 3;  int SUCCESS_NO_INFO = -2;  int EXECUTE_FAILED = -3;  int RETURN_GENERATED_KEYS = 1;  int NO_GENERATED_KEYS = 2;  /**   * This method executes the specified SQL SELECT statement and returns a   * (possibly empty) <code>ResultSet</code> with the results of the query.   *   * @param sql The SQL statement to execute.   * @return The result set of the SQL statement.   * @exception SQLException If an error occurs.   */  ResultSet executeQuery(String sql) throws SQLException;  /**   * This method executes the specified SQL INSERT, UPDATE, or DELETE statement   * and returns the number of rows affected, which may be 0.   *    * @param sql The SQL statement to execute.   * @return The number of rows affected by the SQL statement.   * @exception SQLException If an error occurs.   */  int executeUpdate(String sql) throws SQLException;  /**   * This method closes the statement and frees any associated resources.   *   * @exception SQLException If an error occurs.   */  void close() throws SQLException;  /**   * This method returns the maximum length of any column value in bytes.   *   * @return The maximum length of any column value in bytes.   * @exception SQLException If an error occurs.   */  int getMaxFieldSize() throws SQLException;  /**   * This method sets the limit for the maximum length of any column in bytes.   *   * @param maxsize The new maximum length of any column in bytes.   * @exception SQLException If an error occurs.   */  void setMaxFieldSize(int max) throws SQLException;  /**   * This method returns the maximum possible number of rows in a result set.   *   * @return The maximum possible number of rows in a result set.   * @exception SQLException If an error occurs.   */  int getMaxRows() throws SQLException;  /**   * This method sets the maximum number of rows that can be present in a   * result set.   *   * @param maxrows The maximum possible number of rows in a result set.   * @exception SQLException If an error occurs.   */  void setMaxRows(int max) throws SQLException;  /**   * This method sets the local escape processing mode on or off.  The   * default value is on.   *   * @param escape <code>true</code> to enable local escape processing,    *        <code>false</code> to disable it.   * @exception SQLException If an error occurs.   */  void setEscapeProcessing(boolean enable) throws SQLException;  /**   * The method returns the number of seconds a statement may be in process   * before timing out.  A value of 0 means there is no timeout.   *   * @return The SQL statement timeout in seconds.   * @exception SQLException If an error occurs.   */  int getQueryTimeout() throws SQLException;  /**   * This method sets the number of seconds a statement may be in process   * before timing out.  A value of 0 means there is no timeout.   *   * @param timeout The new SQL statement timeout value.   * @exception SQLException If an error occurs.   */  void setQueryTimeout(int seconds) throws SQLException;  /**   * This method cancels an outstanding statement, if the database supports   * that operation.   *   * @exception SQLException If an error occurs.   */  void cancel() throws SQLException;  /**   * This method returns the first SQL warning attached to this statement.   * Subsequent warnings will be chained to this one.   *   * @return The first SQL warning for this statement.   * @exception SQLException If an error occurs.   */  SQLWarning getWarnings() throws SQLException;  /**   * This method clears any SQL warnings that have been attached to this   * statement.   *   * @exception SQLException If an error occurs.   */  void clearWarnings() throws SQLException;  /**   * This method sets the cursor name that will be used by the result set.   *   * @param name The cursor name to use for this statement.   * @exception SQLException If an error occurs.   */  void setCursorName(String name) throws SQLException;  /**   * This method executes an arbitrary SQL statement of any time.  The   * methods <code>getResultSet</code>, <code>getMoreResults</code> and   * <code>getUpdateCount</code> retrieve the results.   *   * @return <code>true</code> if a result set was returned, <code>false</code>   *         if an update count was returned.   * @exception SQLException If an error occurs.   */  boolean execute(String sql) throws SQLException;  /**   * This method returns the result set of the SQL statement that was   * executed.  This should be called only once per result set returned.   *   * @return The result set of the query, or <code>null</code> if there was   *         no result set (for example, if the statement was an UPDATE).   * @exception SQLException If an error occurs.   * @see execute   */  ResultSet getResultSet() throws SQLException;  /**   * This method returns the update count of the SQL statement that was   * executed.  This should be called only once per executed SQL statement.   *   * @return The update count of the query, or -1 if there was no update   *         count (for example, if the statement was a SELECT).   * @exception SQLException If an error occurs.   * @see execute   */  int getUpdateCount() throws SQLException;  /**   * This method advances the result set pointer to the next result set,    * which can then be retrieved using <code>getResultSet</code>   *   * @return <code>true</code> if there is another result set,    *         <code>false</code> otherwise (for example, the next result is an   *         update count).   * @exception SQLException If an error occurs.   * @see execute   */  boolean getMoreResults() throws SQLException;  /**   * This method informs the driver which direction the result set will   * be accessed in.   *   * @param direction The direction the result set will be accessed in (?????)   * @exception SQLException If an error occurs.   */  void setFetchDirection(int direction) throws SQLException;  /**   * This method returns the current direction that the driver thinks the   * result set will be accessed int.   *   * @return The direction the result set will be accessed in (????)   * @exception SQLException If an error occurs.   */  int getFetchDirection() throws SQLException;  /**   * This method informs the driver how many rows it should fetch from the   * database at a time.   *   * @param numrows The number of rows the driver should fetch at a time   *        to populate the result set.   * @exception SQLException If an error occurs.   */  void setFetchSize(int rows) throws SQLException;  /**   * This method returns the number of rows the driver believes should be   * fetched from the database at a time.   *   * @return The number of rows that will be fetched from the database at a time.   * @exception SQLException If an error occurs.   */  int getFetchSize() throws SQLException;  /**   * This method returns the concurrency type of the result set for this   * statement. This will be one of the concurrency types defined in   * <code>ResultSet</code>.   *   * @return The concurrency type of the result set for this statement.   * @exception SQLException If an error occurs.   * @see ResultSet   */  int getResultSetConcurrency() throws SQLException;  /**   * This method returns the result set type for this statement.  This will   * be one of the result set types defined in <code>ResultSet</code>.   *   * @return The result set type for this statement.   * @exception SQLException If an error occurs.   * @see ResultSet   */  int getResultSetType() throws SQLException;  /**   * This method adds a SQL statement to a SQL batch.  A driver is not   * required to implement this method.   *   * @param sql The sql statement to add to the batch.   * @exception SQLException If an error occurs.   */  void addBatch(String sql) throws SQLException;  /**   * This method clears out any SQL statements that have been populated in   * the current batch.  A driver is not required to implement this method.   *   * @exception SQLException If an error occurs.   */  void clearBatch() throws SQLException;  /**   * This method executes the SQL batch and returns an array of update   * counts - one for each SQL statement in the batch - ordered in the same   * order the statements were added to the batch.  A driver is not required   * to implement this method.   *   * @return An array of update counts for this batch.   * @exception SQLException If an error occurs.   */  int[] executeBatch() throws SQLException;  /**   * This method returns the <code>Connection</code> instance that was   * used to create this object.   *   * @return The connection used to create this object.   * @exception SQLException If an error occurs.   */  Connection getConnection() throws SQLException;  /**   * @since 1.4   */  boolean getMoreResults(int current) throws SQLException;  /**   * @since 1.4   */  ResultSet getGeneratedKeys() throws SQLException;  /**   * @since 1.4   */  int executeUpdate(String sql, int autoGeneratedKeys)    throws SQLException;  /**   * @since 1.4   */  int executeUpdate(String sql, int[] columnIndexes)    throws SQLException;  /**   * @since 1.4   */  int executeUpdate(String sql, String[] columnNames)    throws SQLException;  /**   * @since 1.4   */  boolean execute(String sql, int autoGeneratedKeys)    throws SQLException;  /**   * @since 1.4   */  boolean execute(String sql, int[] columnIndexes) throws SQLException;  /**   * @since 1.4   */  boolean execute(String sql, String[] columnNames)    throws SQLException;  /**   * @since 1.4   */  int getResultSetHoldability() throws SQLException;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人av网在线| 91视视频在线观看入口直接观看www| 日韩电影在线一区二区| 国产精品123区| 欧美日本韩国一区| 日韩一区在线免费观看| 激情av综合网| 欧美日韩精品欧美日韩精品一| 久久久久国产免费免费| 日韩av电影免费观看高清完整版| eeuss影院一区二区三区| 欧美大胆人体bbbb| 亚洲一区在线电影| 99久久99久久精品国产片果冻| 2023国产精华国产精品| 日韩福利电影在线观看| 日本黄色一区二区| 国产精品沙发午睡系列990531| 久久不见久久见中文字幕免费| 欧美综合欧美视频| 亚洲综合一区二区精品导航| 国产成人av一区二区三区在线观看| 欧美一区二区三区影视| 亚洲国产日产av| 91福利在线看| 亚洲一区免费观看| 欧美综合一区二区三区| 亚洲一区二区视频在线| 色欧美日韩亚洲| 国产精品久久网站| fc2成人免费人成在线观看播放| 国产欧美日韩另类一区| 国产成人自拍高清视频在线免费播放| 欧美精品一区二区在线播放| 美日韩黄色大片| 4438成人网| 蜜臀av在线播放一区二区三区| 欧美不卡激情三级在线观看| 免费在线观看日韩欧美| 欧美挠脚心视频网站| 日韩一区精品视频| 91精品在线麻豆| 美女一区二区三区| 2020国产精品久久精品美国| 国产福利不卡视频| 国产情人综合久久777777| 国产乱码精品一区二区三| 欧美激情一区二区在线| 99久久精品免费精品国产| 亚洲欧美一区二区久久| 欧美色窝79yyyycom| 日韩av高清在线观看| 精品理论电影在线观看| 成人网在线播放| 一区二区成人在线视频| 91精品午夜视频| 国产综合色在线| 国产精品视频看| 欧美性大战久久久久久久 | 欧美国产成人在线| 99免费精品视频| 亚洲3atv精品一区二区三区| 久久综合色天天久久综合图片| 成人免费电影视频| 午夜av一区二区三区| 久久一区二区三区四区| 一本色道综合亚洲| 蜜臀99久久精品久久久久久软件| 国产性色一区二区| 欧美日韩色一区| 久久99久久久久久久久久久| 中文字幕在线观看一区| 7777精品伊人久久久大香线蕉 | 紧缚捆绑精品一区二区| 国产精品超碰97尤物18| 欧美精品电影在线播放| 成人高清视频在线观看| 天堂成人国产精品一区| 中文在线一区二区| 欧美一区二区黄色| 91视频xxxx| 国产乱一区二区| 五月天婷婷综合| 亚洲私人黄色宅男| 久久夜色精品国产噜噜av| 欧美三级资源在线| 不卡的av网站| 国内久久精品视频| 天天爽夜夜爽夜夜爽精品视频 | 日韩精品一区二区三区中文不卡| 91蜜桃在线观看| 韩国一区二区视频| 日韩电影在线免费观看| 亚洲免费视频中文字幕| 久久精品一区四区| 欧美电影免费观看高清完整版在| 色婷婷综合久色| 成人国产精品免费网站| 国产老肥熟一区二区三区| 久久爱www久久做| 天堂av在线一区| 一区二区三区欧美视频| 国产精品电影一区二区三区| 2017欧美狠狠色| 久久午夜色播影院免费高清| 日韩一区二区电影| 欧美撒尿777hd撒尿| av在线不卡免费看| 成人免费视频播放| 国产ts人妖一区二区| 国产激情视频一区二区在线观看 | 美女爽到高潮91| 亚洲第四色夜色| 亚洲chinese男男1069| 亚洲妇女屁股眼交7| 亚洲国产日韩在线一区模特| 亚洲一区二区在线免费观看视频| 亚洲欧美成aⅴ人在线观看| 亚洲欧美怡红院| 一区二区三区精品视频在线| 亚洲精品日产精品乱码不卡| 亚洲九九爱视频| 亚洲国产美国国产综合一区二区| 亚洲成人一区二区在线观看| 石原莉奈在线亚洲三区| 蜜桃精品视频在线| 精品一区二区三区免费观看| 国产一区二区三区在线观看精品| 国产91精品露脸国语对白| 成人免费精品视频| 在线视频欧美精品| 欧美日韩aaa| 精品福利av导航| 日本一区二区成人| 一区二区三区在线视频播放| 无吗不卡中文字幕| 狠狠色丁香婷综合久久| 福利电影一区二区| 在线观看亚洲精品| 欧美电影免费观看高清完整版| 国产欧美日韩另类一区| 亚洲线精品一区二区三区八戒| 奇米色777欧美一区二区| 国产麻豆精品久久一二三| 不卡视频免费播放| 欧美日韩一区三区| 久久影音资源网| 亚洲精品国产成人久久av盗摄 | caoporen国产精品视频| 在线精品视频小说1| 欧美va日韩va| 亚洲精品免费电影| 久久成人18免费观看| 一本色道久久综合亚洲aⅴ蜜桃| 国产三级精品三级| 国产精品第五页| 狠狠色狠狠色综合日日91app| 97se亚洲国产综合自在线不卡| 91精品国产91久久综合桃花| 中文欧美字幕免费| 免费人成网站在线观看欧美高清| 国产超碰在线一区| 欧美日产国产精品| 亚洲欧美一区二区视频| 韩国精品主播一区二区在线观看 | 成a人片亚洲日本久久| 91麻豆精品国产| 亚洲免费伊人电影| 国产白丝精品91爽爽久久| 欧美精品在线观看播放| ●精品国产综合乱码久久久久 | av日韩在线网站| 亚洲精品一区在线观看| 亚洲一区在线视频观看| 91在线观看地址| 欧美国产日本视频| 看电影不卡的网站| 欧美日本乱大交xxxxx| 亚洲精品视频一区二区| 成人app软件下载大全免费| 欧美成人三级电影在线| 日韩精品每日更新| 欧美天堂亚洲电影院在线播放| ●精品国产综合乱码久久久久| 成人午夜视频网站| 国产亚洲欧美日韩在线一区| 免费看欧美女人艹b| 欧美日韩国产另类一区| 亚洲欧美综合网| 99久久精品99国产精品| 中文字幕乱码日本亚洲一区二区 | 一本到不卡精品视频在线观看| 国产欧美日韩三区| 国产91精品精华液一区二区三区 | voyeur盗摄精品| 亚洲欧美综合另类在线卡通| 成人av免费在线| 亚洲精品日产精品乱码不卡| 色综合久久久久久久久久久| 亚洲色欲色欲www|