Skip to content

dbi-beam/dbi_sqlite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DBI for Erlang (SQLite)

Build Status Codecov License: LGPL 2.1 Hex

Database Interface for Erlang and Elixir using SQLite. For further information check DBI.

Install (rebar3)

To use it, with rebar, you only need to add the dependency to the rebar.config file:

{deps, [
    {dbi_sqlite, "0.1.0"}
]}

Install (mix)

To use it, with mix, you only need to add the dependency to the mix.exs file:

{:dbi_sqlite, "~> 0.1.0"}

Configuration

The configuration is made in the configuration file (sys.config or app.config) so, you can add a new block for config the database connection as follow:

{dbi, [
    {mylocaldb, [
        {type, sqlite},
        {database, ":memory:"}
    ]}
]}

In case you're using Elixir, you can define the configuration for your project in this way:

confg :dbi, mylocaldb: [
              type: :sqlite,
              database: ':memory'
            ]

Enjoy!

About

DataBase Interface for Erlang/Elixir to use SQLite

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages