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

result.go set.go

Directories

PathSynopsis
table/result/indexed
table/result/named
Version
v3.26.4
Published
May 26, 2022
Platform
js/wasm
Imports
5 packages
Last checked
8 minutes ago

Tools for package owners.