暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

华为GaussDB T java.sql.ResultSet

墨天轮 2019-10-12
499

java.sql.ResultSet

java.sql.ResultSet是执行结果集接口,本节将介绍对此接口的支持情况。

该接口中的方法都不是线程安全的。

表1 对java.sql.ResultSet的支持情况

返回值类型

方法名

Object

getObject(String)

Object

getObject(int)

boolean

getBoolean(int)

boolean

getBoolean(String)

byte

getByte(String)

byte

getByte(int)

short

getShort(int)

short

getShort(String)

int

getInt(int)

int

getInt(String)

long

getLong(String)

long

getLong(int)

float

getFloat(String)

float

getFloat(int)

double

getDouble(String)

double

getDouble(int)

byte[]

getBytes(int)

byte[]

getBytes(String)

boolean

next()

void

close()

int

getType()

Date

getDate(String)

Date

getDate(int, Calendar)

Date

getDate(String, Calendar)

Date

getDate(int)

boolean

isClosed()

String

getString(String)

String

getString(int)

Time

getTime(int)

Time

getTime(String, Calendar)

Time

getTime(String)

Time

getTime(int, Calendar)

Timestamp

getTimestamp(String, Calendar)

Timestamp

getTimestamp(int, Calendar)

Timestamp

getTimestamp(String)

Timestamp

getTimestamp(int)

ResultSetMetaData

getMetaData()

void

clearWarnings()

int

getFetchDirection()

int

getFetchSize()

SQLWarning

getWarnings()

void

setFetchSize(int)

void

afterLast()

void

beforeFirst()

int

findColumn(String)

BigDecimal

getBigDecimal(String)

BigDecimal

getBigDecimal(int)

InputStream

getBinaryStream(String)

InputStream

getBinaryStream(int)

Blob

getBlob(String)

Blob

getBlob(int)

Reader

getCharacterStream(int)

Reader

getCharacterStream(String)

Clob

getClob(String)

Clob

getClob(int)

int

getConcurrency()

int

getHoldability()

int

getRow()

Statement

getStatement()

boolean

isAfterLast()

boolean

isBeforeFirst()

boolean

isFirst()

boolean

isLast()

boolean

wasNull()

void

setFetchDirection(int)

说明:
  • 一个Statement不能有多个处于“开”状态的ResultSet。
  • 用于遍历结果集(ResultSet)的游标(Cursor)在被提交后不能保持“开”的状态。
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论