Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ktakashi/sagittarius-dbd-sqlite3
SQLite3 binding and its DBD library for Sagittarius
https://github.com/ktakashi/sagittarius-dbd-sqlite3
Last synced: 13 days ago
JSON representation
SQLite3 binding and its DBD library for Sagittarius
- Host: GitHub
- URL: https://github.com/ktakashi/sagittarius-dbd-sqlite3
- Owner: ktakashi
- Created: 2012-11-04T19:42:03.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-08-09T09:19:54.000Z (about 8 years ago)
- Last Synced: 2024-10-06T01:21:44.800Z (about 1 month ago)
- Language: Scheme
- Size: 21.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sagittarius DBD SQLite3
This provides SQLite3 binding and DBD library for Sagittarius.
## Install
The build process trys to find SQLite3 runtime library from your platform,
however I haven't tested much platform. So if you have a trouble comment out
the line 9 to 14 in `CMakeLists.txt` and write your own SQLite3 runtime path.## The difference between builtin ODBC library
Sagittarius has ODBC library if the platform supports and it also provides DBD.
Even though both have the same DBI interface but some of the behaviours or
returning data are not the same.Following describes the major differences.
* ~~Commit and rollback are not supported (always auto commit)~~