public class TSDBResultSetRowData extends Object
| 构造器和说明 |
|---|
TSDBResultSetRowData(int colSize) |
| 限定符和类型 | 方法和说明 |
|---|---|
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)
!!!
|
void |
setBooleanValue(int col,
boolean value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setByte(int col,
byte value)
!!!
|
void |
setByteArray(int col,
byte[] value)
!!!
|
void |
setByteArrayValue(int colIndex,
byte[] value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setByteValue(int colIndex,
byte value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setDouble(int col,
double value)
!!!
|
void |
setDoubleValue(int colIndex,
double value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setFloat(int col,
float value)
!!!
|
void |
setFloatValue(int colIndex,
float value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setInt(int col,
int value)
!!!
|
void |
setIntValue(int colIndex,
int value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setLong(int col,
long value)
!!!
|
void |
setLongValue(int colIndex,
long value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setShort(int col,
short value)
!!!
|
void |
setShortValue(int colIndex,
short value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a index start from 1 in JDBC api
|
void |
setString(int col,
String value)
!!!
|
void |
setStringValue(int colIndex,
String value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a 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)
!!!
|
void |
setTimestampValue(int colIndex,
long value)
$$$ this method is invoked by databaseMetaDataResultSet and so on which use a 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.