[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Hi



In the tutorial on the web
In MyApp you have 

// create and open a new database connection db = 
ExternalDatabase.openDatabase( "ozonedb:remote://localhost:3333" ); 
System.out.println( "Connected ..." ); 

the compiler complains that there is no openDatabase() and in the source 
i can only find open()
in the tutorial in the sources you have :
 // create a new database proxy
        RemoteDatabase db = new RemoteDatabase();

        try {
            //  open the connection on localhost at port 3333
            db.open ("localhost", 3333);

            System.out.println ("Connected ...");