SQLite
Load and write data from/to an SQLite database file
Input/output
The sqlite driver expects to be provided a path to an SQLite database file.
By default this driver announces support for parsing to three data types:
SQLite.DBDataFrameAny
Any valid constructor that can be applied to the results of DBInterface.execute will work.
Required packages
SQLite
Parameters
Loader and Writer
table: The table to act on,databy default.
Loader only
columns: columns to select,*by default.query: an SQLite query to run. When provided this overrides thetableandcolumnsparameters.
Writer only
ifnotexists: see the documentation forSQLite.load!.analyze: see the documentation forSQLite.load!.
Usage examples
[[iris.loader]]
driver = "sqlite"
columns = ["sepal_length", "species"]