ejdb2_dart 2.62.4 ejdb2_dart: ^2.62.4 copied to clipboard
Embeddable JSON Database engine EJDB http://ejdb.org Dart binding.
EJDB2 Dart VM native binding #
Embeddable JSON Database engine http://ejdb.org Dart binding.
See https://github.com/Softmotions/ejdb/blob/master/README.md
For API usage examples take a look into /example and /test folders.
Example #
import 'package:ejdb2_dart/ejdb2_dart.dart';
void main() async {
final db = await EJDB2.open('example.db', truncate: true);
var id = await db.put('parrots', {'name': 'Bianca', 'age': 4});
print('Bianca record: ${id}');
id = await db.put('parrots', {'name': 'Darko', 'age': 8});
print('Darko record: ${id}');
final q = db.createQuery('/[age > :age]', 'parrots');
await for (final doc in q.setInt('age', 3).execute()) {
print('Found ${doc}');
}
await db.close();
}
Supported platforms #
- Linux x64
- OSX
How build it manually #
Note: native binding requires Dart SDK version >= 2.12.x
git clone https://github.com/Softmotions/ejdb.git
cd ./ejdb
mkdir ./build && cd build
cmake .. -DBUILD_DART_BINDING=ON -DCMAKE_BUILD_TYPE=Release
make
cd src/bindings/ejdb2_dart/ejdb2_dart
pub get