eclipse for java ee 连接mysql数据库怎么运行
展开全部
首先你得有一个jdbc的架包
然后
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class Util {
public static Connection getConnection(){
Connection con = null;
String user = "root";//数据库登陆用户名
String password = "root";//数据库登陆密码
String url = "jdbc:mysql://localhost:3306/password";//数据库库名
String driver = "com.mysql.jdbc.Driver";
try{
Class.forName(driver);
con = DriverManager.getConnection(url,user,password);
}catch(Exception e){
}
return con;
}
public static void main(String[] args) {
Connection con = getConnection();
String sql = "insert into stu values(null,\'hello\')";
PreparedStatement p = null;
try{
p = con.prepareStatement(sql);
p.executeUpdate();
}catch(SQLException e){
e.printStackTrace();
}finally{
try{
p.close();
con.close();
}catch(SQLException e){
e.printStackTrace();
}
}
}
}
2016-08-31
展开全部
方法/步骤
1.在新建的Project中右键新建Floder
2.创建名为lib的包
3.创建完毕之后的工程目录
4.接下来解压你下载的mysql的jar包,拷贝其中的.jar文件
5.在工程lib包下邮件 选择paste即粘贴,把mysql的jar包拷贝进来
6
6.拷贝完毕如图:
1.在新建的Project中右键新建Floder
2.创建名为lib的包
3.创建完毕之后的工程目录
4.接下来解压你下载的mysql的jar包,拷贝其中的.jar文件
5.在工程lib包下邮件 选择paste即粘贴,把mysql的jar包拷贝进来
6
6.拷贝完毕如图:
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询