https://github.com/blaugold/sqlite_dart_native
https://github.com/blaugold/sqlite_dart_native
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/blaugold/sqlite_dart_native
- Owner: blaugold
- Created: 2023-08-13T13:58:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T11:55:57.000Z (about 2 years ago)
- Last Synced: 2025-07-02T02:05:30.374Z (11 months ago)
- Language: C
- Size: 3.14 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Dart SQLite API using native assets
This package implements a Dart SQLite API using the upcoming native assets
support.
### Native assets experiment
Currently, you need to enable the native assets experiment. For example, here is
how to run tests:
```shell
dart --enable-experiment=native-assets test
```
VS Code is configured to run tests with native assets enabled.
### FFI bindings
To generate the FFI bindings, run:
```shell
dart --enable-experiment=native-assets run ffigen
```