This commit is contained in:
Nikita Dauhashei 2024-04-22 23:22:18 +02:00
parent 9c82dcd313
commit c5959cc446
No known key found for this signature in database
GPG Key ID: 3B93F636D935382D
1 changed files with 2 additions and 4 deletions

View File

@ -180,7 +180,8 @@ We currently support the following extensions:
Enabling this option is safe when using a `NativeDatabase` with `sqlite3_flutter_libs`, Enabling this option is safe when using a `NativeDatabase` with `sqlite3_flutter_libs`,
which compiles sqlite3 with the R*Tree extension enabled. which compiles sqlite3 with the R*Tree extension enabled.
- [geopoly](https://www.sqlite.org/geopoly.html), a generalization of the R*Tree module supporting more complex - [geopoly](https://www.sqlite.org/geopoly.html), a generalization of the R*Tree module supporting more complex
polygons. polygons. Note that this is not the case for most sqlite3 builds,
including the ones shipping with `sqlite3_flutter_libs`.
- `moor_ffi`: Enables support for functions that are only available when using a `NativeDatabase`. This contains `pow`, `sqrt` and a variety - `moor_ffi`: Enables support for functions that are only available when using a `NativeDatabase`. This contains `pow`, `sqrt` and a variety
of trigonometric functions. Details on those functions are available [here]({{ "../Platforms/vm.md#moor-only-functions" | pageUrl }}). of trigonometric functions. Details on those functions are available [here]({{ "../Platforms/vm.md#moor-only-functions" | pageUrl }}).
- `math`: Assumes that sqlite3 was compiled with [math functions](https://www.sqlite.org/lang_mathfunc.html). - `math`: Assumes that sqlite3 was compiled with [math functions](https://www.sqlite.org/lang_mathfunc.html).
@ -188,9 +189,6 @@ We currently support the following extensions:
- `spellfix1`: Assumes that the [spellfix1](https://www.sqlite.org/spellfix1.html) - `spellfix1`: Assumes that the [spellfix1](https://www.sqlite.org/spellfix1.html)
module is available. Note that this is not the case for most sqlite3 builds, module is available. Note that this is not the case for most sqlite3 builds,
including the ones shipping with `sqlite3_flutter_libs`. including the ones shipping with `sqlite3_flutter_libs`.
- `geopoly`: Assumes that the [geopoly](https://www.sqlite.org/geopoly.html)
module is available. Note that this is not the case for most sqlite3 builds,
including the ones shipping with `sqlite3_flutter_libs`.
### Known custom functions ### Known custom functions