Skip to content
This repository has been archived by the owner on Dec 17, 2018. It is now read-only.

elixir-sqlite/elixir_sqlite

 
 

Repository files navigation

CircleCI Coverage Status Inline docs Hex.pm Hex.pm

Sqlite

Elixir API for interacting with SQLite databases. This library allows you to use the accelent sqlite engine from erlang. The library is implemented as a nif library, which allows for the fastest access to a sqlite database. This can be risky, as a bug in the nif library or the sqlite database can crash the entire Erlang VM. If you do not want to take this risk, it is always possible to access the sqlite nif from a separate erlang node.

Special care has been taken not to block the scheduler of the calling process. This is done by handling all commands from erlang within a lightweight thread. The erlang scheduler will get control back when the command has been added to the command-queue of the thread.

Usage

{:ok, db} = Sqlite.open(":memory:")
Sqlite.exec("create virtual table test_table using fts3(content text);", db)
:ok = Sqlite.exec("create table test_table(one varchar(10), two int);", db)
:ok = Sqlite.exec(["insert into test_table values(", "\"hello1\"", ",", "10);"], db)
{:ok, 1} = Sqlite.changes(db)

Tests

Since this project was originally an Erlang package, I chose to maintain the original module name (as an alias) and it's tests to try to maintain backwards compatibility. By default these tests get ran by default.

# All the tests without the bench marks.
mix test

Benchmarks

There is also a benchmark suite located in the bench directory. It does not get ran with the test suite since it can take quite a while.

# run all the tests and the benchmarks.
mix test --include bench

Thanks and License

This project is originally a fork of esqlite Which was originally an Erlang implementation. The underlying NIF code (in c_src), and the test file in erl_test both retain the original Apache v2 license.

Packages

No packages published

Languages

  • Elixir 52.2%
  • C 45.9%
  • Makefile 1.3%
  • C++ 0.6%