|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DbPreparedStatement | |
|---|---|
| com.uwyn.rife.cmf.dam.contentstores | Provides managers classes for content data support. |
| com.uwyn.rife.database | Provides classes and interfaces for the object-oriented query builders, database abstraction layer, persistance manager, query handling templates, fault-tolerant JDBC wrappers and connection pooling. |
| com.uwyn.rife.database.exceptions | Provides exception classes for the database framework. |
| com.uwyn.rife.database.querymanagers.generic | Provides classes and interfaces for the persistance framework. |
| com.uwyn.rife.database.types | Provides classes for the conversion from Java to SQL values and vice-versa. |
| Uses of DbPreparedStatement in com.uwyn.rife.cmf.dam.contentstores |
|---|
| Fields in com.uwyn.rife.cmf.dam.contentstores declared as DbPreparedStatement | |
|---|---|
protected DbPreparedStatement |
RawContentStream.mStatement
|
| Methods in com.uwyn.rife.cmf.dam.contentstores that return DbPreparedStatement | |
|---|---|
protected DbPreparedStatement |
DatabaseRawStore.getStreamPreparedStatement(Query query,
DbConnection connection)
|
protected static DbPreparedStatement |
RawContentStream.prepareStatement(DatabaseRawStore store,
Select retrieveContentChunks,
int id)
|
| Constructors in com.uwyn.rife.cmf.dam.contentstores with parameters of type DbPreparedStatement | |
|---|---|
RawContentStream(DbPreparedStatement statement)
|
|
| Uses of DbPreparedStatement in com.uwyn.rife.database |
|---|
| Methods in com.uwyn.rife.database that return DbPreparedStatement | |
|---|---|
DbPreparedStatement |
DbConnection.getPreparedStatement(Query query)
Creates a new DbPreparedStatement instance for this
connection from a Query instance. |
DbPreparedStatement |
DbResultSetHandler.getPreparedStatement(Query query,
DbConnection connection)
|
DbPreparedStatement |
DbConnection.getPreparedStatement(Query query,
int autoGeneratedKeys)
Creates a new DbPreparedStatement instance for this
connection from a Query instance that has the capability
to retrieve auto-generated keys. |
DbPreparedStatement |
DbConnection.getPreparedStatement(Query query,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates a new DbPreparedStatement instance for this
connection from a Query instance that will generate
ResultSet objects with the given type, concurrency,
and holdability. |
DbPreparedStatement |
DbConnection.getPreparedStatement(String sql)
Creates a new DbPreparedStatement instance for this
connection from a regular SQL query string. |
DbPreparedStatement |
DbConnection.getPreparedStatement(String sql,
int autoGeneratedKeys)
Creates a new DbPreparedStatement instance for this
connection from a Query instance that has the capability
to retrieve auto-generated keys. |
DbPreparedStatement |
DbPreparedStatement.setArray(int parameterIndex,
Array x)
Sets the designated parameter to the given Array
object. |
DbPreparedStatement |
DbPreparedStatement.setArray(String parameterName,
Array x)
Sets the named parameters to the given Array object. |
DbPreparedStatement |
DbPreparedStatement.setAsciiStream(int parameterIndex,
InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have the specified number of bytes. |
DbPreparedStatement |
DbPreparedStatement.setAsciiStream(String parameterName,
InputStream x,
int length)
Sets the named parameter to the given input stream, which will have the specified number of bytes. |
DbPreparedStatement |
DbPreparedStatement.setBean(Object bean)
Automatically retrieves all the values of a bean's properties and sets them for the parameters that have been defined by the ParametrizedQuery object of this
DbPrepareStatement instance. |
DbPreparedStatement |
DbPreparedStatement.setBigDecimal(int parameterIndex,
BigDecimal x)
Sets the designated parameter to the given java.math.BigDecimal value. |
DbPreparedStatement |
DbPreparedStatement.setBigDecimal(String parameterName,
BigDecimal x)
Sets the named parameters to the given java.math.BigDecimal value. |
DbPreparedStatement |
DbPreparedStatement.setBigDecimals(int[] parameterIndices,
BigDecimal x)
Sets the designated parameters to the given java.math.BigDecimal value. |
DbPreparedStatement |
DbPreparedStatement.setBinaryStream(int parameterIndex,
InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have the specified number of bytes. |
DbPreparedStatement |
DbPreparedStatement.setBinaryStream(String parameterName,
InputStream x,
int length)
Sets the named parameter to the given input stream, which will have the specified number of bytes. |
DbPreparedStatement |
DbPreparedStatement.setBlob(int parameterIndex,
Blob x)
Sets the designated parameter to the given Blob
object. |
DbPreparedStatement |
DbPreparedStatement.setBlob(String parameterName,
Blob x)
Sets the named parameter to the given Blob object. |
DbPreparedStatement |
DbPreparedStatement.setBoolean(int parameterIndex,
boolean x)
Sets the designated parameter to the given Java boolean value. |
DbPreparedStatement |
DbPreparedStatement.setBoolean(String parameterName,
boolean x)
Sets the named parameters to the given Java boolean
value. |
DbPreparedStatement |
DbPreparedStatement.setBooleans(int[] parameterIndices,
boolean x)
Sets the designated parameters to the given Java boolean value. |
DbPreparedStatement |
DbPreparedStatement.setByte(int parameterIndex,
byte x)
Sets the designated parameter to the given Java byte
value. |
DbPreparedStatement |
DbPreparedStatement.setByte(String parameterName,
byte x)
Sets the named parameters to the given Java byte
value. |
DbPreparedStatement |
DbPreparedStatement.setBytes(int[] parameterIndices,
byte x)
Sets the designated parameters to the given Java byte
value. |
DbPreparedStatement |
DbPreparedStatement.setBytes(int[] parameterIndices,
byte[] x)
Sets the designated parameters to the given Java array of bytes. |
DbPreparedStatement |
DbPreparedStatement.setBytes(int parameterIndex,
byte[] x)
Sets the designated parameter to the given Java array of bytes. |
DbPreparedStatement |
DbPreparedStatement.setBytes(String parameterName,
byte[] x)
Sets the named parameters to the given Java array of bytes. |
DbPreparedStatement |
DbPreparedStatement.setCharacterStream(int parameterIndex,
Reader x,
int length)
Sets the designated parameter to the given Reader
object, which is the given number of characters long. |
DbPreparedStatement |
DbPreparedStatement.setCharacterStream(String parameterName,
Reader x,
int length)
Sets the named parameter to the given Reader object,
which is the given number of characters long. |
DbPreparedStatement |
DbPreparedStatement.setClob(int parameterIndex,
Clob x)
Sets the designated parameter to the given Clob
object. |
DbPreparedStatement |
DbPreparedStatement.setClob(String parameterName,
Clob x)
Sets the named parameter to the given Clob object. |
DbPreparedStatement |
DbPreparedStatement.setDate(int parameterIndex,
Date x)
Sets the designated parameter to the given java.sql.Date value. |
DbPreparedStatement |
DbPreparedStatement.setDate(int parameterIndex,
Date x,
Calendar cal)
Sets the designated parameter to the given java.sql.Date value, using the given
Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setDate(String parameterName,
Date x)
Sets the named parameters to the given java.sql.Date
value. |
DbPreparedStatement |
DbPreparedStatement.setDate(String parameterName,
Date x,
Calendar cal)
Sets the named parameters to the given java.sql.Date
value, using the given Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setDates(int[] parameterIndices,
Date x)
Sets the designated parameters to the given java.sql.Date value. |
DbPreparedStatement |
DbPreparedStatement.setDates(int[] parameterIndices,
Date x,
Calendar cal)
Sets the designated parameters to the given java.sql.Date value, using the given
Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setDouble(int parameterIndex,
double x)
Sets the designated parameter to the given Java double
value. |
DbPreparedStatement |
DbPreparedStatement.setDouble(String parameterName,
double x)
Sets the named parameters to the given Java double
value. |
DbPreparedStatement |
DbPreparedStatement.setDoubles(int[] parameterIndices,
double x)
Sets the designated parameters to the given Java double value. |
DbPreparedStatement |
DbPreparedStatement.setFloat(int parameterIndex,
float x)
Sets the designated parameter to the given Java float
value. |
DbPreparedStatement |
DbPreparedStatement.setFloat(String parameterName,
float x)
Sets the named parameters to the given Java float
value. |
DbPreparedStatement |
DbPreparedStatement.setFloats(int[] parameterIndices,
float x)
Sets the designated parameters to the given Java float
value. |
DbPreparedStatement |
DbPreparedStatement.setInt(int parameterIndex,
int x)
Sets the designated parameter to the given Java int
value. |
DbPreparedStatement |
DbPreparedStatement.setInt(String parameterName,
int x)
Sets the named parameter to the given Java int value. |
DbPreparedStatement |
DbPreparedStatement.setInts(int[] parameterIndices,
int x)
Sets the designated parameters to the given Java int
value. |
DbPreparedStatement |
DbPreparedStatement.setLong(int parameterIndex,
long x)
Sets the designated parameter to the given Java long
value. |
DbPreparedStatement |
DbPreparedStatement.setLong(String parameterName,
long x)
Sets the named parameters to the given Java long
value. |
DbPreparedStatement |
DbPreparedStatement.setLongs(int[] parameterIndices,
long x)
Sets the designated parameters to the given Java long
value. |
DbPreparedStatement |
DbPreparedStatement.setNull(int parameterIndex,
int sqlType)
Sets the designated parameter to SQL NULL. |
DbPreparedStatement |
DbPreparedStatement.setNull(int parameterIndex,
int sqlType,
String typeName)
Sets the designated parameter to SQL NULL. |
DbPreparedStatement |
DbPreparedStatement.setNull(String parameterName,
int sqlType)
Sets the named parameters to SQL NULL. |
DbPreparedStatement |
DbPreparedStatement.setNull(String parameterName,
int sqlType,
String typeName)
Sets the named parameters to SQL NULL. |
DbPreparedStatement |
DbPreparedStatement.setNulls(int[] parameterIndices,
int sqlType)
Sets the designated parameters to SQL NULL. |
DbPreparedStatement |
DbPreparedStatement.setNulls(int[] parameterIndices,
int sqlType,
String typeName)
Sets the designated parameters to SQL NULL. |
DbPreparedStatement |
DbPreparedStatement.setObject(int parameterIndex,
Object x)
Sets the value of the designated parameter using the given object. |
DbPreparedStatement |
DbPreparedStatement.setObject(int parameterIndex,
Object x,
int targetSqlType)
Sets the value of the designated parameter with the given object. |
DbPreparedStatement |
DbPreparedStatement.setObject(int parameterIndex,
Object x,
int targetSqlType,
int scale)
Sets the value of the designated parameter with the given object. |
DbPreparedStatement |
DbPreparedStatement.setObject(String parameterName,
Object x)
Sets the value of the named parameters using the given object. |
DbPreparedStatement |
DbPreparedStatement.setObject(String parameterName,
Object x,
int targetSqlType)
Sets the value of the named parameters with the given object. |
DbPreparedStatement |
DbPreparedStatement.setObject(String parameterName,
Object x,
int targetSqlType,
int scale)
Sets the value of the named parameters with the given object. |
DbPreparedStatement |
DbPreparedStatement.setObjects(int[] parameterIndices,
Object x)
Sets the value of the designated parameters using the given object. |
DbPreparedStatement |
DbPreparedStatement.setObjects(int[] parameterIndices,
Object x,
int targetSqlType)
Sets the value of the designated parameters with the given object. |
DbPreparedStatement |
DbPreparedStatement.setObjects(int[] parameterIndices,
Object x,
int targetSqlType,
int scale)
Sets the value of the designated parameters with the given object. |
DbPreparedStatement |
DbPreparedStatement.setRef(int parameterIndex,
Ref x)
Sets the designated parameter to the given REF(<structured-type>) value. |
DbPreparedStatement |
DbPreparedStatement.setRef(String parameterName,
Ref x)
Sets the named parameter to the given REF(<structured-type>) value. |
DbPreparedStatement |
DbPreparedStatement.setShort(int parameterIndex,
short x)
Sets the designated parameter to the given Java short
value. |
DbPreparedStatement |
DbPreparedStatement.setShort(String parameterName,
short x)
Sets the named parameters to the given Java short
value. |
DbPreparedStatement |
DbPreparedStatement.setShorts(int[] parameterIndices,
short x)
Sets the designated parameters to the given Java short
value. |
DbPreparedStatement |
DbPreparedStatement.setString(int parameterIndex,
String x)
Sets the designated parameter to the given Java String
value. |
DbPreparedStatement |
DbPreparedStatement.setString(String parameterName,
String x)
Sets the named parameters to the given Java String
value. |
DbPreparedStatement |
DbPreparedStatement.setStrings(int[] parameterIndices,
String x)
Sets the designated parameters to the given Java String value. |
DbPreparedStatement |
DbPreparedStatement.setTime(int parameterIndex,
Time x)
Sets the designated parameter to the given java.sql.Time value. |
DbPreparedStatement |
DbPreparedStatement.setTime(int parameterIndex,
Time x,
Calendar cal)
Sets the designated parameter to the given java.sql.Time value, using the given
Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setTime(String parameterName,
Time x)
Sets the named parameters to the given java.sql.Time
value. |
DbPreparedStatement |
DbPreparedStatement.setTime(String parameterName,
Time x,
Calendar cal)
Sets the named parameters to the given java.sql.Time
value, using the given Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setTimes(int[] parameterIndices,
Time x)
Sets the designated parameters to the given java.sql.Time value. |
DbPreparedStatement |
DbPreparedStatement.setTimes(int[] parameterIndices,
Time x,
Calendar cal)
Sets the designated parameters to the given java.sql.Time value, using the given
Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setTimestamp(int parameterIndex,
Timestamp x)
Sets the designated parameter to the given java.sql.Timestamp value. |
DbPreparedStatement |
DbPreparedStatement.setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal)
Sets the designated parameter to the given java.sql.Timestamp value, using the given
Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setTimestamp(String parameterName,
Timestamp x)
Sets the named parameters to the given java.sql.Timestamp value. |
DbPreparedStatement |
DbPreparedStatement.setTimestamp(String parameterName,
Timestamp x,
Calendar cal)
Sets the named parameters to the given java.sql.Timestamp value, using the given
Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setTimestamps(int[] parameterIndices,
Timestamp x)
Sets the designated parameters to the given java.sql.Timestamp value. |
DbPreparedStatement |
DbPreparedStatement.setTimestamps(int[] parameterIndices,
Timestamp x,
Calendar cal)
Sets the designated parameters to the given java.sql.Timestamp value, using the given
Calendar object. |
DbPreparedStatement |
DbPreparedStatement.setURL(int parameterIndex,
URL x)
Sets the designated parameter to the given java.net.URL value. |
DbPreparedStatement |
DbPreparedStatement.setURL(String parameterName,
URL x)
Sets the named parameters to the given java.net.URL
value. |
DbPreparedStatement |
DbPreparedStatement.setURLs(int[] parameterIndices,
URL x)
Sets the designated parameters to the given java.net.URL value. |
| Methods in com.uwyn.rife.database with parameters of type DbPreparedStatement | |
|---|---|
void |
VirtualParameters.callHandler(DbPreparedStatement statement)
Calls the registered VirtualParametersHandler. |
void |
VirtualParametersHandler.handleValues(DbPreparedStatement statement)
To whatever is needed according to the virtual parameters that have been defined in a prepared statement before execution. |
void |
DbPreparedStatementHandler.performQuery(DbPreparedStatement statement)
|
int |
DbPreparedStatementHandler.performUpdate(DbPreparedStatement statement)
|
void |
DbPreparedStatementHandler.setParameters(DbPreparedStatement statement)
|
| Uses of DbPreparedStatement in com.uwyn.rife.database.exceptions |
|---|
| Methods in com.uwyn.rife.database.exceptions that return DbPreparedStatement | |
|---|---|
DbPreparedStatement |
UnsupportedVirtualParameterTypeException.getPreparedStatement()
|
DbPreparedStatement |
ParameterDoesntExistException.getPreparedStatement()
|
DbPreparedStatement |
NoParametrizedQueryException.getPreparedStatement()
|
DbPreparedStatement |
NoParametersException.getPreparedStatement()
|
DbPreparedStatement |
UndefinedVirtualParameterException.getPreparedStatement()
|
| Constructors in com.uwyn.rife.database.exceptions with parameters of type DbPreparedStatement | |
|---|---|
NoParametersException(DbPreparedStatement statement)
|
|
NoParametrizedQueryException(DbPreparedStatement statement)
|
|
ParameterDoesntExistException(DbPreparedStatement statement,
String parameterName)
|
|
UndefinedVirtualParameterException(DbPreparedStatement statement,
int parameterIndex)
|
|
UndefinedVirtualParameterException(DbPreparedStatement statement,
String parameterName)
|
|
UnsupportedVirtualParameterTypeException(DbPreparedStatement statement,
int parameterIndex,
String valueType)
|
|
| Uses of DbPreparedStatement in com.uwyn.rife.database.querymanagers.generic |
|---|
| Methods in com.uwyn.rife.database.querymanagers.generic with parameters of type DbPreparedStatement | |
|---|---|
protected void |
AbstractGenericQueryManager.setManyToOneJoinParameters(DbPreparedStatement statement,
BeanType bean)
|
| Uses of DbPreparedStatement in com.uwyn.rife.database.types |
|---|
| Methods in com.uwyn.rife.database.types with parameters of type DbPreparedStatement | |
|---|---|
void |
SqlConversion.setTypedParameter(DbPreparedStatement statement,
int parameterIndex,
Class targetType,
String name,
Object value,
Constrained constrained)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||