Advertisement
joseleonweb

Untitled

May 4th, 2021
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. public static void main(String[] args) {
  2.   ObjectContainer db =
  3.    Db4oEmbedded.openFile
  4.    (Db4oEmbedded.newConfiguration(), "fitxer.db4o");
  5.     Persona jordi = new Persona("Jordi","A", 30);
  6.     Persona josep = new Persona("Josep","B", 30);
  7.     Persona maria = new Persona("Maria","C", 40);
  8.     jordi.guardar(db);
  9.    josep.guardar(db);
  10.     maria.guardar(db);
  11.    db.commit();
  12.     ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement