码迷,mamicode.com
首页 > 数据库 > 详细

JDBC的连接和操作

时间:2016-10-18 01:39:27      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:

package Test;

import java.sql.*;

public class Test21 {
public static void main(String[] args) {
Connection con=null;
Statement sta=null;

try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
con=DriverManager.getConnection("jdbc:sqlserver://localhost:1433;database=stuDB","sa","123456");
sta=con.createStatement();
String sql="insert useinfo values(1,‘2‘,‘3‘)";
int result=sta.executeUpdate(sql);
System.out.println("ccc");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
finally
{
try {
con.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

}

JDBC的连接和操作

标签:

原文地址:http://www.cnblogs.com/liuruiguang/p/5971633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!