Fixed incorrect output for odbc_sql method
This commit is contained in:
parent
9aad56fafe
commit
8a040a2b45
@ -248,6 +248,8 @@ abstract class DB_PDO extends PDO {
|
||||
* Abstract parent for database manipulation subclasses
|
||||
*/
|
||||
abstract class DB_SQL {
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Get database-specific sql to create a new table
|
||||
|
@ -48,7 +48,7 @@ class ODBC_SQL extends DB_SQL {
|
||||
*/
|
||||
public function limit($sql, $limit, $offset=FALSE)
|
||||
{
|
||||
return FALSE;
|
||||
return $sql;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user