rockvole_db_replicator

Creator: coderz1093

Last updated:

0 purchases

rockvole_db_replicator Image
rockvole_db_replicator Images
Add to Cart

Description:

rockvole db replicator

rockvole_db_replicator #
A database library which provides you with CRUD methods to access your database. This library will create additional transaction tables.
These transaction tables can be used to replay your database transactions on other servers or phones, thus replicating the database remotely.
To see an example of this - see the rockvole_replicator_todo demonstration android app.
Usage #
A simple usage example:
import 'package:rockvole_db_replicator/rockvole_db.dart';

main() async {
TaskDao taskDao = TaskDao(smd, remoteTransaction);
await taskDao.init();
try {
await taskDao.updateTask(1, 'new description', false);
} on SqlException catch (e) {
print(e);
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator