home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-04-23 | 545 b | 29 lines |
- package COM.odi.demo.rep;
-
- /**
- * <H3>Copyright (C) Object Design Inc. 1996, 1997</H3>
- *
- * Look up the value of root "r1" of the database, and describe
- * this rectangle.
- */
-
- import COM.odi.*;
-
- public
- class Lookup {
-
- public static void main(String argv[]) {
-
- ObjectStore.initialize(null, null);
-
- Database db = Database.open(argv[0], ObjectStore.OPEN_READONLY);
-
- Transaction t = Transaction.begin(ObjectStore.UPDATE) ;
-
- Rectangle rec = (Rectangle)db.getRoot("r1");
- rec.describe();
-
- t.commit();
- }
- }
-