dev-master
9999999-devSimilar database library to PDO
MIT
The Requires
- php >=5.3.0
0.1.1
0.1.1.0Similar database library to PDO
MIT
The Requires
- php >=5.3.0
0.1.0
0.1.0.0Similar database library to PDO
MIT
The Requires
- php >=5.3.0
Wallogit.com
2017 © Pedro Peláez
Similar database library to PDO
Similar database library to PDO, (*1)
The LikePDO library is an alternative for those who need to use a database library similar to PDO without the need for native extension. Is fully developed in PHP, using standard features such as MSSQL library and the like, without use the native PDO., (*2)
Here's a very simple way to install:, (*3)
Use Composer to install LikePDO into your project:, (*4)
composer require erickmcarvalho/likepdo:0.1.*
Simple example, (*5)
$dbh = new \LikePDO\LikePDO("mssql:host=127.0.0.1;dbname=Project", "sa", "123456");
$stmt = $dbh->prepare("SELECT * FROM User WHERE CodUser = ?");
$stmt->bindValue(1, 1, PDO::PARAM_INT);
$stmt->execute();
$fetch = $stmt->fetch(PDO::FETCH_OBJ);
All documentation can be based on the PHP manual on the PDO., (*6)
LikePDO currently supports the following drivers:, (*7)
Similar database library to PDO
MIT
Similar database library to PDO
MIT
Similar database library to PDO
MIT