?? tinysqlresultset.java
字號:
* update the underlying database; instead the <code>updateRow</code> or <code>insertRow</code>
* methods are called to update the database.
*
* @param columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateFloat(int columnIndex, float x) throws SQLException {
throw new SQLException("tinySQL does not support updateFloat.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateDouble(int columnIndex, double x) throws SQLException {
throw new SQLException("tinySQL does not support updateDouble.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
throw new SQLException("tinySQL does not support updateBigDecimal.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateString(int columnIndex, String x) throws SQLException {
throw new SQLException("tinySQL does not support updateString.");
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateBytes(int columnIndex, byte x[]) throws SQLException {
throw new SQLException("tinySQL does not support updateBytes.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateDate(int columnIndex, java.sql.Date x) throws SQLException {
throw new SQLException("tinySQL does not support updateDate.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateTime(int columnIndex, java.sql.Time x) throws SQLException {
throw new SQLException("tinySQL does not support updateTime.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateTimestamp(int columnIndex, java.sql.Timestamp x)
throws SQLException {
throw new SQLException("tinySQL does not support updateTimestamp.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @param length the length of the stream
* @exception SQLException if a database access error occurs
*/
public void updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length) throws SQLException {
throw new SQLException("tinySQL does not support updateAsciiStream.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @param length the length of the stream
* @exception SQLException if a database access error occurs
*/
public void updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length) throws SQLException {
throw new SQLException("tinySQL does not support updateBinaryStream.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @param length the length of the stream
* @exception SQLException if a database access error occurs
*/
public void updateCharacterStream(int columnIndex,
java.io.Reader x,
int length) throws SQLException {
throw new SQLException("tinySQL does not support updateCharacterStream.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @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(int columnIndex, Object x, int scale)
throws SQLException {
throw new SQLException("tinySQL does not support updateObject.");
}
/**
* 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 columnIndex the first column is 1, the second is 2, ...
* @param x the new column value
* @exception SQLException if a database access error occurs
*/
public void updateObject(int columnIndex, Object x) throws SQLException {
throw new SQLException("tinySQL does not support updateObject.");
}
/**
* JDBC 2.0
*
* Updates a column with a null 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
* @exception SQLException if a database access error occurs
*/
public void updateNull(String columnName) throws SQLException {
throw new SQLException("tinySQL does not support updateNull.");
}
/**
* JDBC 2.0
*
* Updates a column with a boolean 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 updateBoolean(String columnName, boolean x) throws SQLException {
throw new SQLException("tinySQL does not support updateBoolean.");
}
/**
* JDBC 2.0
*
* Updates a column with a byte 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 updateByte(String columnName, byte x) throws SQLException {
throw new SQLException("tinySQL does not support updateByte.");
}
/**
* JDBC 2.0
*
* Updates a column with a short 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 updateShort(String columnName, short x) throws SQLException {
throw new SQLException("tinySQL does not support updateShort.");
}
/**
* JDBC 2.0
*
* Updates a column with an integer 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 updateInt(String columnName, int x) throws SQLException {
throw new SQLException("tinySQL does not support updateInt.");
}
/**
* JDBC 2.0
*
* Updates a column with a long 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 updateLong(String columnName, long x) throws SQLException {
throw new SQLException("tinySQL does not support updateLong.");
}
/**
* JDBC 2.0
*
* Updates a column with a float 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 updateFloat(String columnName, float x) throws SQLException {
throw new SQLException("tinySQL does not support updateFloat.");
}
/**
* 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 {
throw new SQLException("tinySQL does not support updateDouble.");
}
/**
* 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 {
throw new SQLException("tinySQL does not support updateDecimal.");
}
/**
* 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 SQLExcep
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -