OpenSQLManager/sys/db/drivers/odbc/odbc_driver.php

67 lines
1.4 KiB
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
2012-03-28 11:23:08 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
2012-01-26 16:09:05 -05:00
*/
// --------------------------------------------------------------------------
/**
* 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-02-21 11:45:42 -05:00
public function __construct($dsn, $username=null, $password=null, $options=array())
2012-01-30 07:57:17 -05:00
{
parent::__construct("odbc:$dsn", $username, $password, $options);
$class = __CLASS__.'_sql';
$this->sql = new $class;
2012-01-30 07:57:17 -05:00
}
2012-03-28 11:23:08 -04:00
// --------------------------------------------------------------------------
2012-01-30 07:57:17 -05:00
2012-04-09 15:24:10 -04:00
/**
* Doesn't apply to ODBC
*/
public function switch_db($name)
{
return FALSE;
}
// --------------------------------------------------------------------------
2012-02-06 16:34:00 -05:00
/**
* Empty the current database
2012-03-28 11:23:08 -04:00
*
2012-02-06 16:34:00 -05:00
* @return void
*/
2012-02-21 11:45:42 -05:00
public function truncate($table)
2012-02-06 16:34:00 -05:00
{
$sql = "DELETE FROM {$table}";
$this->query($sql);
}
2012-03-28 11:23:08 -04:00
// --------------------------------------------------------------------------
2012-02-06 16:34:00 -05:00
2012-02-06 16:56:16 -05:00
/**
* Return the number of rows returned for a SELECT query
2012-03-28 11:23:08 -04:00
*
2012-02-06 16:56:16 -05:00
* @return int
*/
2012-02-21 11:45:42 -05:00
public function num_rows()
2012-02-06 16:56:16 -05:00
{
2012-03-28 11:23:08 -04:00
// @TODO: Implement
2012-02-06 16:56:16 -05:00
}
}
2012-04-09 15:41:48 -04:00
// End of odbc_driver.php