SQLite¶
Installation¶
Connection URL¶
Connect to SQLite by passing a connection URL to the Database
constructor:
Connection Parameters¶
Alternatively, connect using the Database.from_sqlite()
method with parameters:
PARAMETER | DESCRIPTION |
---|---|
database
|
File path to the SQLite database file. If None, creates an in-memory transient database and you can use attach() to add more files.
TYPE:
|
type_map
|
An optional mapping from a string name of a SQLite "type" to the corresponding Ibis DataType that it represents. This can be used to override schema inference for a given SQLite database.
TYPE:
|
match_schema
|
Regex pattern to filter schemas. Mutually exclusive with match_tables.
TYPE:
|
match_tables
|
Regex pattern to filter tables. Mutually exclusive with match_schema.
TYPE:
|
**kwargs
|
Additional arguments passed to the DBAPI connection call.
TYPE:
|