Andrew Varner 116dbbdc87 Test NULL binding (#25)
This tests binding an SQL NULL value by passing in an 'undefined' atom
in Erlang in  place of an SQL NULL. It also verifies that the returned NULL
is mapped to 'undefined' when returned via a query.
2022-01-03 15:12:33 +01:00
2022-01-03 15:12:33 +01:00
2013-03-08 22:55:46 +01:00
2013-11-27 20:24:42 +01:00
2013-02-20 21:26:25 +01:00
2021-11-20 20:42:09 +01:00
2020-10-29 08:10:59 +01:00
2015-08-07 00:07:12 +02:00

Esqlite Test

An Erlang nif library for sqlite3.

Introduction

This library allows you to use the excellent 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.

Description
No description provided
Readme 13 MiB
Languages
C 99.5%
Erlang 0.5%