如何将NetBeans连接到MySQL数据库?

时间:2011-05-21 11:10:41

标签: java mysql postgresql netbeans jdbc

我刚刚安装了NetBeans 7.0,我是NetBeans世界的新手。任何人都可以告诉我如何将我的应用程序连接到MySQl / Postgres?我在Windows XP上工作。

6 个答案:

答案 0 :(得分:10)

服务窗口中,您可以右键单击数据库标签,然后选择新建连接New Connection

从下拉列表中选择 MySQL(连接器/ J驱动程序)。应在窗口中列出驱动程序文件。如果没有,您可以下载该文件,然后单击添加并从硬盘驱动器中选择它。 Driver Information

最后输入您的数据库详细信息,例如servername,username和password,然后单击“完成”。 Database Details

答案 1 :(得分:2)

如果您想要使用IDE的GUI工具,那么

  • windows>服务>数据库>驱动器
  • 获取驱动程序jar
  • 安装jar
  • 右键单击已安装的驱动程序>使用>连接然后提供信息

或以其他方式使用JDBC

答案 2 :(得分:2)

连接到此类数据库的一种方法是使用JDBC(Java数据库连接)驱动程序。您可以在Oracle FAQ找到有关JDBC的更多信息。

答案 3 :(得分:0)

如果你想运行或者@Vincent Ramdhanie显示的netbeans,请参阅mysql .jar查看你的项目属性 enter image description here

答案 4 :(得分:0)

点击窗口,然后选择服务

enter image description here

然后点击数据库并选择新连接 enter image description here

选择您想要的驱动程序

enter image description here

然后点击完成

如果您想检查连接是否成功

 try
    {
         con=DriverManager.getConnection("jdbc:mysql://localhost/student_result","root","");


JOptionPane.showMessageDialog(null,"connected with "+con.toString());


    }
    catch(Exception e)
    {
        JOptionPane.showMessageDialog(null,"not connect to server and message is"+e.getMessage());
    }

答案 5 :(得分:0)

按照以下步骤操作: -

1.创建一个新的应用程序 2.在netbeans的项目部分右键单击库 3.查看图片(i)Libraries java mysql connector 因此,您成功设置了与mysql的连接。