Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
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
}
Click to show internal directories.
Click to hide internal directories.