equal
deleted
inserted
replaced
20 /** |
20 /** |
21 * Default Konstruktor to connect to my database |
21 * Default Konstruktor to connect to my database |
22 */ |
22 */ |
23 public DBClient () throws Exception { |
23 public DBClient () throws Exception { |
24 this.driver = "org.apache.derby.jdbc.EmbeddedDriver"; |
24 this.driver = "org.apache.derby.jdbc.EmbeddedDriver"; |
25 this.dbURL = "jdbc:derby://localhost/clubstatistik"; |
25 this.dbURL = "jdbc:derby:clubstatistik"; |
26 |
26 |
27 this.username = null; |
27 this.username = null; |
28 this.password = null; |
28 this.password = null; |
29 |
29 |
30 Class.forName (driver); |
30 Class.forName (driver); |