資源簡介
實現了,顯示所有學員,添加學員,刪除學員,修改學員等功能
代碼片段和文件信息
package?com.students.dao;
import?java.sql.Connection;
import?java.sql.DriverManager;
import?java.sql.ResultSet;
import?java.sql.SQLException;
import?java.sql.Statement;
public?class?baseDao?{
public?Connection?getConn(){
Connection?conn=null;
try?{
Class.forName(“com.microsoft.sqlserver.jdbc.SQLServerDriver“);
}?catch?(ClassNotFoundException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
String?url=“jdbc:sqlserver://localhost:1433;databaseName=StudentsData“;
try?{
conn=DriverManager.getConnection(url“sa““sa“);
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
return?conn;
}
public?int?update(String?sql){
int?n=0;
Connection?conn=getConn();
try?{
Statement?sta
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????404??2013-03-15?22:09??簡易學生管理系統\Students\.classpath
?????文件????????384??2013-03-15?09:03??簡易學生管理系統\Students\.project
?????文件????????629??2013-03-15?09:03??簡易學生管理系統\Students\.settings\org.eclipse.jdt.core.prefs
?????文件???????1918??2013-03-15?22:09??簡易學生管理系統\Students\bin\com\students\dao\ba
?????文件???????3434??2013-03-15?22:09??簡易學生管理系統\Students\bin\com\students\dao\StudentsDao.class
?????文件???????1644??2013-03-15?22:47??簡易學生管理系統\Students\bin\com\students\login\Login.class
?????文件???????5100??2013-03-15?22:59??簡易學生管理系統\Students\bin\com\students\login\StudentsGuanLi.class
?????文件?????308201??2013-03-15?09:08??簡易學生管理系統\Students\bin\lib\sqljdbc.jar
?????文件???????1302??2013-03-15?10:02??簡易學生管理系統\Students\src\com\students\dao\ba
?????文件???????2381??2013-03-15?14:33??簡易學生管理系統\Students\src\com\students\dao\StudentsDao.java
?????文件???????1033??2013-03-15?22:47??簡易學生管理系統\Students\src\com\students\login\Login.java
?????文件???????4644??2013-03-15?22:59??簡易學生管理系統\Students\src\com\students\login\StudentsGuanLi.java
?????文件?????308201??2013-03-15?09:08??簡易學生管理系統\Students\src\lib\sqljdbc.jar
?????文件????2293760??2013-03-15?23:01??簡易學生管理系統\StudentsData.mdf
?????文件????????301??2013-03-15?10:25??簡易學生管理系統\StudentsData.sql
?????文件?????573440??2013-03-15?23:01??簡易學生管理系統\StudentsData_log.LDF
?????文件??????77312??2009-09-22?16:08??簡易學生管理系統\簡易學生管理系統.doc
?????目錄??????????0??2013-03-15?22:09??簡易學生管理系統\Students\bin\com\students\dao
?????目錄??????????0??2013-03-15?22:09??簡易學生管理系統\Students\bin\com\students\login
?????目錄??????????0??2013-03-15?22:06??簡易學生管理系統\Students\src\com\students\dao
?????目錄??????????0??2013-03-15?22:06??簡易學生管理系統\Students\src\com\students\login
?????目錄??????????0??2013-03-15?22:09??簡易學生管理系統\Students\bin\com\students
?????目錄??????????0??2013-03-15?22:06??簡易學生管理系統\Students\src\com\students
?????目錄??????????0??2013-03-15?22:09??簡易學生管理系統\Students\bin\com
?????目錄??????????0??2013-03-15?22:09??簡易學生管理系統\Students\bin\lib
?????目錄??????????0??2013-03-15?22:06??簡易學生管理系統\Students\src\com
?????目錄??????????0??2013-03-15?22:06??簡易學生管理系統\Students\src\lib
?????目錄??????????0??2013-03-15?22:06??簡易學生管理系統\Students\.settings
?????目錄??????????0??2013-03-15?22:09??簡易學生管理系統\Students\bin
?????目錄??????????0??2013-03-15?22:06??簡易學生管理系統\Students\src
............此處省略5個文件信息
評論
共有 條評論