class DuckDB::ResultSet

Defined in:

duckdb/result_set.cr

Constructors

Instance Method Summary

Macro Summary

Constructor Detail

def self.new(statement : Statement) #

[View source]
def self.new(statement : UnpreparedStatement) #

[View source]

Instance Method Detail

def column_count : Int32 #
Description copied from class DB::ResultSet

Returns the number of columns in the result


[View source]
def column_name(index : Int32) : String #
Description copied from class DB::ResultSet

Returns the name of the column in index 0-based position.


[View source]
def move_next : Bool #
Description copied from class DB::ResultSet

Move the next row in the result. Return false if no more rows are available. See #each


[View source]
def next_column_index : Int32 #
Description copied from class DB::ResultSet

Returns the column index that corresponds to the next #read.

If the last column of the current row has been read, it must return #column_count.


[View source]
def read(t : Time.class) : Time #

[View source]
def read(t : (Time | ::Nil).class) : Time | Nil #

[View source]
def read #
Description copied from class DB::ResultSet

Reads the next column value


[View source]
def to_unsafe #

[View source]

Macro Detail

macro duckdb_set_string #

[View source]
macro duckdb_value(kind) #

[View source]