issue 2237 remove auto create DB object

DB object should created by create method


git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11027 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2012-08-16 02:09:14 +00:00
parent 173d3a72e3
commit 4b2e7f76f1
8 changed files with 0 additions and 16 deletions

View file

@ -1003,6 +1003,4 @@
return $select . ' ' . $from . ' ' . $where . ' ' . $groupBy . ' ' . $orderBy . ' ' . $limit; return $select . ' ' . $from . ' ' . $where . ' ' . $groupBy . ' ' . $orderBy . ' ' . $limit;
} }
} }
return new DBCubrid;
?> ?>

View file

@ -865,6 +865,4 @@
} }
} }
return new DBFireBird;
?> ?>

View file

@ -734,6 +734,4 @@
} }
} }
return new DBMssql;
?> ?>

View file

@ -677,6 +677,4 @@ class DBMysql extends DB {
return $select . ' ' . $from . ' ' . $where . ' ' . $groupBy . ' ' . $orderBy . ' ' . $limit; return $select . ' ' . $from . ' ' . $where . ' ' . $groupBy . ' ' . $orderBy . ' ' . $limit;
} }
} }
return new DBMysql;
?> ?>

View file

@ -159,6 +159,4 @@
if(!$output) return false; if(!$output) return false;
} }
} }
return new DBMysql_innodb;
?> ?>

View file

@ -370,6 +370,4 @@
return mysqli_free_result($result); return mysqli_free_result($result);
} }
} }
return new DBMysqli;
?> ?>

View file

@ -597,6 +597,4 @@ class DBPostgresql extends DB
return new DBParser('"', '"', $this->prefix); return new DBParser('"', '"', $this->prefix);
} }
} }
return new DBPostgresql;
?> ?>

View file

@ -633,6 +633,4 @@
return $sql; return $sql;
} }
} }
return new DBSqlite3_pdo;
?> ?>