public class TSDBResultSetRowData extends Object
| Constructor and Description |
|---|
TSDBResultSetRowData(int colSize) |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
getBoolean(int col,
int nativeType) |
double |
getDouble(int col,
int nativeType) |
float |
getFloat(int col,
int nativeType) |
int |
getInt(int col,
int nativeType) |
long |
getLong(int col,
int nativeType) |
Object |
getObject(int col) |
String |
getString(int col,
int nativeType) |
Timestamp |
getTimestamp(int col,
int nativeType) |
void |
setBoolean(int col,
boolean value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setBooleanValue(int col,
boolean value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setByte(int col,
byte value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setByteArray(int col,
byte[] value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setByteArrayValue(int colIndex,
byte[] value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setByteValue(int colIndex,
byte value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setDouble(int col,
double value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setDoubleValue(int colIndex,
double value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setFloat(int col,
float value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setFloatValue(int colIndex,
float value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setInt(int col,
int value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setIntValue(int colIndex,
int value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setLong(int col,
long value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setLongValue(int colIndex,
long value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setShort(int col,
short value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setShortValue(int colIndex,
short value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setString(int col,
String value)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setStringValue(int colIndex,
String value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
void |
setTimestamp(int col,
long ts)
this implementation is used for TDengine old version
|
void |
setTimestamp(int col,
long ts,
int precision)
!!! this method is invoked by JNI method and the index start from 0 in C implementations
|
void |
setTimestampValue(int colIndex,
long value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use an index start from 1 in JDBC api
|
boolean |
wasNull(int col) |
public void clear()
public boolean wasNull(int col)
public void setBooleanValue(int col,
boolean value)
public void setBoolean(int col,
boolean value)
public boolean getBoolean(int col,
int nativeType)
throws SQLException
SQLExceptionpublic void setByteValue(int colIndex,
byte value)
public void setByte(int col,
byte value)
public void setShortValue(int colIndex,
short value)
public void setShort(int col,
short value)
public void setIntValue(int colIndex,
int value)
public void setInt(int col,
int value)
public int getInt(int col,
int nativeType)
throws SQLException
SQLExceptionpublic void setLongValue(int colIndex,
long value)
public void setLong(int col,
long value)
public long getLong(int col,
int nativeType)
throws SQLException
SQLExceptionpublic void setFloatValue(int colIndex,
float value)
public void setFloat(int col,
float value)
public float getFloat(int col,
int nativeType)
public void setDoubleValue(int colIndex,
double value)
public void setDouble(int col,
double value)
public double getDouble(int col,
int nativeType)
public void setStringValue(int colIndex,
String value)
public void setString(int col,
String value)
public void setByteArrayValue(int colIndex,
byte[] value)
public void setByteArray(int col,
byte[] value)
public String getString(int col, int nativeType)
public void setTimestampValue(int colIndex,
long value)
public void setTimestamp(int col,
long ts,
int precision)
precision - 0 : ms, 1 : us, 2 : nspublic void setTimestamp(int col,
long ts)
public Timestamp getTimestamp(int col, int nativeType)
public Object getObject(int col)
Copyright © 2021. All rights reserved.