java – 如何在Eclipse中使用MySql数据库
作者:互联网
我是编程新手,所以请耐心等待,如果一开始我没有意义,请提前道歉……!
我正在做一个本科编程项目,需要在Java程序中创建一些数据库.我正在使用eclipse(galilo)来编写我的程序.我已经下载了一个连接器/ J,但我不应该使用它最模糊!
那里的任何人都能够一步一步地给我一个方法吗?!
非常感谢!
解决方法:
如果你需要在eclipse中使用某种数据浏览器,你可以查看上面提供的链接,或者更具体地说是插件的文档.
OTOH,如果你想知道如何使用JDBC连接到mysql数据库,下面的代码示例解释了它.
Connection connection = null;
try {
//Loading the JDBC driver for MySql
Class.forName("com.mysql.jdbc.Driver");
//Getting a connection to the database. Change the URL parameters
connection = DriverManager.getConnection("jdbc:mysql://Server/Schema", "username", "password");
//Creating a statement object
Statement stmt = connection.createStatement();
//Executing the query and getting the result set
ResultSet rs = stmt.executeQuery("select * from item");
//Iterating the resultset and printing the 3rd column
while (rs.next()) {
System.out.println(rs.getString(3));
}
//close the resultset, statement and connection.
rs.close();
stmt.close();
connection.close();
} catch (SQLException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
标签:mysql-connector,java,mysql,eclipse 来源: https://codeday.me/bug/20190730/1582997.html