171 lines
2.9 KiB
PHP
171 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Query
|
|
*
|
|
* Free Query Builder / Database Abstraction Layer
|
|
*
|
|
* @package Query
|
|
* @author Timothy J. Warren
|
|
* @copyright Copyright (c) 2012
|
|
* @link https://github.com/aviat4ion/Query
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
*/
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* ODBC SQL Class
|
|
*
|
|
* @package Query
|
|
* @subpackage Drivers
|
|
*/
|
|
class ODBC_SQL extends DB_SQL {
|
|
|
|
/**
|
|
* Limit clause
|
|
*
|
|
* @param string $sql
|
|
* @param int $limit
|
|
* @param int $offset
|
|
* @return string
|
|
*/
|
|
public function limit($sql, $limit, $offset=FALSE)
|
|
{
|
|
return $sql;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Random ordering keyword
|
|
*
|
|
* @return string
|
|
*/
|
|
public function random()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Returns sql to list other databases
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function db_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Returns sql to list tables
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function table_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Returns sql to list system tables
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function system_table_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Returns sql to list views
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function view_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Returns sql to list triggers
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function trigger_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Return sql to list functions
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function function_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Return sql to list stored procedures
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function procedure_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Return sql to list sequences
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function sequence_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* SQL to show list of field types
|
|
*
|
|
* @return FALSE
|
|
*/
|
|
public function type_list()
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* SQL to show infromation about columns in a table
|
|
*
|
|
* @param string $table
|
|
* @return FALSE
|
|
*/
|
|
public function column_list($table)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|
|
// End of odbc_sql.php
|