JDBC连接数据库
发表于
|
分类于
JAVASE之JDBC
连接MYSQL数据库
Connection con =
DriverManager.getConnection(“jdbc:mysql;//host:port/database”,”user”,”password”);
…