📄 jdbcresultset.java
字号:
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateNull(int column) throws SQLException {
if (Trace.TRACE) {
Trace.trace(column);
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateBoolean(int column, boolean x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateByte(int column, byte x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateShort(int column, short x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateInt(int column, int x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateLong(int column, long x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateFloat(int column, float x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateDouble(int column, double x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateBigDecimal(int column,
BigDecimal x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateString(int column, String x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateBytes(int column, byte[] x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateDate(int column, java.sql.Date x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateTime(int column, Time x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateTimestamp(int column, Timestamp x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
* @param length
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateAsciiStream(int column, InputStream x,
int length) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
* @param length
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateBinaryStream(int column, InputStream x,
int length) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
* @param length
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateCharacterStream(int column, Reader x,
int length) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
* @param scale
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateObject(int column, Object x,
int scale) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param column
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateObject(int column, Object x) throws SQLException {
if (Trace.TRACE) {
Trace.trace();
}
throw Trace.error(Trace.FUNCTION_NOT_SUPPORTED);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param columnName
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateNull(String columnName) throws SQLException {
updateNull(findColumn(columnName));
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param columnName
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateBoolean(String columnName,
boolean x) throws SQLException {
updateBoolean(findColumn(columnName), x);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param columnName
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateByte(String columnName, byte x) throws SQLException {
updateByte(findColumn(columnName), x);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param columnName
* @param x
*
* @throws SQLException
*/
//#ifdef JAVA2
public void updateShort(String columnName, short x) throws SQLException {
updateShort(findColumn(columnName), x);
}
//#endif JAVA2
/**
* Method declaration
*
*
* @param columnName
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -