Timothy Warren
2a1ac30308
Removed __call and __callStatic from main db class, added empty 'truncate' methods to db classes
37 lines
592 B
PHP
37 lines
592 B
PHP
<?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
|
|
*/
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* SQLite specific class
|
|
*
|
|
* @extends DB_PDO
|
|
*/
|
|
class SQLite extends DB_PDO {
|
|
|
|
function __construct($dsn)
|
|
{
|
|
parent::__construct($dsn);
|
|
}
|
|
|
|
/**
|
|
* Empty a table
|
|
*
|
|
* @param string $table
|
|
*/
|
|
function truncate($table)
|
|
{
|
|
|
|
}
|
|
|
|
} |