summaryrefslogtreecommitdiff
path: root/framework/Data/Common/Pgsql
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-21 09:10:08 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-21 09:10:08 +0100
commitb780f073fc8a522cae078f3e53d6fa73dbd5e63b (patch)
tree8766bed34820042a456be6bdeed6091371f4504f /framework/Data/Common/Pgsql
parentbbda6a710849a46de98937e85e96ea06abe333fd (diff)
Add namespaces: Caching, Collections, Data
Diffstat (limited to 'framework/Data/Common/Pgsql')
-rw-r--r--framework/Data/Common/Pgsql/TPgsqlCommandBuilder.php6
-rw-r--r--framework/Data/Common/Pgsql/TPgsqlMetaData.php6
-rw-r--r--framework/Data/Common/Pgsql/TPgsqlTableColumn.php6
-rw-r--r--framework/Data/Common/Pgsql/TPgsqlTableInfo.php6
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 &copy; 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 &copy; 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 &copy; 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 &copy; 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