📄 resultset_2_0.java
字号:
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a double value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateDouble(String columnName, double x) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a BigDecimal value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a String value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateString(String columnName, String x) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a byte array value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateBytes(String columnName, byte x[]) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a Date value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateDate(String columnName, java.sql.Date x) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a Time value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateTime(String columnName, java.sql.Time x) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a Timestamp value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateTimestamp(String columnName, java.sql.Timestamp x) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with an ascii stream value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @param length of the stream
* @exception SQLException if a database access error occurs
*/
public void updateAsciiStream(String columnName,
java.io.InputStream x,
int length) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a binary stream value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @param length of the stream
* @exception SQLException if a database access error occurs
*/
public void updateBinaryStream(String columnName,
java.io.InputStream x,
int length) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with a character stream value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @param length of the stream
* @exception SQLException if a database access error occurs
*/
public void updateCharacterStream(String columnName,
java.io.Reader reader,
int length) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with an Object value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @param scale For java.sql.Types.DECIMAL or java.sql.Types.NUMERIC types
* this is the number of digits after the decimal. For all other
* types this value will be ignored.
* @exception SQLException if a database access error occurs
*/
public void updateObject(String columnName, Object x, int scale) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates a column with an Object value.
*
* The <code>updateXXX</code> methods are used to update column values in the
* current row, or the insert row. The <code>updateXXX</code> methods do not
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnName the name of the column
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateObject(String columnName, Object x) throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Inserts the contents of the insert row into the result set and
* the database. Must be on the insert row when this method is called.
*
* @exception SQLException if a database access error occurs,
* if called when not on the insert row, or if not all of non-nullable columns in
* the insert row have been given a value
*/
public void insertRow() throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Updates the underlying database with the new contents of the
* current row. Cannot be called when on the insert row.
*
* @exception SQLException if a database access error occurs or
* if called when on the insert row
*/
public void updateRow() throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Deletes the current row from the result set and the underlying
* database. Cannot be called when on the insert row.
*
* @exception SQLException if a database access error occurs or if
* called when on the insert row.
*/
public void deleteRow() throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Refreshes the current row with its most recent value in
* the database. Cannot be called when on the insert row.
*
* The <code>refreshRow</code> method provides a way for an application to
* explicitly tell the JDBC driver to refetch a row(s) from the
* database. An application may want to call <code>refreshRow</code> when
* caching or prefetching is being done by the JDBC driver to
* fetch the latest value of a row from the database. The JDBC driver
* may actually refresh multiple rows at once if the fetch size is
* greater than one.
*
* All values are refetched subject to the transaction isolation
* level and cursor sensitivity. If <code>refreshRow</code> is called after
* calling <code>updateXXX</code>, but before calling <code>updateRow</code>, then the
* updates made to the row are lost. Calling the method <code>refreshRow</code> frequently
* will likely slow performance.
*
* @exception SQLException if a database access error occurs or if
* called when on the insert row
*/
public void refreshRow() throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Cancels the updates made to a row.
* This method may be called after calling an
* <code>updateXXX</code> method(s) and before calling <code>updateRow</code> to rollback
* the updates made to a row. If no updates have been made or
* <code>updateRow</code> has already been called, then this method has no
* effect.
*
* @exception SQLException if a database access error occurs or if
* called when on the insert row
*
*/
public void cancelRowUpdates() throws SQLException
{
NotImplemented();
}
/**
* JDBC 2.0
*
* Moves the cursor to the insert row. The current cursor position is
* remembered while the cursor is positioned on the insert row.
*
* The insert row is a special row associated with an updatable
* result set. It is essentially a buffer where a new row may
* be constructed by calling the <code>updateXXX</code> methods prior to
* inserting the row into the result set.
*
* Only the <code>updateXXX</code>, <code>getXXX</code>,
* and <code>insertRow</code> methods may be
* called when the cursor is on the insert row. All of the columns in
* a result set must be given a value each time this method is
* called before calling <code>insertRow</code>.
* The method <code>updateXXX</code> must be called before a
* <code>getXXX</code> method can be called on a column value.
*
* @exception SQLException if a database access error occurs
* or the result set is not updatable
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -