Releases: elixir-sqlite/exqlite
Releases · elixir-sqlite/exqlite
v0.8.7
Added
- Ability to compile exqlite using the system sqlite3 installation as opposed to building from source. #186
v0.8.6
Changed
- Compile SQLite3 with
-DHAVE_USLEEP=1
to allow for more performant concurrent use.
v0.8.3
Changed
- Compilation output to be less verbose. If more verbosity is desired
V=1 mix compile
will remedy that. #181
- When the path to the database does not exist,
mkdir_p
is invoked. #180
v0.8.1
Fixed
- Fixed unicode handling when executing sql statements. #179
v0.7.1
Fixed
- Fix segfault on double closing an sqlite connection. #162
v0.7.0
Added
- Added
Exqlite.Basic
for a simplified interface to utilizing sqlite3. #160
- Addded ability to load sqlite extension. #160