如何将 NetBeans 连接到 MySQL 数据库?
我刚刚安装了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
在服务窗口中,您可以右键单击数据库选项卡,然后选择新建连接。
从下拉列表中选择MySQL(Connector/J Driver)。驱动程序文件应在窗口中列出。如果没有,您可以下载该文件,然后单击“添加”并从硬盘中选择它。
最后输入您的数据库详细信息,例如服务器名称、用户名和密码,然后单击完成。
In the Services window you can right click on the Databases tab and select 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.
Finally enter your database details such as servername, username and password and click finish.
连接此类数据库的一种方法是使用 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.
如果您想使用 IDE 的 GUI 工具,那么
或者以其他方式使用 JDBC
If you meant you want to use IDE's GUI tool then
Or otherwise use JDBC
单击窗口,然后选择服务
然后单击数据库,然后选择新连接
选择您想要的驱动程序
请单击“完成”
如果您想检查连接是否成功,
click on window and then select services
then click on databases and select new connection
select driver which you want
then click finish
if you want to check the connection is successful or not
如果您想要运行,请参阅 mysql .jar 以了解您的项目属性,或者查看 @Vincent Ramdhanie 显示的 netbeans
see mysql .jar for u project properties if u waant to run or for netbeans shown by @Vincent Ramdhanie
请按照以下步骤操作:-
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.