exlipse怎么连接mysql服务器 mysql如何连接服务器

主机教程 建站分享 2年前 (2022-12-20) 184次浏览

文章摘要:exlipse怎么连接mysql服务器 mysql如何连接服务器

利用exlipse连接mysql服务器,具体方法如下: import java.sql.*; publiccl […]

利用exlipse连接mysql服务器,具体方法如下:

import java.sql.*;

publicclass mysqlJdbc {

publicstaticvoid main(String args[]) {

try {

Class.forName("com.mysql.jdbc.Driver"); //加载mysql JDBC驱动程序

//Class.forName("org.gjt.mm.mysql.Driver");

System.out.println("Success loading mysql Driver!");

}

catch (Exception e) {

System.out.print("Error loading mysql Driver!");

e.printStackTrace();

}

try {

Connection connect = DriverManager.getConnection(

"jdbc:mysql://localhost:3306/test","root","198876");

//连接URL为 jdbc:mysql//服务器地址/数据库名 ,后面的2个参数分别是登陆用户名和密码

System.out.println("Success connect mysql server!");

Statement stmt = connect.createStatement();

ResultSet rs = stmt.executeQuery("select * from user");

//user 为你表的名称

while (rs.next()) {

System.out.println(rs.getString("name"));

}

}

catch (Exception e) {

System.out.print("get data error!");

e.printStackTrace();

}

}

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:exlipse怎么连接mysql服务器 mysql如何连接服务器
文章链接:http://www.7966.org/post/14654.html
转载请注明出处

喜欢 (0)