package test; import java.sql.*; import dbtackle.Database; public class DatabaseImpl extends Database { static { try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException ex) { // something to do. } } @Override protected Connection getConnection() throws SQLException { Connection con = DriverManager.getConnection("jdbc:mysql://ƒƒT[ƒoFƒ|[ƒg„/yumewaza1", "ƒƒ†[ƒUID„", "ƒƒpƒXƒ[ƒh„"); con.setAutoCommit(false); return con; } }