diff options
Diffstat (limited to 'framework/Data/Common/Mssql')
4 files changed, 16 insertions, 8 deletions
diff --git a/framework/Data/Common/Mssql/TMssqlCommandBuilder.php b/framework/Data/Common/Mssql/TMssqlCommandBuilder.php index ac718bcb..d2273d72 100644 --- a/framework/Data/Common/Mssql/TMssqlCommandBuilder.php +++ b/framework/Data/Common/Mssql/TMssqlCommandBuilder.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Data.Common + * @package Prado\Data\Common\Mssql */ +namespace Prado\Data\Common\Mssql; + Prado::using('System.Data.Common.TDbCommandBuilder'); /** @@ -16,7 +18,7 @@ Prado::using('System.Data.Common.TDbCommandBuilder'); * for MSSQL servers. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common + * @package Prado\Data\Common\Mssql * @since 3.1 */ class TMssqlCommandBuilder extends TDbCommandBuilder diff --git a/framework/Data/Common/Mssql/TMssqlMetaData.php b/framework/Data/Common/Mssql/TMssqlMetaData.php index 990639af..d5581ed0 100644 --- a/framework/Data/Common/Mssql/TMssqlMetaData.php +++ b/framework/Data/Common/Mssql/TMssqlMetaData.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Data.Common.Mssql + * @package Prado\Data\Common\Mssql */ +namespace Prado\Data\Common\Mssql; + /** * Load the base TDbMetaData class. */ @@ -19,7 +21,7 @@ Prado::using('System.Data.Common.Mssql.TMssqlTableInfo'); * TMssqlMetaData loads MSSQL database table and column information. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common.Mssql + * @package Prado\Data\Common\Mssql * @since 3.1 */ class TMssqlMetaData extends TDbMetaData diff --git a/framework/Data/Common/Mssql/TMssqlTableColumn.php b/framework/Data/Common/Mssql/TMssqlTableColumn.php index e3bd431e..9ce0cc1d 100644 --- a/framework/Data/Common/Mssql/TMssqlTableColumn.php +++ b/framework/Data/Common/Mssql/TMssqlTableColumn.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Data.Common.Mssql + * @package Prado\Data\Common\Mssql */ +namespace Prado\Data\Common\Mssql; + /** * Load common TDbTableCommon class. */ @@ -18,7 +20,7 @@ Prado::using('System.Data.Common.TDbTableColumn'); * Describes the column metadata of the schema for a Mssql database table. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common.Mssql + * @package Prado\Data\Common\Mssql * @since 3.1 */ class TMssqlTableColumn extends TDbTableColumn diff --git a/framework/Data/Common/Mssql/TMssqlTableInfo.php b/framework/Data/Common/Mssql/TMssqlTableInfo.php index d003b336..005b767f 100644 --- a/framework/Data/Common/Mssql/TMssqlTableInfo.php +++ b/framework/Data/Common/Mssql/TMssqlTableInfo.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Data.Common.Mssql + * @package Prado\Data\Common\Mssql */ +namespace Prado\Data\Common\Mssql; + /** * Loads the base TDbTableInfo class and TMssqlTableColumn class. */ @@ -19,7 +21,7 @@ Prado::using('System.Data.Common.Mssql.TMssqlTableColumn'); * TMssqlTableInfo class provides additional table information for Mssql database. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common.Mssql + * @package Prado\Data\Common\Mssql * @since 3.1 */ class TMssqlTableInfo extends TDbTableInfo |