https://github.com/unikraft/lib-sqlite
Unikraft port of SQLite
https://github.com/unikraft/lib-sqlite
library sqlite unikraft
Last synced: about 1 year ago
JSON representation
Unikraft port of SQLite
- Host: GitHub
- URL: https://github.com/unikraft/lib-sqlite
- Owner: unikraft
- License: other
- Created: 2019-12-10T07:27:55.000Z (over 6 years ago)
- Default Branch: staging
- Last Pushed: 2024-12-20T22:14:23.000Z (over 1 year ago)
- Last Synced: 2025-03-24T15:11:13.564Z (over 1 year ago)
- Topics: library, sqlite, unikraft
- Language: C
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 10
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: COPYING.md
Awesome Lists containing this project
README
# SQLite for Unikraft
This is the port of SQLite for Unikraft as external library.
## Build
SQLite depends on the following libraries, that need to be added to
`Makefile` in this order:
* `pthreads`, e.g. `pthread-embedded`
* `libc`, e.g. `newlib`
Before you proceed to writing your own application, you can use the
`main()` function provided in the SQLite glue code by enabling it in
its configuration menu.
## Root filesystem
To import/export databases and/or csv files, it is necessary to have
a filesystem. The steps for creating and using a filesystem are the
same as the ones used for
[nginx](https://github.com/unikraft/lib-nginx/blob/staging/README.md).
## Further information
Please refer to the `README.md` as well as the documentation in the
`doc/` subdirectory of the main unikraft repository.