DB Class Updates
This commit is contained in:
parent
1a4770dec2
commit
26e03c3962
@ -85,7 +85,9 @@ class firebird_manip extends db_manip{
|
|||||||
*/
|
*/
|
||||||
function delete_table($name)
|
function delete_table($name)
|
||||||
{
|
{
|
||||||
return "DROP TABLE \"{$name}\"";
|
return <<<SQL
|
||||||
|
DROP TABLE "{$name}"
|
||||||
|
SQL;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,7 @@ class MySQL extends DB_PDO {
|
|||||||
function __construct($dsn, $username=null, $password=null, $options=array())
|
function __construct($dsn, $username=null, $password=null, $options=array())
|
||||||
{
|
{
|
||||||
$options = array_merge(array(
|
$options = array_merge(array(
|
||||||
|
PDO::MYSQL_ATTR_FOUND_ROWS => true
|
||||||
),
|
),
|
||||||
$options);
|
$options);
|
||||||
|
|
||||||
@ -90,7 +90,7 @@ class MySQL extends DB_PDO {
|
|||||||
*/
|
*/
|
||||||
function num_rows()
|
function num_rows()
|
||||||
{
|
{
|
||||||
// TODO: Implement
|
return isset($this->statement) ? $this->statement->rowCount() : FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//End of mysql.php
|
//End of mysql.php
|
@ -40,7 +40,9 @@
|
|||||||
*/
|
*/
|
||||||
function delete_table($name)
|
function delete_table($name)
|
||||||
{
|
{
|
||||||
return "DROP TABLE `{$name}`";
|
return <<<SQL
|
||||||
|
DROP TABLE `{$name}`
|
||||||
|
SQL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//End of mysql_manip.php
|
//End of mysql_manip.php
|
@ -26,7 +26,9 @@ class pgSQL_manip extends db_manip {
|
|||||||
|
|
||||||
function delete_table($name)
|
function delete_table($name)
|
||||||
{
|
{
|
||||||
return 'DROP TABLE "'.$name.'"';
|
return <<<SQL
|
||||||
|
DROP TABLE "{$name}"
|
||||||
|
SQL;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,9 @@ class SQLite_manip extends db_manip {
|
|||||||
*/
|
*/
|
||||||
function delete_table($name)
|
function delete_table($name)
|
||||||
{
|
{
|
||||||
return "DROP TABLE IF EXISTS \"{$name}\"";
|
return <<<SQL
|
||||||
|
DROP TABLE IF EXISTS "{$name}";
|
||||||
|
SQL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user