Scroll to navigation

SNOBOL4SQLITE3(3) CSNOBOL4 Manual SNOBOL4SQLITE3(3)

NAME

snobol4sqlite3 - SQLITE3 interface for SNOBOL4

SYNOPSYS

-INCLUDE 'sqlite3.sno'

DESCRIPTION

opens a database and returns a database handle or failure.
closes database and returns empty string or failure.
Returns an SQLITE3 error string or failure if the handle is invalid.
Returns an integer or failure if the handle is invalid.
Parses an SQL statement and optionally binds positional parameters to it. Call SQLITE3_ROW_ARRAY() or SQLITE3_ROW_TABLE() to fetch a row of results once all parameters have been bound. Returns a statement handle or failure.
Binds value at (one-based) position to a prepared SQL statement. Returns null string or failure.
Binds value to (one-based) position as a BLOB value to prepared SQL statement. Returns null string or failure.
Binds multiple positional parameter values to a prepared SQL statement. Returns null string or failure.
Returns the number of parameters required by a prepared SQL statement, or fails.
Returns the name (if any) for the parameter position number in a prepared SQL statement.
Returns the positional index for named parameter name in prepared SQL statement.
Use this routine to reset all parameter bindings to NULL.
Reset a prepared statement back to its initial state, ready to be re-executed. Any SQL statement variables that had values bound to them retain their values. Use sqlite3_clear_bindings() to reset the bindings.
Release (delete) a statement handle.
Run one or more SQL statements that do not require parameters.
Returns an ARRAY with a row of statement results or fails.
Returns an ARRAY with SQL statement result column names or fails.
Returns a TABLE with statement results indexed by column name or fails.

SEE ALSO

snobol4(1), sqlite3(1)
http://www.sqlite.org
http://www.sqlite.org/c3ref/funclist.html

March 31, 2022 CSNOBOL4B 2.3.1