javadb/org/homelinux/largo/sql/client/DBClient.java
changeset 123 07b2c0b991af
parent 105 c19e37122deb
child 135 f837cf975e95
equal deleted inserted replaced
122:50ba3b0e271a 123:07b2c0b991af
    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);