import java.util.*; public class BenytDataforbindelse { public static void main(String arg[]) { try { Dataforbindelse dbf = Dataforbindelse.hentForbindelse(); List liste = dbf.hentAlle(); System.out.println("Alle data: "+ liste); dbf.sletAlleData(); System.out.println("Alle data nu: "+dbf.hentAlle()); dbf.indsæt( new Kunde("Kurt",1000) ); dbf.indsæt( new Kunde("kunde indsat fra BenytDataforbindelse", 2) ); System.out.println("Alle data nu: "+dbf.hentAlle()); } catch(Exception e) { System.out.println("Problem med dataforbindelse: "+e); e.printStackTrace(); } } }