① Java Web程序设计题:数据库student中的score表中共有是三个字段,分别是"学号","姓名"和"成绩"。编写。
我刚给别人解决过,可以参照下http://..com/question/563000393?&oldq=1不懂可以追问
② java程序填空。用JDBC连接sql Server数据库名为exam向users表中添加一条记录
上代码!!!importjava.sql.Connection;
importjava.sql.DriverManager;
importjava.sql.SQLException;
importjava.sql.Statement;
publicclassSqlTest{
publicstaticvoidmain(String[]args){
Connectionconn=null;
Statementstmt=null;
try{
//①
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
}catch(ClassNotFoundExceptionex){
ex.printStackTrace();
}
try{
Stringurl="jdbc:sqlserver://localhost:1433";
StringdatabaseName="test;user=sa;password=sa";
//②
conn=DriverManager.getConnection(url+databaseName);
stmt=conn.createStatement();
//③
intnum=stmt.executeUpdate("insertintousersvalues(‘zhangsan’,’123’)");
}catch(SQLExceptionex1){
ex1.printStackTrace();
//④
}finally{
try{
stmt.close();
conn.close();//
}catch(SQLExceptionex2){
ex2.printStackTrace();
}
}
}
}
另外 值得一提的是,题目中的几处错误,在我提供的代码中已做修改