diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php
index 09ca07e..4d1fac2 100644
--- a/system/database/drivers/odbc/odbc_driver.php
+++ b/system/database/drivers/odbc/odbc_driver.php
@@ -38,7 +38,7 @@
 	 */	
 	function db_connect()
 	{
-		return odbc_connect($this->database, $this->username, $this->password);
+		return @odbc_connect($this->database, $this->username, $this->password);
 	}
 	
 	// --------------------------------------------------------------------
@@ -51,7 +51,7 @@
 	 */	
 	function db_pconnect()
 	{
-		return odbc_pconnect($this->database, $this->username, $this->password);
+		return @odbc_pconnect($this->database, $this->username, $this->password);
 	}
 	
 	// --------------------------------------------------------------------