发布网友 发布时间:2022-04-22 22:08
共3个回答
热心网友 时间:2022-04-07 15:57
我给你写个吧
===========================
public class joinMySql(){ //新建个连接数据库的类
public static void main(String[] args){
Connection con = null;
Statement st = null;
ResultSet rs = null;
String url = "jdbc:mysql://localhost:3306/数据库名字";
String name = "登陆数据库的名";
String pwd = "登陆数据库的密码";
String sql = 'select * from 表名";
try {
Class.forName("com.mysql.jdbc.Driver");
//加载数据库驱动
con = DriverManager.getConnection("url","name","pwd");
//获取数据库连接
st = con.createStatement();
//创建statement
rs.executeQuery(sql);//执行sql语句
} catch (Exception e) {
e.printStackTrace();
}finally{
try {
//关闭数据库连接
if(con!=null){con.close();}
if(st!=null){st.close();}
if(rs!=null){rs.close();}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
===============================
代码写完,你直接粘过去就应该可以用的
热心网友 时间:2022-04-07 17:15
建好你的数据库;
下好mysql的jar包;导入你的工程;
其他的就与普通JAVA程序无异了:
Connection conn=null;
try {
Class.forName("com.mysql.jdbc.Driver");//加载数据库驱动
conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/数据库名字","用户名","密码");
//获取数据库连接
PreparedStatement pstmt=conn.prepareStatement("sql");//开始操作数据库,增删改查
pstmt.executeUpdate();//执行曾删改
pstmt.executeQuery();//执行查询
} catch (Exception e) {
e.printStackTrace();
}finally{
try {
conn.close();//关闭数据库连接
} catch (SQLException e) {
e.printStackTrace();
}
}
不过现在JSP应该比较少直接用JDBC连了吧,Hibernate挺流行的
热心网友 时间:2022-04-07 18:49
我建议你使用框架。可能jdbc连接的时候你觉得很简单但是在操作的时候就会感觉很麻烦。尤其是多个表操作的时候。
最好有eclipse然后设定eclipse的数据库连接他会有新建向导,尤其可以让初学者保证url和jar包配套。测试成功后可以加入hibernate框架进行连接。具体使用请参照hibernate相关书籍。