drift/extras/drift_mariadb/README.md

28 lines
683 B
Markdown
Raw Normal View History

2023-07-24 12:05:58 -07:00
An experimental mariadb backend for Drift.
## Using this
For general notes on using drift, see [this guide](https://drift.simonbinder.eu/getting-started/).
To use drift_mariadb, add this to your `pubspec.yaml`
```yaml
dependencies:
drift: "$latest version"
drift_mariadb:
git:
url: https://github.com/simolus3/drift.git
path: extras/drift_mariadb
```
To connect your drift database class to mariadb, use a `MariaDBDatabase` from `package:drift_mariadb/mariadb.dart`.
## Testing
To test this package, first run
```
docker run -p 127.0.0.1:3306:3306 --name mdb -e MARIADB_ROOT_PASSWORD=Password123! -d mariadb:latest
```
It can then be tested with `dart test`.