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/Mysql | |
parent | 6dae236ec5528522de472637f9d70a98158b9a5d (diff) |
Added missing use statements in framework
Diffstat (limited to 'framework/Data/Common/Mysql')
4 files changed, 15 insertions, 0 deletions
diff --git a/framework/Data/Common/Mysql/TMysqlCommandBuilder.php b/framework/Data/Common/Mysql/TMysqlCommandBuilder.php index fd9f9aef..a4f717e0 100644 --- a/framework/Data/Common/Mysql/TMysqlCommandBuilder.php +++ b/framework/Data/Common/Mysql/TMysqlCommandBuilder.php @@ -11,6 +11,9 @@ namespace Prado\Data\Common\Mysql; +use Prado\Data\Common\TDbCommandBuilder; +use Prado\Prado; + Prado::using('System.Data.Common.TDbCommandBuilder'); /** diff --git a/framework/Data/Common/Mysql/TMysqlMetaData.php b/framework/Data/Common/Mysql/TMysqlMetaData.php index 668c8413..f2754181 100644 --- a/framework/Data/Common/Mysql/TMysqlMetaData.php +++ b/framework/Data/Common/Mysql/TMysqlMetaData.php @@ -14,6 +14,12 @@ namespace Prado\Data\Common\Mysql; /** * Load the base TDbMetaData class. */ +use PDO; +use Prado\Data\Common\TDbMetaData; +use Prado\Data\TDbColumnCaseMode; +use Prado\Exceptions\TDbException; +use Prado\Prado; + Prado::using('System.Data.Common.TDbMetaData'); Prado::using('System.Data.Common.Mysql.TMysqlTableInfo'); diff --git a/framework/Data/Common/Mysql/TMysqlTableColumn.php b/framework/Data/Common/Mysql/TMysqlTableColumn.php index 4ad936f5..ef1e35c9 100644 --- a/framework/Data/Common/Mysql/TMysqlTableColumn.php +++ b/framework/Data/Common/Mysql/TMysqlTableColumn.php @@ -14,6 +14,9 @@ namespace Prado\Data\Common\Mysql; /** * Load common TDbTableCommon class. */ +use Prado\Data\Common\TDbTableColumn; +use Prado\Prado; + Prado::using('System.Data.Common.TDbTableColumn'); /** diff --git a/framework/Data/Common/Mysql/TMysqlTableInfo.php b/framework/Data/Common/Mysql/TMysqlTableInfo.php index 041b12ff..896f4e59 100644 --- a/framework/Data/Common/Mysql/TMysqlTableInfo.php +++ b/framework/Data/Common/Mysql/TMysqlTableInfo.php @@ -14,6 +14,9 @@ namespace Prado\Data\Common\Mysql; /** * Loads the base TDbTableInfo class and TMysqlTableColumn class. */ +use Prado\Data\Common\TDbTableInfo; +use Prado\Prado; + Prado::using('System.Data.Common.TDbTableInfo'); Prado::using('System.Data.Common.Mysql.TMysqlTableColumn'); |