diff options
Diffstat (limited to 'framework/Data/Common/Sqlite')
4 files changed, 0 insertions, 7 deletions
diff --git a/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php b/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php index 8b840207..7d7d931e 100644 --- a/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php +++ b/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php @@ -14,7 +14,6 @@ namespace Prado\Data\Common\Sqlite; use Prado\Data\Common\TDbCommandBuilder; use Prado\Prado; -Prado::using('System.Data.Common.TDbCommandBuilder'); /** * TSqliteCommandBuilder provides specifics methods to create limit/offset query commands diff --git a/framework/Data/Common/Sqlite/TSqliteMetaData.php b/framework/Data/Common/Sqlite/TSqliteMetaData.php index 4e0fdaed..ae1c043c 100644 --- a/framework/Data/Common/Sqlite/TSqliteMetaData.php +++ b/framework/Data/Common/Sqlite/TSqliteMetaData.php @@ -18,8 +18,6 @@ use Prado\Data\Common\TDbMetaData; use Prado\Exceptions\TDbException; use Prado\Prado; -Prado::using('System.Data.Common.TDbMetaData'); -Prado::using('System.Data.Common.Sqlite.TSqliteTableInfo'); /** * TSqliteMetaData loads SQLite database table and column information. diff --git a/framework/Data/Common/Sqlite/TSqliteTableColumn.php b/framework/Data/Common/Sqlite/TSqliteTableColumn.php index daf427f7..af6c4e91 100644 --- a/framework/Data/Common/Sqlite/TSqliteTableColumn.php +++ b/framework/Data/Common/Sqlite/TSqliteTableColumn.php @@ -17,7 +17,6 @@ namespace Prado\Data\Common\Sqlite; use Prado\Data\Common\TDbTableColumn; use Prado\Prado; -Prado::using('System.Data.Common.TDbTableColumn'); /** * Describes the column metadata of the schema for a PostgreSQL database table. diff --git a/framework/Data/Common/Sqlite/TSqliteTableInfo.php b/framework/Data/Common/Sqlite/TSqliteTableInfo.php index f0143810..aa2272af 100644 --- a/framework/Data/Common/Sqlite/TSqliteTableInfo.php +++ b/framework/Data/Common/Sqlite/TSqliteTableInfo.php @@ -17,8 +17,6 @@ namespace Prado\Data\Common\Sqlite; use Prado\Data\Common\TDbTableInfo; use Prado\Prado; -Prado::using('System.Data.Common.TDbTableInfo'); -Prado::using('System.Data.Common.Sqlite.TSqliteTableColumn'); /** * TSqliteTableInfo class provides additional table information for PostgreSQL database. @@ -35,7 +33,6 @@ class TSqliteTableInfo extends TDbTableInfo */ public function createCommandBuilder($connection) { - Prado::using('System.Data.Common.Sqlite.TSqliteCommandBuilder'); return new TSqliteCommandBuilder($connection,$this); } |