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

Another little problems




There are three other little problems in the ODMG sample source distributed
with ozone
package (0.6).

1)In the AutoImpl.java file
the line
         EnhDatabase db = ODMG.getDatabase2( this );
must be changed to (cast problem)
        EnhDatabase db =
org.ozoneDB.odmg.EnhDatabase)ODMG.getDatabase2( this );

2) In The Client.java file
 the line
 public static EnhImplementation odmg;
must be changed to
 public static Implementation odmg;

the line
db.open( "ozone:remote://localhost:3333", Database.OPEN_READ_WRITE );
must be changed to
db.open( "ozonedb:remote://localhost:3333", Database.OPEN_READ_WRITE );




Jose Carlos