public class sqlHelper {
User u;
public sqlHelper(User u){
this.u =u;
String JDriver="com.microsoft.sqlserver.jdbc.SQLServerDriver";
String connectDB="jdbc:sqlserver://127.0.0.1:1433;DatabaseName=QQ";
try
{
Class.forName(JDriver);
}catch(ClassNotFoundException e){
e.printStackTrace();
System.out.println("加载数据库引擎失败");
System.exit(0);
}
System.out.println("数据库驱动成功");
try{
String user ="huangxianyao";
String password="123456";
Connection con =DriverManager.getConnection(connectDB,user,password);
System.out.println("连接数据库成功");
}catch(SQLException e){
System.out.println("数据库连接错误");
System.exit(0);
}
}
}
比如我要向QQ数据库中的Information中添加ID 123456789 Password 123456 birthday 1995-01-10
怎么写
互换的青春
相关分类