Examples of MySQLinsert()


Examples of niso.DBHandler.MySQLinsert()

  @Override
  public void actionPerformed(ActionEvent AE) {
    DBHandler DBH=Parent.getDBHandler();
    if(AE.getSource()==AddBt){
      String newUser=AdduserBox.getText();
      DBH.MySQLinsert("INSERT into UserAccount values('"+newUser+"','"+AddPass.getText()+"','"+AddUserType.getSelectedItem()+"');",ErrorAdd);
      setComboBoxItems(UserBox);
      setComboBoxItems(DelUserBox);
      UserBox.setSelectedItem(newUser);
     
     
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.