https://github.com/acgrid/php-rdbms-wrapper
A composer library for RDBMS driver wrapper without any SQL translation.
https://github.com/acgrid/php-rdbms-wrapper
Last synced: 5 months ago
JSON representation
A composer library for RDBMS driver wrapper without any SQL translation.
- Host: GitHub
- URL: https://github.com/acgrid/php-rdbms-wrapper
- Owner: acgrid
- License: mit
- Created: 2016-09-16T05:58:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-02-19T08:39:05.000Z (over 3 years ago)
- Last Synced: 2025-01-09T08:18:31.942Z (6 months ago)
- Language: PHP
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP RDBMS drivers wrapper
## What to deal with
Tired with PHP's 3 MySQL drivers? Not sure MySQLi or PDO_MySQL?This wrapper is try to separate client code with ALL driver-specific calls without using any ORM or huge frameworks. It is also procedure-friendly.
## Features
* Generator for iteration, client code can just `foreach` the result set without using driver-specific fetch methods
* Automatic bind in-params without specifying data types (**WARNING** not appreciable if client or server is sensitive with `blob` and `string`)
* Optional facades with multiple connections## TODO
* Generated documents
* PDO implementation
* Does not work on HHVM due to both variadic and by reference arguments are not supported## License
MIT