A Query Builder and Database abstraction layer
Go to file
Timothy Warren 2f4dfd9d9e Added mysql tests 2012-03-15 15:46:04 -04:00
drivers Initial Commit 2012-03-15 09:25:18 -04:00
tests Added mysql tests 2012-03-15 15:46:04 -04:00
.gitignore Added mysql tests 2012-03-15 15:46:04 -04:00
README.md README formatting corrections 2012-03-15 12:09:43 -04:00
db_pdo.php Initial Commit 2012-03-15 09:25:18 -04:00
query_builder.php Added mysql tests 2012-03-15 15:46:04 -04:00

README.md

Query

A query builder/abstraction layer.

Requirements

  • Pdo extensions for the databases you wish to use (unless it's Firebird, in which case, the interbase extension is required)
  • PHP 5.2+

Databases Supported

  • Firebird
  • MySQL
  • PostgreSQL
  • SQLite
  • Others, via ODBC

Connecting

Create a connection array or object similar to this:

<?php

$params = array(
	'type' => 'mysql',
	'host' => 'localhost',
	'user' => 'root',
	'pass' => '',
	'port' => '3306',
	'database' => 'test_db',
	
	// Only required
	// SQLite or Firebird
	'file' => '/path/to/db/file',
);

$db = new Query_Builder($params);

The parameters required depend on the database.

Running Queries

Query uses the same interface as CodeIgniter's Active Record class. However, it does not implement the select_ methods, count_all_results, or count_all.

To retreive the results of a query, use the PDO methods fetch and fetchAll.

$query = $db->get('table_name');

$results = $query->fetchAll(PDO::FETCH_ASSOC);