提交 bb517162 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 73cd2b87
...@@ -38,6 +38,7 @@ import org.h2.value.ValueNull; ...@@ -38,6 +38,7 @@ import org.h2.value.ValueNull;
* Represents a callable statement. * Represents a callable statement.
* *
* @author Sergi Vladykin * @author Sergi Vladykin
* @author Thomas Mueller
*/ */
public class JdbcCallableStatement extends JdbcPreparedStatement implements CallableStatement { public class JdbcCallableStatement extends JdbcPreparedStatement implements CallableStatement {
...@@ -51,7 +52,20 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call ...@@ -51,7 +52,20 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call
} }
/** /**
* @see java.sql.PreparedStatement#executeUpdate() * Executes a statement (insert, update, delete, create, drop)
* and returns the update count.
* If another result set exists for this statement, this will be closed
* (even if this statement fails).
*
* If auto commit is on, this statement will be committed.
* If the statement is a DDL statement (create, drop, alter) and does not
* throw an exception, the current transaction (if any) is committed after
* executing the statement.
*
* @return the update count (number of row affected by an insert, update or
* delete, or 0 if no rows or the statement was a create, drop,
* commit or rollback)
* @throws SQLException if this object is closed or invalid
*/ */
public int executeUpdate() throws SQLException { public int executeUpdate() throws SQLException {
if (command.isQuery()) { if (command.isQuery()) {
......
...@@ -59,8 +59,8 @@ import java.sql.SQLXML; ...@@ -59,8 +59,8 @@ import java.sql.SQLXML;
*/ */
public class JdbcPreparedStatement extends JdbcStatement implements PreparedStatement { public class JdbcPreparedStatement extends JdbcStatement implements PreparedStatement {
private final String sqlStatement;
protected CommandInterface command; protected CommandInterface command;
private final String sqlStatement;
private ArrayList<Value[]> batchParameters; private ArrayList<Value[]> batchParameters;
JdbcPreparedStatement(JdbcConnection conn, String sql, int id, int resultSetType, JdbcPreparedStatement(JdbcConnection conn, String sql, int id, int resultSetType,
...@@ -106,13 +106,15 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat ...@@ -106,13 +106,15 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat
} }
/** /**
* Executes a statement (insert, update, delete, create, drop, commit, * Executes a statement (insert, update, delete, create, drop)
* rollback) and returns the update count. If another result set exists for * and returns the update count.
* this statement, this will be closed (even if this statement fails). * If another result set exists for this statement, this will be closed
* (even if this statement fails).
* *
* If the statement is a create or drop and does not throw an exception, the
* current transaction (if any) is committed after executing the statement.
* If auto commit is on, this statement will be committed. * If auto commit is on, this statement will be committed.
* If the statement is a DDL statement (create, drop, alter) and does not
* throw an exception, the current transaction (if any) is committed after
* executing the statement.
* *
* @return the update count (number of row affected by an insert, update or * @return the update count (number of row affected by an insert, update or
* delete, or 0 if no rows or the statement was a create, drop, * delete, or 0 if no rows or the statement was a create, drop,
......
...@@ -93,9 +93,10 @@ public class JdbcStatement extends TraceObject implements Statement { ...@@ -93,9 +93,10 @@ public class JdbcStatement extends TraceObject implements Statement {
* If another result set exists for this statement, this will be closed * If another result set exists for this statement, this will be closed
* (even if this statement fails). * (even if this statement fails).
* *
* If the statement is a create or drop and does not throw an exception,
* the current transaction (if any) is committed after executing the statement.
* If auto commit is on, this statement will be committed. * If auto commit is on, this statement will be committed.
* If the statement is a DDL statement (create, drop, alter) and does not
* throw an exception, the current transaction (if any) is committed after
* executing the statement.
* *
* @param sql the SQL statement * @param sql the SQL statement
* @return the update count (number of row affected by an insert, * @return the update count (number of row affected by an insert,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论