void
addRowSetListener(RowSetListener listener)
The listener will be notified whenever an event occurs on this RowSet
object.
void
clearParameters()
Clears all of the current parameter values in this RowSet
object's internal representation of the parameters to be set in this RowSet
object's command when it is executed.
String
getCommand()
Retrieves the SQL query that is the command for this RowSet
object.
int
getConcurrency()
Returns the concurrency for this RowSet
object.
String
getDataSourceName()
Returns the logical name that when supplied to a naming service that uses the Java Naming and Directory Interface (JNDI) API, will retrieve a javax.sql.DataSource
object.
boolean
getEscapeProcessing()
Ascertains whether escape processing is enabled for this RowSet
object.
int
getFetchDirection()
Retrieves this RowSet
object's current setting for the fetch direction.
int
getFetchSize()
Returns the fetch size for this RowSet
object.
int
getMaxFieldSize()
Retrieves the maximum number of bytes that can be used for a column value in this RowSet
object.
int
getMaxRows()
Retrieves the maximum number of rows that this RowSet
object may contain.
Object[]
getParams()
Retrieves an array containing the parameter values (both Objects and primitives) that have been set for this RowSet
object's command and throws an SQLException
object if all parameters have not been set.
String
getPassword()
Returns the password used to create a database connection for this RowSet
object.
int
getQueryTimeout()
Retrieves the maximum number of seconds the driver will wait for a query to execute.
boolean
getShowDeleted()
Retrieves a boolean
indicating whether rows marked for deletion appear in the set of current rows.
int
getTransactionIsolation()
Returns the transaction isolation property for this RowSet
object's connection.
int
getType()
Returns the type of this RowSet
object.
Map<String,Class<?>>
getTypeMap()
Retrieves the type map associated with the Connection
object for this RowSet
object.
String
getUrl()
Retrieves the JDBC URL that this RowSet
object's javax.sql.Reader
object uses to make a connection with a relational database using a JDBC technology-enabled driver.
String
getUsername()
Returns the user name used to create a database connection.
protected void
initParams()
Performs the necessary internal configurations and initializations to allow any JDBC RowSet
implementation to start using the standard facilities provided by a BaseRowSet
instance.
boolean
isReadOnly()
Returns a boolean
indicating whether this RowSet
object is read-only.
protected void
notifyCursorMoved()
Notifies all of the listeners registered with this RowSet
object that its cursor has moved.
protected void
notifyRowChanged()
Notifies all of the listeners registered with this RowSet
object that one of its rows has changed.
protected void
notifyRowSetChanged()
Notifies all of the listeners registered with this RowSet
object that its entire contents have changed.
void
removeRowSetListener(RowSetListener listener)
Removes the designated object from this RowSet
object's list of listeners.
void
setArray(int parameterIndex, Array array)
Sets the designated parameter to an Array
object in the Java programming language.
void
setAsciiStream(int parameterIndex, InputStream x)
Sets the designated parameter in this RowSet
object's command to the given input stream.
void
setAsciiStream(int parameterIndex, InputStream x, int length)
Sets the designated parameter to the given java.io.InputStream
object, which will have the specified number of bytes.
void
setAsciiStream(String parameterName, InputStream x)
Sets the designated parameter to the given input stream.
void
setAsciiStream(String parameterName, InputStream x, int length)
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
void
setBigDecimal(int parameterIndex, BigDecimal x)
Sets the designated parameter to the given java.lang.BigDecimal
value.
void
setBigDecimal(String parameterName, BigDecimal x)
Sets the designated parameter to the given java.math.BigDecimal
value.
void
setBinaryStream(int parameterIndex, InputStream x)
Sets the designated parameter in this RowSet
object's command to the given input stream.
void
setBinaryStream(int parameterIndex, InputStream x, int length)
Sets the designated parameter to the given java.io.InputStream
object, which will have the specified number of bytes.
void
setBinaryStream(String parameterName, InputStream x)
Sets the designated parameter to the given input stream.
void
setBinaryStream(String parameterName, InputStream x, int length)
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
void
setBlob(int parameterIndex, Blob x)
Sets the designated parameter to the given Blob
object in the Java programming language.
void
setBlob(int parameterIndex, InputStream inputStream)
Sets the designated parameter to a InputStream
object.
void
setBlob(int parameterIndex, InputStream inputStream, long length)
Sets the designated parameter to a InputStream
object.
void
setBlob(String parameterName, Blob x)
Sets the designated parameter to the given java.sql.Blob
object.
void
setBlob(String parameterName, InputStream inputStream)
Sets the designated parameter to a InputStream
object.
void
setBlob(String parameterName, InputStream inputStream, long length)
Sets the designated parameter to a InputStream
object.
void
setBoolean(int parameterIndex, boolean x)
Sets the designated parameter to the given boolean
in the Java programming language.
void
setBoolean(String parameterName, boolean x)
Sets the designated parameter to the given Java boolean
value.
void
setByte(int parameterIndex, byte x)
Sets the designated parameter to the given byte
in the Java programming language.
void
setByte(String parameterName, byte x)
Sets the designated parameter to the given Java byte
value.
void
setBytes(int parameterIndex, byte[] x)
Sets the designated parameter to the given array of bytes.
void
setBytes(String parameterName, byte[] x)
Sets the designated parameter to the given Java array of bytes.
void
setCharacterStream(int parameterIndex, Reader reader)
Sets the designated parameter in this RowSet
object's command to the given Reader
object.
void
setCharacterStream(int parameterIndex, Reader reader, int length)
Sets the designated parameter to the given java.io.Reader
object, which will have the specified number of characters.
void
setCharacterStream(String parameterName, Reader reader)
Sets the designated parameter to the given Reader
object.
void
setCharacterStream(String parameterName, Reader reader, int length)
Sets the designated parameter to the given Reader
object, which is the given number of characters long.
void
setClob(int parameterIndex, Clob x)
Sets the designated parameter to the given Clob
object in the Java programming language.
void
setClob(int parameterIndex, Reader reader)
Sets the designated parameter to a Reader
object.
void
setClob(int parameterIndex, Reader reader, long length)
Sets the designated parameter to a Reader
object.
void
setClob(String parameterName, Clob x)
Sets the designated parameter to the given java.sql.Clob
object.
void
setClob(String parameterName, Reader reader)
Sets the designated parameter to a Reader
object.
void
setClob(String parameterName, Reader reader, long length)
Sets the designated parameter to a Reader
object.
void
setCommand(String cmd)
Sets this RowSet
object's command
property to the given String
object and clears the parameters, if any, that were set for the previous command.
void
setConcurrency(int concurrency)
Sets the concurrency for this RowSet
object to the specified concurrency.
void
setDataSourceName(String name)
Sets the DataSource
name property for this RowSet
object to the given logical name and sets this RowSet
object's Url property to null
.
void
setDate(int parameterIndex, Date x)
Sets the designated parameter to the given java.sql.Date
value.
void
setDate(int parameterIndex, Date x, Calendar cal)
Sets the designated parameter to the given java.sql.Date
object.
void
setDate(String parameterName, Date x)
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.
void
setDate(String parameterName, Date x, Calendar cal)
Sets the designated parameter to the given java.sql.Date
value, using the given Calendar
object.
void
setDouble(int parameterIndex, double x)
Sets the designated parameter to the given double
in the Java programming language.
void
setDouble(String parameterName, double x)
Sets the designated parameter to the given Java double
value.
void
setEscapeProcessing(boolean enable)
Sets to the given boolean
whether or not the driver will scan for escape syntax and do escape substitution before sending SQL statements to the database.
void
setFetchDirection(int direction)
Gives the driver a performance hint as to the direction in which the rows in this RowSet
object will be processed.
void
setFetchSize(int rows)
Sets the fetch size for this RowSet
object to the given number of rows.
void
setFloat(int parameterIndex, float x)
Sets the designated parameter to the given float
in the Java programming language.
void
setFloat(String parameterName, float x)
Sets the designated parameter to the given Java float
value.
void
setInt(int parameterIndex, int x)
Sets the designated parameter to an int
in the Java programming language.
void
setInt(String parameterName, int x)
Sets the designated parameter to the given Java int
value.
void
setLong(int parameterIndex, long x)
Sets the designated parameter to the given long
in the Java programming language.
void
setLong(String parameterName, long x)
Sets the designated parameter to the given Java long
value.
void
setMaxFieldSize(int max)
Sets the maximum number of bytes that can be used for a column value in this RowSet
object to the given number.
void
setMaxRows(int max)
Sets the maximum number of rows that this RowSet
object may contain to the given number.
void
setNCharacterStream(int parameterIndex, Reader value)
Sets the designated parameter in this RowSet
object's command to a Reader
object.
void
setNCharacterStream(int parameterIndex, Reader value, long length)
Sets the designated parameter to a Reader
object.
void
setNCharacterStream(String parameterName, Reader value)
Sets the designated parameter to a Reader
object.
void
setNCharacterStream(String parameterName, Reader value, long length)
Sets the designated parameter to a Reader
object.
void
setNClob(int parameterIndex, NClob value)
Sets the designated parameter to a java.sql.NClob
object.
void
setNClob(int parameterIndex, Reader reader)
Sets the designated parameter to a Reader
object.
void
setNClob(int parameterIndex, Reader reader, long length)
Sets the designated parameter to a Reader
object.
void
setNClob(String parameterName, NClob value)
Sets the designated parameter to a java.sql.NClob
object.
void
setNClob(String parameterName, Reader reader)
Sets the designated parameter to a Reader
object.
void
setNClob(String parameterName, Reader reader, long length)
Sets the designated parameter to a Reader
object.
void
setNString(int parameterIndex, String value)
Sets the designated paramter to the given String
object.
void
setNString(String parameterName, String value)
Sets the designated paramter to the given String
object.
void
setNull(int parameterIndex, int sqlType)
Sets the designated parameter to SQL NULL
.
void
setNull(int parameterIndex, int sqlType, String typeName)
Sets the designated parameter to SQL NULL
.
void
setNull(String parameterName, int sqlType)
Sets the designated parameter to SQL NULL
.
void
setNull(String parameterName, int sqlType, String typeName)
Sets the designated parameter to SQL NULL
.
void
setObject(int parameterIndex, Object x)
Sets the designated parameter to an Object
in the Java programming language.
void
setObject(int parameterIndex, Object x, int targetSqlType)
Sets the value of the designated parameter with the given Object
value.
void
setObject(int parameterIndex, Object x, int targetSqlType, int scale)
Sets the designated parameter to an Object
in the Java programming language.
void
setObject(String parameterName, Object x)
Sets the value of the designated parameter with the given object.
void
setObject(String parameterName, Object x, int targetSqlType)
Sets the value of the designated parameter with the given object.
void
setObject(String parameterName, Object x, int targetSqlType, int scale)
Sets the value of the designated parameter with the given object.
void
setPassword(String pass)
Sets the password used to create a database connection for this RowSet
object to the given String
object.
void
setQueryTimeout(int seconds)
Sets to the given number the maximum number of seconds the driver will wait for a query to execute.
void
setReadOnly(boolean value)
Sets this RowSet
object's readOnly property to the given boolean
.
void
setRef(int parameterIndex, Ref ref)
Sets the designated parameter to the given Ref
object in the Java programming language.
void
setRowId(int parameterIndex, RowId x)
Sets the designated parameter to the given java.sql.RowId
object.
void
setRowId(String parameterName, RowId x)
Sets the designated parameter to the given java.sql.RowId
object.
void
setShort(int parameterIndex, short x)
Sets the designated parameter to the given short
in the Java programming language.
void
setShort(String parameterName, short x)
Sets the designated parameter to the given Java short
value.
void
setShowDeleted(boolean value)
Sets the property showDeleted
to the given boolean
value, which determines whether rows marked for deletion appear in the set of current rows.
void
setSQLXML(int parameterIndex, SQLXML xmlObject)
Sets the designated parameter to the given java.sql.SQLXML
object.
void
setSQLXML(String parameterName, SQLXML xmlObject)
Sets the designated parameter to the given java.sql.SQLXML
object.
void
setString(int parameterIndex, String x)
Sets the designated parameter to the given String
value.
void
setString(String parameterName, String x)
Sets the designated parameter to the given Java String
value.
void
setTime(int parameterIndex, Time x)
Sets the designated parameter to the given java.sql.Time
value.
void
setTime(int parameterIndex, Time x, Calendar cal)
Sets the designated parameter to the given java.sql.Time
object.
void
setTime(String parameterName, Time x)
Sets the designated parameter to the given java.sql.Time
value.
void
setTime(String parameterName, Time x, Calendar cal)
Sets the designated parameter to the given java.sql.Time
value, using the given Calendar
object.
void
setTimestamp(int parameterIndex, Timestamp x)
Sets the designated parameter to the given java.sql.Timestamp
value.
void
setTimestamp(int parameterIndex, Timestamp x, Calendar cal)
Sets the designated parameter to the given java.sql.Timestamp
object.
void
setTimestamp(String parameterName, Timestamp x)
Sets the designated parameter to the given java.sql.Timestamp
value.
void
setTimestamp(String parameterName, Timestamp x, Calendar cal)
Sets the designated parameter to the given java.sql.Timestamp
value, using the given Calendar
object.
void
setTransactionIsolation(int level)
Sets the transaction isolation property for this JDBC RowSet
object to the given constant.
void
setType(int type)
Sets the type for this RowSet
object to the specified type.
void
setTypeMap(Map<String,Class<?>> map)
Installs the given java.util.Map
object as the type map associated with the Connection
object for this RowSet
object.
void
setUnicodeStream(int parameterIndex, InputStream x, int length)
Deprecated.
getCharacterStream should be used in its place
void
setURL(int parameterIndex, URL x)
Sets the designated parameter to the given java.net.URL
value.
void
setUrl(String url)
Sets the Url property for this RowSet
object to the given String
object and sets the dataSource name property to null
.
void
setUsername(String name)
Sets the username property for this RowSet
object to the given user name.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4