2012-01-26 16:09:05 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* OpenSQLManager
|
|
|
|
*
|
|
|
|
* Free Database manager for Open Source Databases
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/OpenSQLManager
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
2012-01-30 07:57:17 -05:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2012-01-31 16:29:48 -05:00
|
|
|
// Test for support
|
|
|
|
if( ! in_array('mysql', pdo_drivers()))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-01-30 07:57:17 -05:00
|
|
|
/**
|
|
|
|
* MySQL specific class
|
|
|
|
*
|
|
|
|
* @extends DB_PDO
|
|
|
|
*/
|
|
|
|
class MySQL extends DB_PDO {
|
|
|
|
|
|
|
|
function __construct($dsn, $username=null, $password=null, $options=array())
|
|
|
|
{
|
|
|
|
parent::__construct($dsn, $username, $password, $options);
|
|
|
|
}
|
2012-01-26 16:09:05 -05:00
|
|
|
|
2012-01-30 14:03:16 -05:00
|
|
|
/**
|
|
|
|
* Empty a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
*/
|
|
|
|
function truncate($table)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-01-26 16:09:05 -05:00
|
|
|
}
|