diff options
author | xue <> | 2007-03-09 20:21:01 +0000 |
---|---|---|
committer | xue <> | 2007-03-09 20:21:01 +0000 |
commit | 488bc60e3e84096ee2a58471c8028cb3c682b371 (patch) | |
tree | 1701b88afeac4736baef2cc755a3123e4a0733fa /framework/Data/TDataSourceConfig.php | |
parent | 8a674fb83fa2dd80bc653745e03b24450a9cf68d (diff) |
added TDbUserManager and TDbUser.
Diffstat (limited to 'framework/Data/TDataSourceConfig.php')
-rw-r--r-- | framework/Data/TDataSourceConfig.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/framework/Data/TDataSourceConfig.php b/framework/Data/TDataSourceConfig.php index 93857b16..df444e97 100644 --- a/framework/Data/TDataSourceConfig.php +++ b/framework/Data/TDataSourceConfig.php @@ -10,6 +10,8 @@ * @package System.Data
*/
+Prado::using('System.Data.TDbConnection');
+
/**
* TDataSourceConfig module class provides <module> configuration for database connections.
*
@@ -46,7 +48,7 @@ */
class TDataSourceConfig extends TModule
{
- private $_connID;
+ private $_connID='';
private $_conn;
private $_connClass='System.Data.TDbConnection';
@@ -91,9 +93,9 @@ class TDataSourceConfig extends TModule */
public function getDbConnection()
{
- if(is_null($this->_conn))
+ if($this->_conn===null)
{
- if(!is_null($this->_connID))
+ if($this->_connID!=='')
$this->_conn = $this->findConnectionByID($this->getConnectionID());
else
$this->_conn = Prado::createComponent($this->getConnectionClass());
|