To alternativer:
- Opret forbindelse til
testdb
- Få adgang til din tabel ved hjælp af databasekvalifikation.
Opretter forbindelse til testdb :
con = DriverManager.getConnection
("jdbc:mysql://localhost:3306/testdb", "root", "password");
Brug af databasekvalifikation :
query = " insert into testdb.table1 (name)"+ " values (?)";