CrSqlite
is ...
alias Exqlite.Basic
{:ok, conn} = Basic.open("db.sqlite3")
CrSqlite.load_extension(conn)
The package can be installed by adding cr_sqlite
to your list of dependencies in mix.exs
:
def deps do
[
{:cr_sqlite, "~> 0.1"}
]
end
The docs can be found at https://hexdocs.pm/cr_sqlite.
The lib is available as open source under the terms of the MIT License.