2017 © Pedro Peláez
 

library database

A PDO wrapper with lazy connections and query profiling.

image

bootpress/database

A PDO wrapper with lazy connections and query profiling.

  • Monday, January 30, 2017
  • by BootPress
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1,109 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

use BootPress\Database\Component as Database;

Packagist ![License MIT][badge-license] HHVM Tested ![PHP 7 Supported][badge-php] Build Status ![Code Climate][badge-code-climate] Test Coverage, (*1)

A PDO wrapper with lazy connections, query profiling, and convenience methods that simplify and speed up your queries., (*2)

Installation

Add the following to your composer.json file., (*3)

``` bash { "require": { "bootpress/database": "^1.0" } }, (*4)


## Example Usage ``` php <?php use BootPress\Database\Component as Database; $dsn = 'mysql:dbname=test;host=127.0.0.1'; $username = 'localhost'; $password = 'root'; $pdo = new PDO($dsn, $username, $password); $db = new Database($pdo);

If you already have the PDO connection then you can just pass it along to the constructor, but that has a few disadvantages. For starters, you've already connected to the database, whether you're going to use it or not. That may be time and resource consuming, not to mention needless. If you pass the parameters to us directly, then we will only connect to the database if and when you use it., (*5)

``` php $db = new Database($dsn, $username, $password, array(), array( "SET timezone = 'GMT'", ));, (*6)


Now you have your ``$db`` object, but we haven't done anything yet. Once you crank out a query, then we'll connect to the database, and in this case we'll set the timezone for you as well. Let's do that now. ```php // First we'll create a table $db->exec(array( 'CREATE TABLE employees (', ' id INTEGER PRIMARY KEY,', ' name TEXT NOT NULL DEFAULT "",', ' title TEXT NOT NULL DEFAULT ""', ')', )); // Insert some records if ($stmt = $db->insert('employees', array('id', 'name', 'title'))) { $db->insert($stmt, array(101, 'John Smith', 'CEO')); $db->insert($stmt, array(102, 'Raj Reddy', 'Sysadmin')); $db->insert($stmt, array(103, 'Jason Bourne', 'Developer')); $db->insert($stmt, array(104, 'Jane Smith', 'Sales Manager')); $db->insert($stmt, array(105, 'Rita Patel', 'DBA')); $db->close($stmt); // The records will be inserted all at once } // You can also try this if ($db->insert('OR IGNORE INTO employees', array( 'id' => 106, 'name' => "Little Bobby'); DROP TABLE employees;--", 'title' => 'Intern', ))) { echo $db->log('count'); // 1 - It worked! } // Make some updates if (!$db->update('employees SET id = 101', 'id', array( 106 => array( 'name' => 'Roberto Cratchit', 'title' => 'CEO', ) ))) { echo $db->log('error'); // A unique id constraint } if ($stmt = $db->update('employees', 'id', array('title'))) { $db->update($stmt, 103, array('Janitor')); $db->update($stmt, 99, array('Quality Control')); $db->close($stmt); } // And upsert more if ($stmt = $db->upsert('employees', 'id', array('name', 'title'))) { $db->upsert($stmt, 101, array('Roberto Cratchit', 'CEO')); $db->upsert($stmt, 106, array('John Smith', 'Developer')); $db->close($stmt); } $db->upsert('employees', 'id', array( 107 => array( 'name' => 'Ella Minnow Pea', 'title' => 'Executive Assistant', ), )); // Check to see who all is on board if ($result = $db->query('SELECT name, title FROM employees', '', 'assoc')) { while ($row = $db->fetch($result)) { print_r($row); /* array('name'=>'Roberto Cratchit', 'title'=>'CEO') array('name'=>'Raj Reddy', 'title'=>'Sysadmin') array('name'=>'Jason Bourne', 'title'=>'Janitor') array('name'=>'Jane Smith', 'title'=>'Sales Manager') array('name'=>'Rita Patel', 'title'=>'DBA') array('name'=>'John Smith', 'title'=>'Developer') array('name'=>'Ella Minnow Pea', 'title'=>'Executive Assistant') */ } $db->close($result); } foreach ($db->all('SELECT id, name, title FROM employees') as $row) { list($id, $name, $title) = $row; } if ($ids = $db->ids('SELECT id FROM employees WHERE title = ?', 'Intern')) { // Then Little Bobby Tables isn't as good as we thought. } // Find someone to clean things up around here if ($janitor = $db->row('SELECT id, name FROM employees WHERE title = ?', 'Janitor', 'assoc')) { // array('id'=>103, 'name'=>'Jason Bourne') } // Get a total head count echo $db->value('SELECT COUNT(*) FROM employees'); // 7 // Trim off the fat $db->exec('DELETE FROM employees WHERE id = ?', 102);

For kicks you can print_r(Database::logs()) or print_r(Database::errors()) and see what you get. If you ever need to access the PDO instance directly, it is at $db->connection() to use as you see fit., (*7)

License

The MIT License (MIT). Please see License File for more information., (*8)

The Versions

30/01 2017

dev-master

9999999-dev https://www.bootpress.org/components/database.html

A PDO wrapper with lazy connections and query profiling.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Kyle Gadd

database sql pdo bootpress

30/01 2017

v1.0.1

1.0.1.0 https://www.bootpress.org/components/database.html

A PDO wrapper with lazy connections and query profiling.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Kyle Gadd

database sql pdo bootpress

30/01 2017

dev-update

dev-update https://www.bootpress.org/components/database.html

A PDO wrapper with lazy connections and query profiling.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Kyle Gadd

database sql pdo bootpress

25/09 2016

v1.0

1.0.0.0

A PDO wrapper with lazy connections and query profiling.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Kyle Gadd

database sql pdo bootpress