diff options
author | David <ottodavid@gmx.net> | 2015-07-11 12:31:44 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2015-07-11 12:39:42 +0200 |
commit | b46b4e7acb00715982a8d3543fb22f5ac64c88fe (patch) | |
tree | 88a6aa5c49a05874d1c2d3f64eb5f283e0c87cb1 /framework/Data/Common/Sqlite | |
parent | 6dae236ec5528522de472637f9d70a98158b9a5d (diff) |
Added missing use statements in framework
Diffstat (limited to 'framework/Data/Common/Sqlite')
4 files changed, 13 insertions, 0 deletions
diff --git a/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php b/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php index fe890a31..8b840207 100644 --- a/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php +++ b/framework/Data/Common/Sqlite/TSqliteCommandBuilder.php @@ -11,6 +11,9 @@ namespace Prado\Data\Common\Sqlite; +use Prado\Data\Common\TDbCommandBuilder; +use Prado\Prado; + Prado::using('System.Data.Common.TDbCommandBuilder'); /** diff --git a/framework/Data/Common/Sqlite/TSqliteMetaData.php b/framework/Data/Common/Sqlite/TSqliteMetaData.php index 0985305f..4e0fdaed 100644 --- a/framework/Data/Common/Sqlite/TSqliteMetaData.php +++ b/framework/Data/Common/Sqlite/TSqliteMetaData.php @@ -14,6 +14,10 @@ namespace Prado\Data\Common\Sqlite; /** * Load the base TDbMetaData class. */ +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'); diff --git a/framework/Data/Common/Sqlite/TSqliteTableColumn.php b/framework/Data/Common/Sqlite/TSqliteTableColumn.php index ba33b591..daf427f7 100644 --- a/framework/Data/Common/Sqlite/TSqliteTableColumn.php +++ b/framework/Data/Common/Sqlite/TSqliteTableColumn.php @@ -14,6 +14,9 @@ namespace Prado\Data\Common\Sqlite; /** * Load common TDbTableCommon class. */ +use Prado\Data\Common\TDbTableColumn; +use Prado\Prado; + Prado::using('System.Data.Common.TDbTableColumn'); /** diff --git a/framework/Data/Common/Sqlite/TSqliteTableInfo.php b/framework/Data/Common/Sqlite/TSqliteTableInfo.php index f08c8229..f0143810 100644 --- a/framework/Data/Common/Sqlite/TSqliteTableInfo.php +++ b/framework/Data/Common/Sqlite/TSqliteTableInfo.php @@ -14,6 +14,9 @@ namespace Prado\Data\Common\Sqlite; /** * Loads the base TDbTableInfo class and TSqliteTableColumn class. */ +use Prado\Data\Common\TDbTableInfo; +use Prado\Prado; + Prado::using('System.Data.Common.TDbTableInfo'); Prado::using('System.Data.Common.Sqlite.TSqliteTableColumn'); |