Skip to content

v0.4.0

Compare
Choose a tag to compare
@DjDeveloperr DjDeveloperr released this 26 Feb 14:10
· 91 commits to main since this release
0a2b563

What's Changed

  • New API for incremental Blob I/O: SQLBlob. Check documentation for Database#openBlob for more info.
  • Support using Database#execute/queryArray/queryObject in Template Strings.
  • Added isComplete function to check if the given string is a complete SQL statement (direct binding to sqlite3_complete)
  • Added Database#lastInsertRowId to get last inserted row ID
  • Added Database#autocommit to check whether auto-commit mode is on
  • Stricter types when passing arguments to bind parameters or obtaining column value.
  • In PreparedStatement, new fields were added: sql, expandedSql and readonly
  • Added PreparedStatement#clearBindings to set all bind parameter values to NULL.