This commit is contained in:
parent
eb1a96b0b6
commit
747369185b
1 changed files with 0 additions and 10 deletions
|
@ -67,11 +67,6 @@ class Doctrine_Import_Sqlite extends Doctrine_Import
|
||||||
*/
|
*/
|
||||||
public function listSequences($database = null)
|
public function listSequences($database = null)
|
||||||
{
|
{
|
||||||
$db =& $this->getDBInstance();
|
|
||||||
if (PEAR::isError($db)) {
|
|
||||||
return $db;
|
|
||||||
}
|
|
||||||
|
|
||||||
$query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL ORDER BY name";
|
$query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL ORDER BY name";
|
||||||
$table_names = $db->queryCol($query);
|
$table_names = $db->queryCol($query);
|
||||||
if (PEAR::isError($table_names)) {
|
if (PEAR::isError($table_names)) {
|
||||||
|
@ -96,11 +91,6 @@ class Doctrine_Import_Sqlite extends Doctrine_Import
|
||||||
*/
|
*/
|
||||||
public function listTableConstraints($table)
|
public function listTableConstraints($table)
|
||||||
{
|
{
|
||||||
$db =& $this->getDBInstance();
|
|
||||||
if (PEAR::isError($db)) {
|
|
||||||
return $db;
|
|
||||||
}
|
|
||||||
|
|
||||||
$table = $db->quote($table, 'text');
|
$table = $db->quote($table, 'text');
|
||||||
$query = "SELECT sql FROM sqlite_master WHERE type='index' AND ";
|
$query = "SELECT sql FROM sqlite_master WHERE type='index' AND ";
|
||||||
if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
|
if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue