class DuckDB::Appender
def append_int32(value)
.end_row
.append_int32(20)
.append_int32(1)
appender
appender = con.appender('users')
con.query('CREATE TABLE users (id INTEGER, age INTEGER)')
con = db.connect
db = DuckDB::Database.open
require 'duckdb'
Appends an int32(INTEGER) value to the current row in the appender.
appender.append_int32(val) -> self
call-seq:
def append_int32(value) return self if _append_int32(value) raise_appender_error('failed to append_int32') end