Releases: OP-Engineering/op-sqlite
Releases · OP-Engineering/op-sqlite
2.0.9
What's Changed
- Clean up code to make it more C++ and use references to prevent copying strings arounds by @ospfranco in #31
Full Changelog: 2.0.8...2.0.9
Allow writing to result set
Previously it was not possible to write to the returned data by the queries (because they are HostObjects). This is now enabled, including adding new properties to the objects.
const res = db.execute('SELECT * FROM User');
res.rows!._array[0].myWeirdProp = 'quack_changed';
res.rows!._array[0].name = 'quack_changed';
Full Changelog: 2.0.7...2.0.8
Turbo Module
Module has been converted into a Turbo Module, no functionality change but it future proofs the package
Turbo Module
2.0.7-rc1
Improve statement error handling
Fixes some errors when parsing the remaining of an statement when it is empty
react-native-macOS support
It now compiles under macOS 10.13 (High Sierra)
Prepared Statements
What's Changed
- Prepared Statements by @ospfranco in #24
- Fixes some memory leaks while hot reloading
Full Changelog: 2.0.1...2.0.2
Fixes Expo Reload
Fixes reload/hot reload on expo dev client
2.0.0
What's Changed
- Support absolute paths by @ospfranco in #19
- [ANDROID] Remove native log library by @ospfranco in #20
New Contributors
- @ospfranco made their first contribution in #19
Full Changelog: 1.0.14...2.0.0
The use of the location
param has changed! This is a breaking change! check out the README