# 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](https://github.com/Softmotions/ejdb/tree/master/src/bindings/ejdb2_dart/example) and [/test](https://github.com/Softmotions/ejdb/tree/master/src/bindings/ejdb2_dart/test) folders. ## Example ```dart 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 ``` sh 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 ```