A Dart 2 and Flutter driver for RethinkDB v2.3.
This is a fork of RethinkDB Driver, that was created to update the driver to Dart 2 and Flutter.
The driver api tries to align with the javascript and python RethinkDB drivers. You can read their documentation here.
To include this driver in your own project add the package to your pubspec.yaml file:
dependencies:
rethinkdb_dart: '^2.3.2+6'
Or to use bleeding edge:
dependencies:
rethinkdb_dart:
git: git://github.com/marceloneppel/rethinkdb.git
Or if you are a developer:
dependencies:
rethinkdb_dart:
path: /path/to/your/cloned/rethinkdb_dart
Then import the package into your project:
import 'package:rethinkdb_dart/rethinkdb_dart.dart';
Connect to the database:
var connection = await r.connect(db: "test", host: "localhost", port: 28015);
Create a table:
await r.db('test').tableCreate('tv_shows').run(connection);
Insert some data:
await r.table('tv_shows').insert([
{'name': 'Star Trek TNG', 'episodes': 178},
{'name': 'Battlestar Galactica', 'episodes': 75}
]).run(connection);
And work with the data:
var count = await r.table('tv_shows').count();
print("count: $count");
To update protobuf execute the following command from the project root:
bash lib/src/generated/regenerate-proto.sh
To run tests execute the following command from the project root:
warning: tests are run against a live database, but they do attempt to clean up after themselves
pub run test