Download the PHP package phppackage/pdo-wrapper without Composer
On this page you can find all versions of the php package phppackage/pdo-wrapper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download phppackage/pdo-wrapper
More information about phppackage/pdo-wrapper
Files in phppackage/pdo-wrapper
Download phppackage/pdo-wrapper
More information about phppackage/pdo-wrapper
Files in phppackage/pdo-wrapper
Vendor phppackage
Package pdo-wrapper
Short Description This is my package, description.
License MIT
Homepage http://github.com/phppackage/pdo-wrapper
Package pdo-wrapper
Short Description This is my package, description.
License MIT
Homepage http://github.com/phppackage/pdo-wrapper
Please rate this library. Is it a good library?
Informations about the package pdo-wrapper
PDO Wrapper
Yet another PDO wrapper which extends the PDO class and adds some additional suger.
Install
Require this package with composer using the following command:
Usage example:
<?php
require 'vendor/autoload.php';
use PHPPackage\PDOWrapper\PDO;
// connect, a standard PDO constructor
$db = new PDO(
'sqlite::memory:',
'test_username',
'test_password',
[
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
]
);
// or default to an sqlite file
$db = new PDO();
// get database info
$info = $pdo->info();
// get databases
$databases = $pdo->databases();
// get tables
$tables = $pdo->tables();
// create a database
$pdo->createDatabase('test');
// get database name (from dsn)
$name = $pdo->getDatabaseName();
// export database (mysql only)
$filename = $pdo->export('./'); // ./ = destination folder
// import database (mysql only)
$pdo->import('./backup.sql.gz');
// create
$pdo->run('INSERT INTO table_name (name) VALUES (?)', ['foo']);
// create - multi
$pdo->run('INSERT INTO table_name (name) VALUES (?)', [['foo'], ['bar'], ['baz']]);
// retrieve - PDOStatement
$stmt = $pdo->run('SELECT * FROM table_name');
$stmt = $pdo->run('SELECT * FROM table_name WHERE id = ?', [1]);
$stmt = $pdo->run('SELECT * FROM table_name WHERE id = :id', ['id' => 1]);
// retrieve - single row
$result = $pdo->row('SELECT * FROM table_name WHERE id = ?', [1]);
$result = $pdo->row('SELECT * FROM table_name WHERE id = :id', ['id' => 1]);
// retrieve - single cell
$result = $pdo->cell('SELECT column FROM table_name WHERE id = ?', [1]);
$result = $pdo->cell('SELECT column FROM table_name WHERE id = :id', ['id' => 1]);
// retrieve - all array
$result = $pdo->all('SELECT * FROM table_name');
$result = $pdo->all('SELECT * FROM table_name WHERE id = ?', [1]);
$result = $pdo->all('SELECT * FROM table_name WHERE id = :id', ['id' => 1]);
// update
$pdo->run('UPDATE table_name SET column = ? WHERE id = ?', ['foo', 1]);
// delete
$pdo->run('DELETE FROM table_name WHERE id = ?', [1]);
// .. and all other standard PDO functionality
Testing
Contributing
Please see CONTRIBUTING for details.
Credits
- Lawrence Cherone
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of pdo-wrapper with dependencies
PHP Build Version
Package Version
Requires
php Version
~7.0
The package phppackage/pdo-wrapper contains the following files
Loading the files please wait ....