接口的使用
com.mysql.cj.result.Row
-
使用Row的程序包 程序包 说明 com.mysql.cj com.mysql.cj.jdbc com.mysql.cj.protocol com.mysql.cj.protocol.a.result com.mysql.cj.protocol.result com.mysql.cj.protocol.x com.mysql.cj.result com.mysql.cj.xdevapi Java classes for X DevAPI support. -
-
com.mysql.cj中Row的使用
类型变量类型为Row的com.mysql.cj中的方法参数 修饰符和类型 方法 说明 <M extends Message,R,RES>
RESMysqlxSession. query(M message, java.util.function.Predicate<Row> rowFilter, java.util.function.Function<Row,R> rowMapper, java.util.stream.Collector<R,?,RES> collector)<M extends Message,R,RES>
RESMysqlxSession. query(M message, java.util.function.Predicate<Row> rowFilter, java.util.function.Function<Row,R> rowMapper, java.util.stream.Collector<R,?,RES> collector)default <M extends Message,R,RES>
RESSession. query(M message, java.util.function.Predicate<Row> rowFilter, java.util.function.Function<Row,R> rowMapper, java.util.stream.Collector<R,?,RES> collector)Synchronously query database with applying rows filtering and mapping.default <M extends Message,R,RES>
RESSession. query(M message, java.util.function.Predicate<Row> rowFilter, java.util.function.Function<Row,R> rowMapper, java.util.stream.Collector<R,?,RES> collector)Synchronously query database with applying rows filtering and mapping. -
com.mysql.cj.jdbc中Row的使用
类型参数类型为Row的com.mysql.cj.jdbc中的字段 修饰符和类型 字段 说明 protected ArrayList<Row>StatementImpl. batchedGeneratedKeys返回变量类型为Row的类型的com.mysql.cj.jdbc中的方法 修饰符和类型 方法 说明 List<Row>DatabaseMetaData. extractForeignKeyForTable(ArrayList<Row> rows, ResultSet rs, String dbName)Extracts foreign key info for one table.类型变量类型为Row的com.mysql.cj.jdbc中的方法参数 修饰符和类型 方法 说明 protected voidDatabaseMetaData. convertToJdbcFunctionList(ResultSet proceduresRs, List<DatabaseMetaData.ComparableWrapper<String,Row>> procedureRows, Field[] fields)protected voidDatabaseMetaData. convertToJdbcProcedureList(boolean fromSelect, ResultSet proceduresRs, List<DatabaseMetaData.ComparableWrapper<String,Row>> procedureRows)List<Row>DatabaseMetaData. extractForeignKeyForTable(ArrayList<Row> rows, ResultSet rs, String dbName)Extracts foreign key info for one table. -
com.mysql.cj.protocol中Row的使用
com.mysql.cj.protocol中Row的子接口 修饰符和类型 接口 说明 interfaceResultsetRowClasses that implement this interface represent one row of data from the MySQL server that might be stored in different ways depending on whether the result set was streaming (so they wrap a reusable packet), or whether the result set was cached or via a server-side cursor (so they represent a byte[][]).参数类型为Row的com.mysql.cj.protocol中的方法 修饰符和类型 方法 说明 default voidResultsetRows. addRow(Row row)Adds a row. -
com.mysql.cj.protocol.a.result中Row的使用
实现Row的com.mysql.cj.protocol.a.result中的类 修饰符和类型 类 说明 classAbstractBufferRowA ResultSetRow implementation that holds one row packet (which is re-used by the driver, and thus saves memory allocations), and tries when possible to avoid allocations to break out the results as individual byte[]s.classBinaryBufferRowA BufferRow implementation that holds one row packet from a server-side prepared statement (which is re-used by the driver, and thus saves memory allocations), and tries when possible to avoid allocations to break out the results as individual byte[]s.classByteArrayRowA RowHolder implementation that is for cached results (a-la mysql_store_result()).classTextBufferRowA ResultSetRow implementation that holds one row packet (which is re-used by the driver, and thus saves memory allocations), and tries when possible to avoid allocations to break out the results as individual byte[]s.声明为Row的com.mysql.cj.protocol.a.result中的字段 修饰符和类型 字段 说明 protected RowNativeResultset. thisRowPointer to current row data返回Row的com.mysql.cj.protocol.a.result中的方法 修饰符和类型 方法 说明 RowResultsetRowsStatic. get(int atIndex)RowResultsetRowsCursor. next()RowResultsetRowsStatic. next()RowResultsetRowsStreaming. next()RowBinaryBufferRow. setMetadata(ColumnDefinition f)RowTextBufferRow. setMetadata(ColumnDefinition f)参数类型为Row的com.mysql.cj.protocol.a.result中的方法 修饰符和类型 方法 说明 voidResultsetRowsCursor. addRow(Row row)voidResultsetRowsStatic. addRow(Row row)类型变量类型为Row的com.mysql.cj.protocol.a.result中的构造器参数 构造器 说明 ResultsetRowsStatic(List<? extends Row> rows, ColumnDefinition columnDefinition)Creates a new RowDataStatic object. -
com.mysql.cj.protocol.result中Row的使用
实现Row的com.mysql.cj.protocol.result中的类 修饰符和类型 类 说明 classAbstractResultsetRow返回Row的com.mysql.cj.protocol.result中的方法 修饰符和类型 方法 说明 RowAbstractResultsetRow. setMetadata(ColumnDefinition f) -
com.mysql.cj.protocol.x中Row的使用
实现Row的com.mysql.cj.protocol.x中的类 修饰符和类型 类 说明 classXProtocolRowProtocolEntity representing an X Protocol result row.返回Row的com.mysql.cj.protocol.x中的方法 修饰符和类型 方法 说明 RowXProtocolRowInputStream. next()RowXProtocolRowInputStream. readRow()RowXProtocolRow. setMetadata(ColumnDefinition columnDefinition)参数类型为Row的com.mysql.cj.protocol.x中的构造器 构造器 说明 XProtocolRowInputStream(ColumnDefinition metadata, Row row, XProtocol protocol, java.util.function.Consumer<Notice> noticeConsumer) -
com.mysql.cj.result中Row的使用
返回Row的com.mysql.cj.result中的方法 修饰符和类型 方法 说明 RowBufferedRowList. get(int n)default RowRowList. get(int n)Optionally retrieve Row at index n.RowBufferedRowList. next()RowBufferedRowList. previous()default RowRowList. previous()Optionally iterate backwards on the list.default RowRow. setMetadata(ColumnDefinition columnDefinition)Set metadata to enable getValue functionality.类型变量类型为Row的com.mysql.cj.result中的构造器参数 构造器 说明 BufferedRowList(Iterator<Row> ris)Create a new instance by filling the internal buffer by draining the row stream.BufferedRowList(List<Row> rowList) -
com.mysql.cj.xdevapi中Row的使用
参数类型为Row的com.mysql.cj.xdevapi中的构造器 构造器 说明 RowImpl(Row row, ColumnDefinition metadata, TimeZone defaultTimeZone, PropertySet pset)Constructor.
-