Methods Summary |
---|
public void | addBatch()
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.addBatch();
} catch (SQLException se) {
throw se;
}
|
public void | clearParameters()
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.clearParameters();
} catch (SQLException se) {
throw se;
}
|
public boolean | execute()
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
this.conn.checkXact();
return (pstmt.execute());
} catch (SQLException se) {
throw se;
}
|
public java.sql.ResultSet | executeQuery()
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
this.conn.checkXact();
return (pstmt.executeQuery());
} catch (SQLException se) {
throw se;
}
|
public int | executeUpdate()
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
this.conn.checkXact();
return (pstmt.executeUpdate());
} catch (SQLException se) {
throw se;
}
|
public java.sql.Array | getArray(int i)
return (null);
|
public java.sql.Blob | getBlob(int i)
return (null);
|
public java.sql.Clob | getClob(int i)
return (null);
|
public java.sql.Date | getDate(int parameterIndex, java.util.Calendar cal)
return (null);
|
public java.sql.ResultSetMetaData | getMetaData()
return (null);
|
public java.sql.ParameterMetaData | getParameterMetaData()
throw new UnsupportedOperationException();
|
public java.sql.Time | getTime(int parameterIndex, java.util.Calendar cal)
return (null);
|
public java.sql.Timestamp | getTimestamp(int parameterIndex, java.util.Calendar cal)
return (null);
|
public void | setArray(int i, java.sql.Array x)
|
public void | setAsciiStream(int parameterIndex, java.io.InputStream x, int length)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setAsciiStream(parameterIndex, x, length);
} catch (SQLException se) {
throw se;
}
|
public void | setBigDecimal(int parameterIndex, java.math.BigDecimal x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setBigDecimal(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setBinaryStream(int parameterIndex, java.io.InputStream x, int length)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setBinaryStream(parameterIndex, x, length);
} catch (SQLException se) {
throw se;
}
|
public void | setBlob(int i, java.sql.Blob x)
|
public void | setBoolean(int parameterIndex, boolean x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setBoolean(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setByte(int parameterIndex, byte x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setByte(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setBytes(int parameterIndex, byte[] x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setBytes(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setCharacterStream(int parameterIndex, java.io.Reader reader, int length)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setCharacterStream(parameterIndex, reader, length);
} catch (SQLException se) {
throw se;
}
|
public void | setClob(int i, java.sql.Clob x)
|
public void | setDate(int parameterIndex, java.sql.Date x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setDate(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setDate(int parameterIndex, java.sql.Date x, java.util.Calendar cal)
|
public void | setDouble(int parameterIndex, double x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setDouble(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setFloat(int parameterIndex, float x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setFloat(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setInt(int parameterIndex, int x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setInt(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setLong(int parameterIndex, long x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setLong(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setNull(int i, int j, java.lang.String str)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
/* Comment out for now.
try
{
pstmt.setNull(i, j, str);
}
catch (SQLException se)
{
throw se;
}
*/
|
public void | setNull(int parameterIndex, int sqlType)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setNull(parameterIndex, sqlType);
} catch (SQLException se) {
throw se;
}
|
public void | setObject(int parameterIndex, java.lang.Object x, int targetSqlType, int scale)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setObject(parameterIndex, x, targetSqlType, scale);
} catch (SQLException se) {
throw se;
}
|
public void | setObject(int parameterIndex, java.lang.Object x, int targetSqlType)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setObject(parameterIndex, x, targetSqlType);
} catch (SQLException se) {
throw se;
}
|
public void | setObject(int parameterIndex, java.lang.Object x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setObject(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setRef(int i, java.sql.Ref x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setRef(i, x);
} catch (SQLException se) {
throw se;
}
|
public void | setShort(int parameterIndex, short x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setShort(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setString(int parameterIndex, java.lang.String x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setString(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setTime(int parameterIndex, java.sql.Time x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setTime(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setTime(int parameterIndex, java.sql.Time x, java.util.Calendar cal)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setTime(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setTimestamp(int parameterIndex, java.sql.Timestamp x)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setTimestamp(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setTimestamp(int parameterIndex, java.sql.Timestamp x, java.util.Calendar cal)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setTimestamp(parameterIndex, x);
} catch (SQLException se) {
throw se;
}
|
public void | setURL(int parameterIndex, java.net.URL x)
throw new UnsupportedOperationException();
|
public void | setUnicodeStream(int parameterIndex, java.io.InputStream x, int length)
PreparedStatement pstmt = (PreparedStatement) this.stmt;
try {
pstmt.setUnicodeStream(parameterIndex, x, length);
} catch (SQLException se) {
throw se;
}
|