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

发布于 2024-11-09 00:50:47 字数 99 浏览 0 评论 0原文

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

I have just installed NetBeans 7.0 and I am a newbie in NetBeans' world. can any one tell me how to connect my application to MySQl / Postgres ? I work on Windows XP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

吻泪 2024-11-16 00:50:47

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

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

最后输入您的数据库详细信息,例如服务器名称、用户名和密码,然后单击完成。
数据库详细信息

In the Services window you can right click on the Databases tab and select New Connection.
New Connection

Select MySQL(Connector/J Driver) from the drop down list. The driver file should be listed in the window. If not, you can download the file, then click add and select it from your hard drive.
Driver Information

Finally enter your database details such as servername, username and password and click finish.
Database Details

救赎№ 2024-11-16 00:50:47

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

One way to connect to such databases is to use a JDBC (Java Database Connectivity) driver. You can find more about JDBC at the Oracle FAQ.

小清晰的声音 2024-11-16 00:50:47

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

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

或者以其他方式使用 JDBC

If you meant you want to use IDE's GUI tool then

  • windows > services >database > driver
  • Get the driver jar
  • install the jar
  • right click on driver installed > connect using > and then provide the information

Or otherwise use JDBC

旧时光的容颜 2024-11-16 00:50:47

单击窗口,然后选择服务

在此处输入图像描述

然后单击数据库,然后选择新连接
在此处输入图像描述

选择您想要的驱动程序

在此处输入图像描述

请单击“完成”

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

 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());
    }

click on window and then select services

enter image description here

then click on databases and select new connection
enter image description here

select driver which you want

enter image description here

then click finish

if you want to check the connection is successful or not

 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());
    }
如此安好 2024-11-16 00:50:47

如果您想要运行,请参阅 mysql .jar 以了解您的项目属性,或者查看 @Vincent Ramdhanie 显示的 netbeans
在此处输入图像描述

see mysql .jar for u project properties if u waant to run or for netbeans shown by @Vincent Ramdhanie
enter image description here

你好,陌生人 2024-11-16 00:50:47

请按照以下步骤操作:-

1.创建一个新应用程序
2.在netbeans的项目部分右键单击库
3.查看图片(i)Java mysql连接器库
这样你就成功地建立了与mysql的连接。

Follow the steps:-

1.Create a new application
2.In projects section of netbeans right click on libraries
3.Check the picture(i)Libraries java mysql connector
Thus you successfully setup the connection with mysql.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文