package result
import "github.com/ydb-platform/ydb-go-sdk/v3/table/result"
Index ¶
Types ¶
type Result ¶
type Result interface { // ResultSetCount returns number of result sets. // Note that it does not work if r is the result of streaming operation. ResultSetCount() int // contains filtered or unexported methods }
type Set ¶
type Set interface { // ColumnCount returns number of columns in the current result set. ColumnCount() int // Columns allows to iterate over all columns of the current result set. Columns(it func(options.Column)) // RowCount returns number of rows in the result set. RowCount() int // ItemCount returns number of items in the current row. ItemCount() int // Truncated returns true if current result set has been truncated by server Truncated() bool }
type StreamResult ¶
type StreamResult interface {
// contains filtered or unexported methods
}
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
table/result/indexed | |
table/result/named |
- Version
- v3.25.0-rc0
- Published
- May 5, 2022
- Platform
- js/wasm
- Imports
- 5 packages
- Last checked
- 32 minutes ago –
Tools for package owners.