diff options
Diffstat (limited to 'framework/Data/Common/Pgsql')
4 files changed, 16 insertions, 8 deletions
diff --git a/framework/Data/Common/Pgsql/TPgsqlCommandBuilder.php b/framework/Data/Common/Pgsql/TPgsqlCommandBuilder.php index 851dabb5..d9d0c987 100644 --- a/framework/Data/Common/Pgsql/TPgsqlCommandBuilder.php +++ b/framework/Data/Common/Pgsql/TPgsqlCommandBuilder.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\Pgsql */ +namespace Prado\Data\Common\Pgsql; + Prado::using('System.Data.Common.TDbCommandBuilder'); /** @@ -16,7 +18,7 @@ Prado::using('System.Data.Common.TDbCommandBuilder'); * for Pgsql database. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common + * @package Prado\Data\Common\Pgsql * @since 3.1 */ class TPgsqlCommandBuilder extends TDbCommandBuilder diff --git a/framework/Data/Common/Pgsql/TPgsqlMetaData.php b/framework/Data/Common/Pgsql/TPgsqlMetaData.php index e5d30ed7..96f2e091 100644 --- a/framework/Data/Common/Pgsql/TPgsqlMetaData.php +++ b/framework/Data/Common/Pgsql/TPgsqlMetaData.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.Pgsql + * @package Prado\Data\Common\Pgsql */ +namespace Prado\Data\Common\Pgsql; + /** * Load the base TDbMetaData class. */ @@ -19,7 +21,7 @@ Prado::using('System.Data.Common.Pgsql.TPgsqlTableInfo'); * TPgsqlMetaData loads PostgreSQL database table and column information. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common.Pgsql + * @package Prado\Data\Common\Pgsql * @since 3.1 */ class TPgsqlMetaData extends TDbMetaData diff --git a/framework/Data/Common/Pgsql/TPgsqlTableColumn.php b/framework/Data/Common/Pgsql/TPgsqlTableColumn.php index fd0fd23c..75bd2aac 100644 --- a/framework/Data/Common/Pgsql/TPgsqlTableColumn.php +++ b/framework/Data/Common/Pgsql/TPgsqlTableColumn.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.Pgsql + * @package Prado\Data\Common\Pgsql */ +namespace Prado\Data\Common\Pgsql; + /** * Load common TDbTableCommon class. */ @@ -18,7 +20,7 @@ Prado::using('System.Data.Common.TDbTableColumn'); * Describes the column metadata of the schema for a PostgreSQL database table. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common.Pgsql + * @package Prado\Data\Common\Pgsql * @since 3.1 */ class TPgsqlTableColumn extends TDbTableColumn diff --git a/framework/Data/Common/Pgsql/TPgsqlTableInfo.php b/framework/Data/Common/Pgsql/TPgsqlTableInfo.php index 43298ffa..bc27a6d5 100644 --- a/framework/Data/Common/Pgsql/TPgsqlTableInfo.php +++ b/framework/Data/Common/Pgsql/TPgsqlTableInfo.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.Pgsql + * @package Prado\Data\Common\Pgsql */ +namespace Prado\Data\Common\Pgsql; + /** * Loads the base TDbTableInfo class and TPgsqlTableColumn class. */ @@ -19,7 +21,7 @@ Prado::using('System.Data.Common.Pgsql.TPgsqlTableColumn'); * TPgsqlTableInfo class provides additional table information for PostgreSQL database. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @package System.Data.Common.Pgsql + * @package Prado\Data\Common\Pgsql * @since 3.1 */ class TPgsqlTableInfo extends TDbTableInfo |