使用 java 查询 MySQL 数据库
伙计们,简单地说,我有一个带有文本输出框的java应用程序。我想查询数据库并将输出显示到文本框中。
示例我有一个包含两列 food
和 color
我想:
SELECT * in Table WHERE color = 'blue'
有什么建议吗?
Guys, simply put, I have a java application with a text output box. I'd like to query a Db and display the output into a text box.
Example I have a Db with two columns food
and color
I'd like to :
SELECT * in Table WHERE color = 'blue'
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
初学者通常会面临理解如何从 Java 连接到 MySQL 的问题。这是可以让您快速启动并运行的代码片段。您必须从某个地方获取 mysql jdbc 驱动程序 jar 文件(google 一下)并将其添加到类路径中。
Beginners generally face problems understanding how to connect to MySQL from Java. This is the code snippet that can get you up and running quickly. You have to get the mysql jdbc driver jar file from somewhere (google it) and add it to the classpath.
您应该使用 JDBC。请参阅 http://en.wikipedia.org/wiki/Java_Database_Connectivity
您需要来自 http://dev.mysql.com/downloads/connector/j/
然后使用类似的东西(从维基百科文章复制):
You should use JDBC. See http://en.wikipedia.org/wiki/Java_Database_Connectivity
You need the Java MySQL Connector from http://dev.mysql.com/downloads/connector/j/
Then use something like (copied from the Wikipedia article):