Skip navigation links
A C D E F G H I P R S T U 

A

addBatch() - Method in class info.bowkett.ddt.PreparedStatementSpy
Adds a set of parameters to this PreparedStatement object's batch of commands.
addBatch(String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Adds the given SQL command to the current list of commands for this Statement object.
answer(InvocationOnMock) - Method in class info.bowkett.ddt.SyntheticResultSetAnswer
 

C

cancel() - Method in class info.bowkett.ddt.PreparedStatementSpy
Cancels this Statement object if both the DBMS and driver support aborting an SQL statement.
clearBatch() - Method in class info.bowkett.ddt.PreparedStatementSpy
Empties this Statement object's current list of SQL commands.
clearParameters() - Method in class info.bowkett.ddt.PreparedStatementSpy
Clears the current parameter values immediately.
clearWarnings() - Method in class info.bowkett.ddt.PreparedStatementSpy
Clears all the warnings reported on this Statement object.
close() - Method in class info.bowkett.ddt.PreparedStatementSpy
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.

D

DDTFixture - Class in info.bowkett.ddt
Created by jbowkett on 09/06/15.
DDTFixture(Connection, ResultSet, Statement) - Constructor for class info.bowkett.ddt.DDTFixture
 
DDTFixture(Connection, ResultSet, PreparedStatement) - Constructor for class info.bowkett.ddt.DDTFixture
 
DDTFixture(Connection, ResultSet, CallableStatement) - Constructor for class info.bowkett.ddt.DDTFixture
 

E

equals(Object) - Method in class info.bowkett.ddt.Row
 
execute() - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.
execute(String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement, which may return multiple results.
execute(String, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement, which may return multiple results, and signals the driver that any auto-generated keys should be made available for retrieval.
execute(String, int[]) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement, which may return multiple results, and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.
execute(String, String[]) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement, which may return multiple results, and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.
executeBatch() - Method in class info.bowkett.ddt.PreparedStatementSpy
Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
executeQuery() - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the SQL query in this PreparedStatement object and returns the ResultSet object generated by the query.
executeQuery(String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement, which returns a single ResultSet object.
executeUpdate() - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the SQL statement in this PreparedStatement object, which must be an SQL Data Manipulation Language (DML) statement, such as INSERT, UPDATE or DELETE; or an SQL statement that returns nothing, such as a DDL statement.
executeUpdate(String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement.
executeUpdate(String, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement and signals the driver with the given flag about whether the auto-generated keys produced by this Statement object should be made available for retrieval.
executeUpdate(String, int[]) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.
executeUpdate(String, String[]) - Method in class info.bowkett.ddt.PreparedStatementSpy
Executes the given SQL statement and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.

F

forCallableStatement(Connection) - Static method in class info.bowkett.ddt.DDTFixture
 
forPreparedStatement(Connection) - Static method in class info.bowkett.ddt.DDTFixture
 
forStatement(Connection) - Static method in class info.bowkett.ddt.DDTFixture
 

G

getConnection() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the Connection object that produced this Statement object.
getFetchDirection() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object.
getFetchSize() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the number of result set rows that is the default fetch size for ResultSet objects generated from this Statement object.
getGeneratedKeys() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves any auto-generated keys created as a result of executing this Statement object.
getMaxFieldSize() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the maximum number of bytes that can be returned for character and binary column values in a ResultSet object produced by this Statement object.
getMaxRows() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the maximum number of rows that a ResultSet object produced by this Statement object can contain.
getMetaData() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves a ResultSetMetaData object that contains information about the columns of the ResultSet object that will be returned when this PreparedStatement object is executed.
getMoreResults() - Method in class info.bowkett.ddt.PreparedStatementSpy
Moves to this Statement object's next result, returns true if it is a ResultSet object, and implicitly closes any current ResultSet object(s) obtained with the method getResultSet.
getMoreResults(int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Moves to this Statement object's next result, deals with any current ResultSet object(s) according to the instructions specified by the given flag, and returns true if the next result is a ResultSet object.
getParameterMetaData() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the number, types and properties of this PreparedStatement object's parameters.
getQueryTimeout() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the number of seconds the driver will wait for a Statement object to execute.
getResultSet() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the current result as a ResultSet object.
getResultSetConcurrency() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the result set concurrency for ResultSet objects generated by this Statement object.
getResultSetHoldability() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the result set holdability for ResultSet objects generated by this Statement object.
getResultSetType() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the result set type for ResultSet objects generated by this Statement object.
getUpdateCount() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the current result as an update count; if the result is a ResultSet object or there are no more results, -1 is returned.
getValue(int) - Method in class info.bowkett.ddt.Row
 
getWarnings() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves the first warning reported by calls on this Statement object.

H

hashCode() - Method in class info.bowkett.ddt.Row
 

I

info.bowkett.ddt - package info.bowkett.ddt
 
isClosed() - Method in class info.bowkett.ddt.PreparedStatementSpy
Retrieves whether this Statement object has been closed.
isPoolable() - Method in class info.bowkett.ddt.PreparedStatementSpy
Returns a value indicating whether the Statement is poolable or not.
isWrapperFor(Class<?>) - Method in class info.bowkett.ddt.PreparedStatementSpy
Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does.

P

PreparedStatementSpy - Class in info.bowkett.ddt
Created by jbowkett on 27/04/15.
PreparedStatementSpy(PreparedStatement, String) - Constructor for class info.bowkett.ddt.PreparedStatementSpy
 

R

Row - Class in info.bowkett.ddt
Created by jbowkett on 08/06/15.
Row(Object...) - Constructor for class info.bowkett.ddt.Row
 

S

setArray(int, Array) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Array object.
setAsciiStream(int, InputStream, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(int, InputStream, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(int, InputStream) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given input stream.
setBigDecimal(int, BigDecimal) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.math.BigDecimal value.
setBinaryStream(int, InputStream, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(int, InputStream, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(int, InputStream) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given input stream.
setBlob(int, Blob) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Blob object.
setBlob(int, InputStream) - Method in class info.bowkett.ddt.PreparedStatementSpy
 
setBlob(int, InputStream, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to a InputStream object.
setBoolean(int, boolean) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java boolean value.
setByte(int, byte) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java byte value.
setBytes(int, byte[]) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java array of bytes.
setCharacterStream(int, Reader, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(int, Reader, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(int, Reader) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Reader object.
setClob(int, Clob) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Clob object.
setClob(int, Reader, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to a Reader object.
setClob(int, Reader) - Method in class info.bowkett.ddt.PreparedStatementSpy
 
setCursorName(String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the SQL cursor name to the given String, which will be used by subsequent Statement object execute methods.
setDate(int, Date) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Date value using the default time zone of the virtual machine that is running the application.
setDate(int, Date, Calendar) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
setDouble(int, double) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java double value.
setEscapeProcessing(boolean) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets escape processing on or off.
setFetchDirection(int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Gives the driver a hint as to the direction in which rows will be processed in ResultSet objects created using this Statement object.
setFetchSize(int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for ResultSet objects generated by this Statement.
setFloat(int, float) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java float value.
setInt(int, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java int value.
setLong(int, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java long value.
setMaxFieldSize(int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the limit for the maximum number of bytes that can be returned for character and binary column values in a ResultSet object produced by this Statement object.
setMaxRows(int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the limit for the maximum number of rows that any ResultSet object generated by this Statement object can contain to the given number.
setNCharacterStream(int, Reader, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to a Reader object.
setNCharacterStream(int, Reader) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to a Reader object.
setNClob(int, NClob) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to a java.sql.NClob object.
setNClob(int, Reader, long) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to a Reader object.
setNClob(int, Reader) - Method in class info.bowkett.ddt.PreparedStatementSpy
 
setNString(int, String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given String object.
setNull(int, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to SQL NULL.
setNull(int, int, String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to SQL NULL.
setObject(int, Object, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the value of the designated parameter with the given object.
setObject(int, Object) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the value of the designated parameter using the given object.
setObject(int, Object, int, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the value of the designated parameter with the given object.
setPoolable(boolean) - Method in class info.bowkett.ddt.PreparedStatementSpy
Requests that a Statement be pooled or not pooled.
setQueryTimeout(int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the number of seconds the driver will wait for a Statement object to execute to the given number of seconds.
setRef(int, Ref) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given REF(<structured-type>) value.
setResultSet(Row...) - Method in class info.bowkett.ddt.DDTFixture
 
setResultSet(Map<String, Integer>, Row...) - Method in class info.bowkett.ddt.DDTFixture
 
setRowId(int, RowId) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.RowId object.
setShort(int, short) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java short value.
setSQLXML(int, SQLXML) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.SQLXML object.
setString(int, String) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given Java String value.
setTime(int, Time) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Time value.
setTime(int, Time, Calendar) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
setTimestamp(int, Timestamp) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Timestamp value.
setTimestamp(int, Timestamp, Calendar) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
setUnicodeStream(int, InputStream, int) - Method in class info.bowkett.ddt.PreparedStatementSpy
Deprecated.
Use setCharacterStream
setURL(int, URL) - Method in class info.bowkett.ddt.PreparedStatementSpy
Sets the designated parameter to the given java.net.URL value.
SyntheticResultSetAnswer - Class in info.bowkett.ddt
Created by jbowkett on 09/06/15.
SyntheticResultSetAnswer(Row[]) - Constructor for class info.bowkett.ddt.SyntheticResultSetAnswer
 
SyntheticResultSetAnswer(Map<String, Integer>, Row[]) - Constructor for class info.bowkett.ddt.SyntheticResultSetAnswer
 

T

toString() - Method in class info.bowkett.ddt.PreparedStatementSpy
 
toString() - Method in class info.bowkett.ddt.Row
 

U

unwrap(Class<T>) - Method in class info.bowkett.ddt.PreparedStatementSpy
Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy.
A C D E F G H I P R S T U 
Skip navigation links

Prepared by James Bowkett 2015. No Rights Reserved.