类 SqlSingleResult
- java.lang.Object
-
- com.mysql.cj.xdevapi.AbstractDataResult<Row>
-
- com.mysql.cj.xdevapi.RowResultImpl
-
- com.mysql.cj.xdevapi.SqlSingleResult
-
- 所有已实现的接口:
ResultStreamer,QueryResult,FetchResult<Row>,InsertResult,Result,RowResult,SqlResult,Iterable<Row>,Iterator<Row>
public class SqlSingleResult extends RowResultImpl implements SqlResult
SqlResultrepresenting a single result set. Implemented as a thin layer overRowResultImpl.
-
-
构造器概要
构造器 构造器 说明 SqlSingleResult(ColumnDefinition metadata, TimeZone defaultTimeZone, RowList rows, java.util.function.Supplier<ProtocolEntity> completer, PropertySet pset)Constructor.
-
方法概要
-
从类继承的方法 com.mysql.cj.xdevapi.RowResultImpl
getColumnCount, getColumnNames, getColumns
-
从类继承的方法 com.mysql.cj.xdevapi.AbstractDataResult
count, fetchAll, finishStreaming, getAffectedItemsCount, getStatementExecuteOk, getWarnings, getWarningsCount, hasNext, next
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 java.lang.Iterable
forEach, spliterator
-
从接口继承的方法 java.util.Iterator
forEachRemaining, hasNext, next, remove
-
从接口继承的方法 com.mysql.cj.xdevapi.Result
getAffectedItemsCount, getWarnings, getWarningsCount
-
从接口继承的方法 com.mysql.cj.xdevapi.RowResult
getColumnCount, getColumnNames, getColumns
-
从接口继承的方法 com.mysql.cj.xdevapi.SqlResult
getAutoIncrementValue, nextResult
-
-
-
-
构造器详细资料
-
SqlSingleResult
public SqlSingleResult(ColumnDefinition metadata, TimeZone defaultTimeZone, RowList rows, java.util.function.Supplier<ProtocolEntity> completer, PropertySet pset)
Constructor.- 参数:
metadata-ColumnDefinitionobject to use for new rows.defaultTimeZone-TimeZoneobject representing the default time zonerows-RowListprovided by c/J corecompleter- supplier for completion taskpset-PropertySet
-
-