React Native Quick Sqlite Versions Save

Fast SQLite for react-native.

7.0.0

1 year ago

Transactions now return promises. The transactionAsync method has been completely removed since it is redundant.

4.0.8

1 year ago

You can now easily enable compile-time SQLite extensions by specifying compilation flags. Check out the README for more instructions on how to achieve this.

4.0.7

1 year ago

Adds support for RN 0.70

4.0.3

1 year ago

Starting 0.69 RN embeds AAR versions of certain dependencies, which forced changes on the build gradle to handle multiple .aar files. Which in turn caused to break the library for older versions. I modified the build.gradle script to make it work with older RN versions.

3.1.0

2 years ago

Transactions were internally supported via batchExecuteSql method, but now there is a new transaction method. It's more idiomatic and useful if you need to check intermediate results. It's only meant for sync callbacks, an async version will be implemented next.

3.0.4

2 years ago

Column metadata is now returned when performing select queries. Should help when the data has been coerced to basic types but the SQL field is different.

3.0.2

2 years ago

After a lot of work, we have finally managed to add async callbacks to the library! 🎉

Thanks a lot to @EduFrazao whose help has been vital to getting this working! Also, to @sergeymild, who's repo showed us how to do async callbacks with the JSI.

Changes

  • Methods now have async equivalents, if you don't want to block your UI while SQLite processes your data
  • SQLite has been bumped to version 3.38.1

Please open an issue if you are facing any sort of bug, this was a major refactoring of the library.

3.0.0

2 years ago

Added a couple of new methods:

  • batch execute SQL
  • load and execute a SQL file

Also a big refactoring was done, the methods no longer throw errors at all, everything returns a response object with a status field

2.0.2

2 years ago

v2.0.2

  • SQLite has been updated to version 3.38.0
  • Typescript types have been fixed to reflect the correct response