SQLite¶
Install dependencies for Ibis’s SQLite dialect:
pip install ibis-framework[sqlite]
Create a client by passing a path to a SQLite database to
ibis.sqlite.connect()
:
>>> import ibis
>>> ibis.sqlite.connect('path/to/my/sqlite.db')
See http://blog.ibis-project.org/sqlite-crunchbase-quickstart/ for a quickstart using SQLite.
API¶
The SQLite client is accessible through the ibis.sqlite
namespace.
Use ibis.sqlite.connect
to create a SQLite client.
|
Create an Ibis client connected to a SQLite database. |
|
Connect another SQLite database file |
|
Create a database object. |
|
List tables/views in the current or indicated database. |
|
Create a table expression that references a particular table in the SQLite database |