summaryrefslogtreecommitdiff
path: root/framework/DataAccess/TCreoleProvider.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/DataAccess/TCreoleProvider.php')
-rw-r--r--framework/DataAccess/TCreoleProvider.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/framework/DataAccess/TCreoleProvider.php b/framework/DataAccess/TCreoleProvider.php
index 51b7013a..f4ccd4c2 100644
--- a/framework/DataAccess/TCreoleProvider.php
+++ b/framework/DataAccess/TCreoleProvider.php
@@ -1,7 +1,6 @@
<?php
Prado::using('System.DataAccess.TDatabaseProvider');
-Prado::using('System.DataAccess.TDatabaseException');
Prado::using('System.DataAccess.creole.*');
@@ -61,7 +60,7 @@ class TCreoleConnection extends TDbConnection
return $this->_connection->prepareStatement($statement);
}
- //public function execute($sql,
+ //public function execute($sql,
/**
* Opens a database connection with settings provided in the ConnectionString.
@@ -75,7 +74,7 @@ class TCreoleConnection extends TDbConnection
throw new TDbConnectionException('db_driver_required');
$class = 'System.DataAccess.creole.creole.Creole';
$creole = Prado::createComponent($class);
- $this->_connection = $creole->getConnection($connectionString);
+ $this->_connection = $creole->getConnection($connectionString);
}
return $this->_connection;
}