源码简介: |
主程序 关于学生信息管理系统的 程序开发的代码- Public void jButton1_actionPerformed(ActionEvent e) { driver=jTextField1.getText() URL=jTextField2.getText() table=jTextField3.getText() name=jTextField4.getText() password=jTextField5.getText() try{ Class.forName(driver) //加载驱动程序 con = DriverManager.getConnection(URL, name,password) //创建连接 this.setVisible(false) new MainFrame() con.close() } catch (Exception e1) { JOptionPane.showMessageDialog(null, "数据库连接出错 请检查参数 ", "系统提示", JOptionPane. INFORMATION_MESSAGE) } }
|