- Timestamp:
- 01/11/08 18:23:08 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/rdbms/stubDatabaseConnectionPool.php
r527 r1225 7 7 * @subpackage rdbms 8 8 */ 9 stubClassLoader::load('net .stubbles.rdbms.stubDatabaseConnection',10 'net .stubbles.rdbms.stubDatabaseConnectionData',11 'net .stubbles.rdbms.stubDatabaseException'9 stubClassLoader::load('net::stubbles::rdbms::stubDatabaseConnection', 10 'net::stubbles::rdbms::stubDatabaseConnectionData', 11 'net::stubbles::rdbms::stubDatabaseException' 12 12 ); 13 13 /** … … 57 57 $connection = new $nqClassName(self::$connectionData[$id]); 58 58 if (($connection instanceof stubDatabaseConnection) == false) { 59 throw new stubDatabaseException(self::$connectionData[$id]->getConnectionClassName() . ' is not an instance of net .stubbles.rdbms.stubDatabaseConnection.');59 throw new stubDatabaseException(self::$connectionData[$id]->getConnectionClassName() . ' is not an instance of net::stubbles::rdbms::stubDatabaseConnection.'); 60 60 } 61 61
