如何在netbeans中连接java derby数据库

时间:2013-11-19 20:24:57

标签: java sql swing netbeans derby

我已经连接创建了表,表名是“contact db” 我有窗口,我添加细节。这是代码,我想将输入的详细信息添加到我的数据库表中 我不知道如何在netbeans中连接到我的表,我能够使用netbeans网站的示例创建表,但连接示例在网上太模糊

public void addVendor(String nam,String adres,String num)
{
    l1= new JLabel ("Name");
    l2= new JLabel ("Address");
    l3= new JLabel ("contactNumber");
    Name= new JTextField ("");
    Address= new JTextField ("");
    ContactNumber= new JTextField ("");
    b1 = new JButton("Add");

    border = new BorderLayout();
    this.setLayout(border);
    JPanel Panel = new JPanel(new GridLayout(0,1));
    this.add(Panel);
    Panel.add(l1);
    Panel.add(Name);
    Panel.add(l2);
    Panel.add(Address);
    Panel.add(l3);
    Panel.add(ContactNumber);
    Panel.add(b1);
     b1.addActionListener(this);


     this.setVisible(true);
    this.setSize(425,325);
    this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public void actionPerformed( ActionEvent a)
{
    JButton button;
    button = (JButton) a.getSource();
    if (button==b1)
    {
      //here i want to add data to table
    }

}

1 个答案:

答案 0 :(得分:0)

如果您正在尝试连接到Netbeans中的Derby数据库,您需要知道数据库名称(您似乎知道它),以及相应的用户名和密码,您应该需要这些名称。指定创建数据库的时间。

您还需要知道网址,这很关键。它应该类似于“jdbc:derby:// localhost:1527 / YOUR_DATABASE_NAME

另外,快速说明,看起来您的数据库名称包含空格,从来没有这样做过。只需将其称为CON​​TACTSDB之类的东西。

这些东西应该有希望对你有用。

final String databaseURL = "jdbc:derby://localhost:1527/YourDatabaseName";
final String databaseName = "NameOfYourDatabase";
final String username = "YourUserName";
final String password = "YourPassword";

// Below is the method invoked to establish a connection to the database
public void accessDatabase() throws ClassNotFoundException {

    try {
        Class.forName(rolodexDriver).newInstance();
        connection = DriverManager.getConnection(databaseURL, username, password);
        statement = connection.createStatement();
    } 
    catch (InstantiationException | IllegalAccessException | SQLException ex) {
        Logger.getLogger(rolodexBean.class.getName()).log(Level.SEVERE, null, ex);
    }

} // end of accessDatabase method

然后只使用accessDatabase()方法,我相信一切都应该成功。我希望这会有所帮助。