You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a basic sqlite toolkit using and interface similar to
the Matlab Native SQLITE interface.
It provides functionality for the following functions:
sqlite - create a sqlite database connection
close - close a sqlite database connection
fetch - fetch data from a connection using sql
execute - execute a non selecting sql statement
sqlfind - query info about a sqlite table
sqlread - read a sqlite table
sqlwrite - write to a sqlite table
sqlupdate - update a sqlite table
commit - commit transaction when not in autocommit mode
rollback - rollback a transaction when not in autocommit mode
isopen - verify the database is open
It also provides a basic table implementation dbtable, but will also use
a table class if available.
Installing the Toolkit
The toolkit can be installed in Octave 6.0 and greater. It has a dependency
on the SQLITE library (https://www.sqlite.org/), so it must be installed in
order to successfully install the toolkit.
The toolkit can be installed in Octave 7.2+ using the command:
pkg install -forge sqlite
On older versions of Octave, install the package using the full path to the latest released version: