當前位置:首頁 » 數據倉庫 » java資料庫編程題
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

java資料庫編程題

發布時間: 2023-03-18 14:38:58

① 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();
}
}
}
}

另外 值得一提的是,題目中的幾處錯誤,在我提供的代碼中已做修改