Skip to content

Releases: WiseLibs/better-sqlite3

v1.3.6

10 Apr 21:36
Compare
Choose a tag to compare

29e04d6 added support for microsoft windows

v1.3.1

10 Apr 21:30
Compare
Choose a tag to compare

3779fc9 read-only statements that do not return data can now be executed with .run()

This removes the .readonly property and introduces the .returnsData property as its replacement. Statements are no longer semantically segregated based on whether they modify data, but rather whether they return data. There are two major reasons for this:

  • It makes more sense to .prepare('BEGIN;').run() than to .prepare('BEGIN;').get()
  • Both CREATE TABLE foo (bar) and CREATE TABLE IF NOT EXISTS foo (bar) should use the same execution method (.run())

v1.2.1

10 Apr 21:29
Compare
Choose a tag to compare

ab3e15d fixed inconsistent parameter binding logic
5a73a4e greatly improved string performance

v1.1.3

10 Apr 21:26
Compare
Choose a tag to compare

5a019b7 fixed minor bug with binding parameters

v1.1.1

10 Apr 21:22
Compare
Choose a tag to compare

82863fd exposed the "memory" property on database objects

v1.0.2

10 Apr 21:19
Compare
Choose a tag to compare

98a037a fixed edge case bug when binding buffers and using .each()

v1.0.0

10 Apr 21:18
Compare
Choose a tag to compare

The first production-ready release of better-sqlite3.