Package config

Examples of config.dbconnect


import java.sql.SQLException;

public class main extends javax.swing.JFrame {
   
    public void checklogin(){
            Connection conn = new dbconnect().getconnection();
        try{
            String checkuserpass = "SELECT user,pass,usergroup FROM user";
            if(("".equals(txtuser.getText())) && ("".equals(txtpass.getText()))){
                JOptionPane.showMessageDialog(this,"กรุณากรอกข้อมูลให้ครบทุกช่องด้วยค่ะ","แจ้งเตือนการกรอกข้อมูล",JOptionPane.WARNING_MESSAGE);
            }
View Full Code Here

TOP

Related Classes of config.dbconnect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.