0.11.3 - 2022-08-04
- Updated sqlite3 to 3.39.2
0.11.2 - 2022-05-13
- Fix incorrect ordering due to
Enum.reverse/1
. #205
0.11.1 - 2022-05-13
- Updated sqlite3 to 3.38.5
0.11.0 - 2022-05-05
- Added top level interface for
Exqlite
similar toPostgrex
's interface. - Adds optional table protocol support for results.
0.10.2 - 2022-03-10
- Updated sqlite3 to 3.38.
- Reverted change made to Visual Studio 2022 vcvars64.bat #194
0.10.1 - 2022-03-01
- Fixed path to Visual Studio 2022 vcvars64.bat #194
0.10.0 - 2022-02-24
- Custom memory allocator for sqlite to leverage erlang's
enif_alloc
functionality. This allows the memory usage to be tracked with the erlang vm usage stats. #193
0.9.3 - 2022-02-02
- Fix
SIGSEGV
issue when a long running query is timed out. #191
0.9.2 - 2022-01-27
- Ability to set
:journal_size_limit
in bytes. #189 - Ability to set
:soft_heap_limit
in bytes. #189 - Ability to set
:hard_heap_limit
in bytes. #189
0.9.1 - 2022-01-21
- Documentation about compiling with system install sqlite3.
- Debug output during
mix compile
process.
0.9.0 - 2022-01-21
- Allow setting
:key
optionPRAGMA
before all other pragmas to allow for use of encrypted sqlite databases. #187
0.8.7 - 2022-01-21
- Ability to compile exqlite using the system sqlite3 installation as opposed to building from source. #186
0.8.6 - 2022-01-19
- Compile SQLite3 with
-DHAVE_USLEEP=1
to allow for more performant concurrent use.
0.8.5 - 2022-01-14
0.8.4 - 2021-12-08
- Improved typespecs. #177
0.8.3 - 2021-12-07
- 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
0.8.2 - 2021-12-03
- Fixed unicode handling when preparing sql statements.
0.8.1 - 2021-12-03
- Fixed unicode handling when executing sql statements. #179
0.8.0 - 2021-11-30
0.7.9 - 2021-10-25
- Debug build opt in, instead of opt out.
export DEBUG=yes
before compilation and it will add a-g
to the compilation process.
0.7.3 - 2021-10-08
- Added support for static erlang compilation. #167
0.7.2 - 2021-09-13
- Added support for android compilation. #164
0.7.1 - 2021-09-09
- Fix segfault on double closing an sqlite connection. #162
0.7.0 - 2021-09-08
- Added
Exqlite.Basic
for a simplified interface to utilizing sqlite3. #160 - Addded ability to load sqlite extension. #160
0.6.4 - 2021-09-04
- Updated SQLite from 3.35.5 to 3.36.0
0.6.3 - 2021-08-26
- Fixed perceived memory leak for prepared statements not being cleaned up in a timely manner. This would be an issue for systems under a heavy load. #155
0.6.2 - 2021-08-25
- Handle only UTC datetime and convert them to iso form without offset #157
0.6.1 - 2021-05-17
- Fixed compilation issue on windows #151
0.6.0 - 2021-05-5
Exqlite.Sqlite3.serialize/2
to serialize the contents of the database to a binary.Exqlite.Sqlite3.deserialize/3
to load a previously serialized database from a binary.
0.5.11 - 2021-05-02
- add the relevant sql statement to the Error exception message
- update SQLite3 amalgamation to 3.35.5
- fix issue with update returning nil rows for empty returning result #146
0.5.10 - 2021-04-06
maybe_set_pragma
was comparing upper case and lower case values when it should not matter.
0.5.9 - 2021-04-06
- Setting the pragma for
Exqlite.Connection
is now a two step process to check what the value is and then set it to the desired value if it is not already the desired value.
0.5.8 - 2021-04-04
Exqlite.Error
now has the statement that failed that the error occurred on.
0.5.7 - 2021-04-04
- Update SQLite3 amalgamation to 3.35.4
0.5.6 - 2021-04-02
- Fix SQLite3 amalgamation in 0.5.5 being incorrectly downgraded to 3.34.1. Amalgamation is now correctly 3.35.3.
0.5.5 - 2021-03-29
- Bump SQLite3 amalgamation to version 3.35.3
0.5.4 - 2021-03-23
- Fix incorrect passing of
chunk_size
tofetch_all/4
0.5.3 - 2021-03-23
:invalid_chunk_size
being emitted by theDBConnection.execute
0.5.2 - 2021-03-23
- Guide for Windows users.
Exqlite.Sqlite3.multi_step/3
to step through results chunks at a time.default_chunk_size
configuration.
0.5.1 - 2021-03-19
- Bumped SQLite3 amalgamation to version 3.35.2
- Replaced old references of github.com/warmwaffles
0.5.0 - 2021-03-17
- Removed
Ecto.Adapters.Exqlite
Replaced with Ecto Sqlite3 library.