谁能给个简单的JAVA连接MYSQL实现增删改查的实例.谢谢了啊,我的邮箱是ah1363454335@qq.com
4个回答
展开全部
public class TestResultSet
{
public static void main(String[] args)
{
Connection con = null;
Statement sta =null;
ResultSet rs = null;
//SQLServerDriver
try
{
//1、加载驱动程序
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//2、得到连接
String url = "jdbc:sqlserver://localhost:1433;databaseName=StudentManager";
con =DriverManager.getConnection(url, "sa","");
//3、得到货车
sta = con.createStatement();
String sql ="select" +
" stuID,stuname,stuAge,stuAddress,stuTel " +
"from " +
" Student";
rs = sta.executeQuery(sql);
//4、货车拉货
rs.next();//a、判断是否有下一行;b、小指针默认在第一行之上;c、有移动到下一行,返回true,无放回false
while(rs.next()) //rs.next()==true
{/*
int stuID = rs.getInt("stuID");
String stuname = rs.getString("stuname");
int stuAge = rs.getInt("stuAge");
String stuAddress = rs.getString("stuAddress");
String stuTel = rs.getString("stuTel");*/
int stuID = rs.getInt(1);
String stuname = rs.getString(2);
int stuAge = rs.getInt(3);
String stuAddress = rs.getString(4);
String stuTel = rs.getString(5);
System.out.println(stuID + " "+stuname +" "+stuAge+" "+stuAddress+" "+stuTel);
}
} catch (ClassNotFoundException e) {
System.out.println("驱动程序加载失败");
e.printStackTrace();
} catch (SQLException e) {
System.out.println("得到连接失败");
e.printStackTrace();
}finally{
try {
if(rs!=null){
rs.close();
rs = null;
}
if(sta!=null){
sta.close();
sta = null;
}
if(con!=null)
{
con.close();
con = null;
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
{
public static void main(String[] args)
{
Connection con = null;
Statement sta =null;
ResultSet rs = null;
//SQLServerDriver
try
{
//1、加载驱动程序
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//2、得到连接
String url = "jdbc:sqlserver://localhost:1433;databaseName=StudentManager";
con =DriverManager.getConnection(url, "sa","");
//3、得到货车
sta = con.createStatement();
String sql ="select" +
" stuID,stuname,stuAge,stuAddress,stuTel " +
"from " +
" Student";
rs = sta.executeQuery(sql);
//4、货车拉货
rs.next();//a、判断是否有下一行;b、小指针默认在第一行之上;c、有移动到下一行,返回true,无放回false
while(rs.next()) //rs.next()==true
{/*
int stuID = rs.getInt("stuID");
String stuname = rs.getString("stuname");
int stuAge = rs.getInt("stuAge");
String stuAddress = rs.getString("stuAddress");
String stuTel = rs.getString("stuTel");*/
int stuID = rs.getInt(1);
String stuname = rs.getString(2);
int stuAge = rs.getInt(3);
String stuAddress = rs.getString(4);
String stuTel = rs.getString(5);
System.out.println(stuID + " "+stuname +" "+stuAge+" "+stuAddress+" "+stuTel);
}
} catch (ClassNotFoundException e) {
System.out.println("驱动程序加载失败");
e.printStackTrace();
} catch (SQLException e) {
System.out.println("得到连接失败");
e.printStackTrace();
}finally{
try {
if(rs!=null){
rs.close();
rs = null;
}
if(sta!=null){
sta.close();
sta = null;
}
if(con!=null)
{
con.close();
con = null;
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
借助Baiduhi联系
有时间能处理你的题目
我们可以根据本要求提供一份相当于学生水平的源码
6 | ES:\\C2F95B75A3E9AFF0BE6DC4FFCC0E6359
5 | 交易提醒:预付定金有风险
7 |
1 | 北京易软个人软件
5 | 全职软件开发团队
6 | 十年信誉铸成品质
1 | 速度专业积累效率
5 | 开发信息管理系统更有优惠
有时间能处理你的题目
我们可以根据本要求提供一份相当于学生水平的源码
6 | ES:\\C2F95B75A3E9AFF0BE6DC4FFCC0E6359
5 | 交易提醒:预付定金有风险
7 |
1 | 北京易软个人软件
5 | 全职软件开发团队
6 | 十年信誉铸成品质
1 | 速度专业积累效率
5 | 开发信息管理系统更有优惠
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
已经发到你的邮箱了,自己写的,采纳吧 ,对了我的邮箱是372606185@qq.com
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你说的不是 jdbc吗
直接找jdbc的一大堆
直接找jdbc的一大堆
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询