Code: Select all
public class regularcustomerreg extends javax.swing.JFrame {
/**
* Creates new form regularcustomerreg
*/
public regularcustomerreg() {
initComponents();
}
Connection con;
PreparedStatement pst;
public void Connect() {
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost/lutonhotel", "root", "");
} catch (ClassNotFoundException ex) {
Logger.getLogger(regularcustomerreg.class.getName()).log(Level.SEVERE, null, ex);
}
}