sqlite-erlang icon indicating copy to clipboard operation
sqlite-erlang copied to clipboard

Sqlite gen_server port for Erlang. Creates, reads and writes to sqlite database.

Results 3 sqlite-erlang issues
Sort by recently updated
recently updated
newest added

README file should warn about adapting to one's needs the priv/Makefile as well.

diff --git a/Makefile b/Makefile index 887c835..fb42265 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ERL=erl OTP_TOP=/opt/local/lib/erlang/lib -PLT_SRC=$(OTP_TOP)/kernel-2.12.4/ebin $(OTP_TOP)/stdlib-1.15.4/ebin/ $(OTP_TOP)/crypto-1.5.2.1/ebin $(OTP_TOP)/compiler-4.5.4/ebin $(OTP_TOP)/hipe-3.6.8/ebin/ $(OTP_TOP)/syntax_tools-1.5.5/ebin $(OTP_TOP)/hipe-3.6.8/ebin ebin +PLT_SRC=$(OTP_TOP)/kernel-2.12.4/ebin $(OTP_TOP)/stdlib-1.15.4/ebin/ $(OTP_TOP)/crypto-1.5.2.1/ebin $(OTP_TOP)/compiler-4.5.4/ebin $(OTP_TOP)/hipe-3.6.8/ebin/...

In order to use sqlite-erlang, the priv dir containing the `sqlite-port` executable must be on the PATH environment variable. The following patch solves the problem (I hope the formatting comes...