rlanvin / php-mypdo
Wrapper for PDO (MySQL) to support auto-reconnect, nested transactions and more.
Installs: 4 244
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 0
Open Issues: 2
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-10-14 05:38:55 UTC
README
MyPDO is a wrapper that adds a few features missing from vanilla PDO:
- Explicit disconnection
- Automatic reconnection (no more 2006 MySQL server has gone away)
- Nested transactions
- Methods chainability
- Hidden password from the stack trace (in case of error)
- Helpers methods (e.g.
ping()
)
Important: MyPDO is designed for MySQL only.
This class will not add higher logic to PDO (such as data mapping, etc.). It is only intended to add low-level features.
Basic example
This class is intented to be a drop-in replacement for PHP's default PDO. There is nothing special to do, just use MyPDO
class instead of PDO
and you're good to go.
Complete doc is available in the wiki.
Requirements
- PHP >= 5.3
Installation
The recommended way is to install the lib through Composer.
Just add this to your composer.json
file (change the version by the release you want, or use dev-master
for the development version):
{ "require": { "rlanvin/php-mypdo": "1.*" } }
Then run composer install
or composer update
.
Now you can use the autoloader, and you will have access to the library:
<?php require 'vendor/autoload.php';
Alternative method
You can just download src/MyPDO.php
and src/MyPDOStatement.php
(if you want to use prepared statements) and require them.
Documentation
Complete doc is available in the wiki.
Contribution
Feel free to contribute! Just create a new issue or a new pull request.
License
This library is released under the MIT License.