OpenSQLManager/src/databases/odbc.php

53 lines
1009 B
PHP
Raw Normal View History

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
*/
// --------------------------------------------------------------------------
/**
* ODBC Database Driver
*
* For general database access for databases not specified by the main drivers
2012-01-30 07:57:17 -05:00
*
* @extends DB_PDO
*/
2012-01-26 16:09:05 -05:00
class ODBC extends DB_PDO {
2012-01-30 07:57:17 -05:00
function __construct($dsn, $username=null, $password=null, $options=array())
{
parent::__construct("odbc:$dsn", $username, $password, $options);
2012-01-30 07:57:17 -05:00
}
2012-02-02 19:07:26 -05:00
/**
* List tables for the current database
*
* @return mixed
*/
function get_tables()
{
//Not possible reliably with this driver
return FALSE;
}
2012-02-06 16:34:00 -05:00
/**
* Empty the current database
*
* @return void
*/
function truncate($table)
{
$sql = "DELETE FROM {$table}";
$this->query($sql);
}
}
// End of odbc.php