jdbc连接MySQL的代码怎么写

1321
2023/12/20 9:53:20
栏目: 云计算
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

你可以按照以下步骤编写Java程序来连接MySQL数据库:
1. 导入所需的包:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

2. 定义连接字符串、用户名和密码:

String jdbcUrl = "jdbc:mysql://localhost:3306/database_name";
String username = "your_username";
String password = "your_password";

其中,`localhost:3306`是MySQL服务器的地址和端口,`database_name`是要连接的数据库名称,`your_username`是你的MySQL用户名,`your_password`是你的MySQL密码。
3. 加载MySQL驱动程序:

Class.forName("com.mysql.jdbc.Driver");

4. 建立数据库连接:

Connection connection = DriverManager.getConnection(jdbcUrl, username, password);

完成以上步骤后,你就可以使用`connection`对象来执行SQL查询和操作了。
5. 关闭数据库连接:

connection.close();

完整的代码示例:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class JdbcExample {

????public?static?void?main(String[]?args)?{

????????String?jdbcUrl?=?“jdbc:mysql://localhost:3306/database_name”;

????????String?username?=?“your_username”;

????????String?password?=?“your_password”;

????????try?{

????????????Class.forName(“com.mysql.jdbc.Driver”);

????????????Connection?connection?=?DriverManager.getConnection(jdbcUrl,?username,?password);

????????????//?执行SQL查询和操作

????????????connection.close();

????????}?catch?(ClassNotFoundException?|?SQLException?e)?{

????????????e.printStackTrace();

????????}

????} }

请确保你已经将MySQL驱动程序的JAR文件添加到你的Java项目的类路径中。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: mysql怎么列出所有表