Commit: cbebfb5fdc522812c8a9fc21bcd199a47e36cff4
Author: heptat | Date: 2010-07-24 00:31:51 +1000
diff --git a/extensions/data/source/MSSql.php b/extensions/data/source/MSSql.php
index e7d9162..579a6e5 100644
--- a/extensions/data/source/MSSql.php
+++ b/extensions/data/source/MSSql.php
@@ -10,7 +10,6 @@
namespace li3_mssql\extensions\data\source;
use \Exception;
-use \lithium\analysis\Debugger;
// test comment, please ignore
@@ -53,8 +52,6 @@ class MSSql extends \li3_mssql\extensions\data\source\MicrosoftSqlServer {
$config = $this->_config;
$this->_isConnected = false;
- // Debugger::dump($config); exit;
-
$host = $config['host'] . ':';
if (isset($config['port']) && $config['port'] != '') {
$host .= $config['port'];
@@ -181,11 +178,7 @@ class MSSql extends \li3_mssql\extensions\data\source\MicrosoftSqlServer {
return $this->_filter(__METHOD__, $params, function($self, $params, $chain) use (&$conn) {
extract($params);
- echo '<pre>';
- print_r($sql);
- echo '</pre>'; exit;
if ( !is_resource($result = mssql_query($sql, $conn)) ) {
- echo $result; exit;
list($code, $error) = $self->error();
throw new Exception("$sql: $error", $code);
}