https://github.com/janbrohl/sqlite-math
https://github.com/janbrohl/sqlite-math
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/janbrohl/sqlite-math
- Owner: janbrohl
- License: mit
- Created: 2021-08-02T16:06:15.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-15T09:06:57.000Z (11 months ago)
- Last Synced: 2025-01-22T20:51:35.714Z (4 months ago)
- Language: C
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SQLite-Math
An extension for [SQLite](https://sqlite.org/) providing most functions from [math.h](https://www.cplusplus.com/reference/cmath/)
There are 2 versions of this extension:
* math1.c containing all functions
* mathextra1.c containing all functions minus those that might be [built-in](https://sqlite.org/lang_mathfunc.html)For compiling the extension you need the amalgamation source code from https://sqlite.org/download.html . See https://sqlite.org/loadext.html#compiling_a_loadable_extension .
Not quite tested yet.