Sqlite Toolkit - Functions
The following functions are available:
SQLITE connection
sqlite | Create a sqlite database connection |
@octave_sqlite/isopen | Check if a sqlite connection is open |
@octave_sqlite/close | Close a sqlite connection |
@octave_sqlite/sqlfind | Find information about table types in a database. |
Importing Data
@octave_sqlite/fetch | Run a SQL query on a sqlite database |
@octave_sqlite/sqlread | Read rows of data from a table |
Exporting Data
@octave_sqlite/sqlwrite | Insert rows of data into a table. |
Database Operations
@octave_sqlite/commit | Commit changes to a database |
@octave_sqlite/execute | Execute a SQL statement on a sqlite database |
@octave_sqlite/rollback | Rollback changes to a database |
@octave_sqlite/sqlupdate | Update rows of data into a table. |
Support Functions
dbtable | Create a table of data |
dbrowfilter | Create an unconstrained dbrowfilter object with columns names. |
struct2dbtable | Create a dbtable from a struct |
readdbtable | Create a dbtable from a file |