@nano-sql/adapter-react-native
v2.0.6
Published
Easily Run React Native with nanoSQL 2!
Downloads
15
Maintainers
Readme
Documentation | Bugs | Chat
Installation
# install adapter
npm i @nano-sql/adapter-react-native --save
# link async storage
react-native link @react-native-community/async-storage
Usage
import { NativeStorage } from "@nano-sql/adapter-react-native";
import { nSQL } from "@nano-sql/core";
nSQL().createDatabase({
id: "my_db",
mode: new NativeStorage(true), // true to enable index cache, leave blank otherwise
tables: [...]
}).then(...)
API
The NativeStorage
class accepts one optional argument that is used to enable or disable index caching.
If true
is passed in, table indexes will be stored in javascript memory to increase write performance and range query performance. If false
or nothing is passed in, write performance and range queries will be slower but indexes will only be loaded into memory as they are needed, then cleared from memory.
MIT License
Copyright (c) 2019 Scott Lott
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Changelog
[2.0.6]
- Dependency updates, moved to
@react-native-community/async-storage
. Resolves Issue 146. - Fixed issue with duplicate primary keys. Resolves Issue 147.
[2.0.5]
- Documentation and dependency updates.
[2.0.4]
- Readme updates.
[2.0.3]
- Added option to cache indexes.
[2.0.2]
- Fixed index bug.
[2.0.1]
- Fixed write bug
[2.0.0]
- First release