① 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();
}
}
}
}
另外 值得一提的是,題目中的幾處錯誤,在我提供的代碼中已做修改