Show
Ignore:
Timestamp:
01/11/08 18:23:08 (8 months ago)
Author:
mikey
Message:

continued refactoring #119: replaced package dots in net::stubbles::rdbms

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/rdbms/stubDatabaseConnectionPool.php

    r527 r1225  
    77 * @subpackage  rdbms 
    88 */ 
    9 stubClassLoader::load('net.stubbles.rdbms.stubDatabaseConnection', 
    10                       'net.stubbles.rdbms.stubDatabaseConnectionData', 
    11                       'net.stubbles.rdbms.stubDatabaseException' 
     9stubClassLoader::load('net::stubbles::rdbms::stubDatabaseConnection', 
     10                      'net::stubbles::rdbms::stubDatabaseConnectionData', 
     11                      'net::stubbles::rdbms::stubDatabaseException' 
    1212); 
    1313/** 
     
    5757            $connection = new $nqClassName(self::$connectionData[$id]); 
    5858            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.'); 
    6060            } 
    6161