summaryrefslogtreecommitdiff
path: root/java/sql/PreparedStatement.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/sql/PreparedStatement.java')
-rw-r--r--java/sql/PreparedStatement.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/java/sql/PreparedStatement.java b/java/sql/PreparedStatement.java
index bce94d280..dc8b1c4de 100644
--- a/java/sql/PreparedStatement.java
+++ b/java/sql/PreparedStatement.java
@@ -40,7 +40,7 @@ import java.util.Calendar;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
-public abstract interface PreparedStatement extends Statement
+public interface PreparedStatement extends Statement
{
/**
@@ -471,6 +471,16 @@ setObject(int index, Object value, int type, int scale) throws SQLException;
/*************************************************************************/
/**
+ * This method adds a set of parameters to the batch for JDBC 2.0.
+ *
+ * @exception SQLException If an error occurs.
+ */
+public abstract void
+addBatch() throws SQLException;
+
+/*************************************************************************/
+
+/**
* This method clears all of the input parameter that have been
* set on this statement.
*