Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1927)
+++ branches/2.8.x/CHANGELOG	(revision 1928)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+20 Jun-2013 Build 1928 Werner v.d.Decken(DarkViper)
+# class WbDatabase fixed select_db() in multiconnect modus
 10 Jun-2013 Build 1927 Werner v.d.Decken(DarkViper)
 # TranslateAdaptorWbOldStyle forgotten second arg for trim added
 10 Jun-2013 Build 1926 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1927)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1928)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '1927');
+if(!defined('REVISION')) define('REVISION', '1928');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/WbDatabase.php
===================================================================
--- branches/2.8.x/wb/framework/WbDatabase.php	(revision 1927)
+++ branches/2.8.x/wb/framework/WbDatabase.php	(revision 1928)
@@ -115,18 +115,19 @@
 		}
 		$this->_db_handle = @mysql_connect($hostname.$hostport,
 		                                   $username,
-		                                   $password);
+		                                   $password,
+		                                   true);
 		if(!$this->_db_handle) {
 			throw new WbDatabaseException('unable to connect \''.$scheme.'://'.
 			                           $hostname.$hostport.'\'');
 		} else {
-			if(!@mysql_select_db($db_name)) {
+			if(!@mysql_select_db($db_name, $this->_db_handle)) {
 				throw new WbDatabaseException('unable to select database \''.$db_name.
 				                           '\' on \''.$scheme.'://'.
 				                           $hostname.$hostport.'\'');
 			} else {
 				if($this->sCharset) {
-					@mysql_query('SET NAMES \''.$this->sCharset.'\'');
+					@mysql_query('SET NAMES \''.$this->sCharset.'\'', $this->_db_handle);
 				}
 				$this->connected = true;
 			}
