├── .gitignore ├── .project ├── .settings └── org.erlide.core.prefs ├── .travis.yml ├── AUTHORS ├── GNUmakefile ├── LICENSE ├── Makefile ├── README.md ├── c_src ├── sqlite3_drv.c └── sqlite3_drv.h ├── include └── sqlite3.hrl ├── rebar ├── rebar.bat ├── rebar.config ├── rebar.cross_compile.config.sample ├── rebar.debug.config ├── sqlite3_amalgamation ├── shell.c ├── sqlite3.c ├── sqlite3.h └── sqlite3ext.h ├── src ├── sqlite3.app.src ├── sqlite3.erl └── sqlite3_lib.erl ├── test.erl ├── test.sh └── test └── sqlite3_test.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.erlide.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/.settings/org.erlide.core.prefs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/AUTHORS -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/README.md -------------------------------------------------------------------------------- /c_src/sqlite3_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/c_src/sqlite3_drv.c -------------------------------------------------------------------------------- /c_src/sqlite3_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/c_src/sqlite3_drv.h -------------------------------------------------------------------------------- /include/sqlite3.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/include/sqlite3.hrl -------------------------------------------------------------------------------- /rebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/rebar -------------------------------------------------------------------------------- /rebar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/rebar.bat -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.cross_compile.config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/rebar.cross_compile.config.sample -------------------------------------------------------------------------------- /rebar.debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/rebar.debug.config -------------------------------------------------------------------------------- /sqlite3_amalgamation/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/sqlite3_amalgamation/shell.c -------------------------------------------------------------------------------- /sqlite3_amalgamation/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/sqlite3_amalgamation/sqlite3.c -------------------------------------------------------------------------------- /sqlite3_amalgamation/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/sqlite3_amalgamation/sqlite3.h -------------------------------------------------------------------------------- /sqlite3_amalgamation/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/sqlite3_amalgamation/sqlite3ext.h -------------------------------------------------------------------------------- /src/sqlite3.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/src/sqlite3.app.src -------------------------------------------------------------------------------- /src/sqlite3.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/src/sqlite3.erl -------------------------------------------------------------------------------- /src/sqlite3_lib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/src/sqlite3_lib.erl -------------------------------------------------------------------------------- /test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/test.erl -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | # separate file to simplify valgrind use 2 | 3 | ./rebar eunit 4 | -------------------------------------------------------------------------------- /test/sqlite3_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyr/erlang-sqlite3/HEAD/test/sqlite3_test.erl --------------------------------------------------------------------------------