deno-sqlite

Deno SQLite module

MIT License

Stars
403
Committers
16

Bot releases are hidden (Show)

deno-sqlite - v3.8.0 Latest Release

Published by dyedgreen about 1 year ago

  • Add isClosed property to the database handle
deno-sqlite - v3.7.3

Published by dyedgreen about 1 year ago

  • Upgrade SQLite version to 3.42.0
deno-sqlite - v3.7.2

Published by dyedgreen over 1 year ago

  • fix a bug where transactions can leave the database in auto commit mode
deno-sqlite - v3.7.1

Published by dyedgreen over 1 year ago

  • Upgrade SQLite version to 3.41.2
deno-sqlite - v3.7.0

Published by dyedgreen almost 2 years ago

  • Add a serialize function which returns a Uint8Array representing the database
  • Add a deserialize function which reads a Uint8Array into a database
deno-sqlite - v3.6.0

Published by dyedgreen almost 2 years ago

  • Add expandSql function to prepared queries which returns the query SQL, substituting provided parameters for their placeholders
  • Add support for user defined (scalar) SQL functions; this adds a createFunction and deleteFunction API to the database class
  • Improve the SQLite warm binary size by stripping debug symbols in the release build
  • Improve wording of documentation and expand on existing documentation with more examples
  • Fix some mistakes in example code contained in the documentation
deno-sqlite - v3.5.0

Published by dyedgreen about 2 years ago

  • Deprecate one and oneEntry methods on query
  • Add first and firstEntry query methods
  • Update and add internal tests
  • Update documentation
deno-sqlite - v3.4.1

Published by dyedgreen about 2 years ago

  • Bump the SQLite version to 3.39.2
  • Bump the WASI compiler version to 16.0
deno-sqlite - v3.4.0

Published by dyedgreen over 2 years ago

  • Upgrade SQLite to version 3.38.3
deno-sqlite - v3.3.1

Published by dyedgreen over 2 years ago

  • fixes issues that dead-lock the library on Windows when running with --unstable
deno-sqlite - v3.3.0

Published by dyedgreen over 2 years ago

  • Add execute function for running multiple statements in a single query
deno-sqlite - v3.2.1

Published by dyedgreen over 2 years ago

  • Added experimental support for using the library in web-browsers (this changes some internals)
  • Updated documentation
deno-sqlite - v3.2.0

Published by dyedgreen almost 3 years ago

  • add transaction API
deno-sqlite - v3.1.3

Published by dyedgreen almost 3 years ago

  • Add file locking on --unstable
deno-sqlite - v3.1.2

Published by dyedgreen almost 3 years ago

  • Export SqliteError as a value so that it can be used in contexts like: error instanceof SqliteError
deno-sqlite - v3.1.1

Published by dyedgreen about 3 years ago

  • Update bundled version of SQLite
deno-sqlite - v3.1.0

Published by dyedgreen about 3 years ago

  • Improved types for prepared queries
  • Export the RowObject type
deno-sqlite - v3.0.0

Published by dyedgreen about 3 years ago

  • Updated query and preparedQuery API (query is mostly, but not fully, compatible with the previous versions)
  • New API for retrieving rows as objects containing key value pairs
  • Performance improvements to queries and prepared queries
  • localtime in SQL now respects the devices local-time available in JS
deno-sqlite - v2.5.0

Published by dyedgreen about 3 years ago

Api Changes

  • Add open options to the database, read-only, read-write, and read-write-create are supported
  • Add a columns accessor to prepared queries

Fixes

  • Fixes a potential memory leak
  • Use new Deno apis to allow SQLite to sync files correctly
deno-sqlite - v2.4.2

Published by dyedgreen over 3 years ago

  • Fix issues when binding BitInt values