91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

jsp應用與開發技術第8章源代碼(含數據庫腳本)

資源截圖

代碼片段和文件信息

package?ch08;
import?java.sql.*;

public?class?DBConnection?{

public?static?Connection?getConnection()
{?
String?url?=?“jdbc:mysql://localhost/ch08“;
?String?userName?=?“root“;
?String?password?=?“root“;
Connection?conn?=?null;
try?{
Class.forName(“com.mysql.jdbc.Driver“);
}?catch(ClassNotFoundException?e)?{

System.out.println(“加載驅動器類時出現異常“);
}try?{
conn?=?null;
conn?=?DriverManager.getConnection(url?userName?password);
}?catch(SQLException?e)?{
System.out.println(“連接數據庫的過程中出現SQL異常“);
}?if?(conn==null)
System.out.println(“連接數據庫失敗“);
else
System.out.println(“連接數據庫成功“);
?????return?conn;
}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件????????673??2018-03-24?11:44??ch08\.classpath

?????文件???????1037??2018-03-24?11:25??ch08\.project

?????文件????????503??2018-03-24?11:25??ch08\.settings\.jsdtscope

?????文件????????364??2018-03-24?11:25??ch08\.settings\org.eclipse.jdt.core.prefs

?????文件????????464??2018-03-24?11:25??ch08\.settings\org.eclipse.wst.common.component

?????文件????????305??2018-03-24?11:25??ch08\.settings\org.eclipse.wst.common.project.facet.core.xml

?????文件?????????49??2018-03-24?11:25??ch08\.settings\org.eclipse.wst.jsdt.ui.superType.container

?????文件??????????6??2018-03-24?11:25??ch08\.settings\org.eclipse.wst.jsdt.ui.superType.name

?????文件???????1422??2018-03-24?20:59??ch08\build\classes\ch08\DBConnection.class

?????文件???????3277??2018-03-24?20:59??ch08\build\classes\ch08\DBStudent.class

?????文件???????3200??2018-03-24?20:59??ch08\build\classes\ch08\Pagination.class

?????文件???????1076??2018-03-24?20:59??ch08\build\classes\ch08\Student.class

?????文件???????1274??2018-03-24?11:38??ch08\database\db.txt

?????文件???????1607??2017-11-10?20:42??ch08\database\db1.sql

?????文件???????1298??2017-11-09?14:08??ch08\database\db2.sql

?????文件????????170??2018-04-13?16:55??ch08\database\db3.txt

?????文件????????705??2018-03-24?17:14??ch08\src\ch08\DBConnection.java

?????文件???????2584??2018-03-24?17:14??ch08\src\ch08\DBStudent.java

?????文件???????2676??2018-03-24?17:14??ch08\src\ch08\Pagination.java

?????文件????????705??2018-03-24?17:14??ch08\src\ch08\Student.java

?????文件???????1408??2018-03-24?21:56??ch08\WebContent\a.jsp

?????文件??????16428??2016-11-02?00:00??ch08\WebContent\call.jpg

?????文件?????765180??2016-11-02?00:00??ch08\WebContent\call.wmv

?????文件????????283??2018-04-13?17:15??ch08\WebContent\Commons-FileUpload.html

?????文件????????374??2016-11-02?00:00??ch08\WebContent\context.xml

?????文件???????1440??2018-03-24?17:39??ch08\WebContent\exercise\byName.jsp

?????文件???????1423??2018-03-24?17:39??ch08\WebContent\exercise\byNumber.jsp

?????文件???????1021??2018-03-24?17:39??ch08\WebContent\exercise\delete.jsp

?????文件???????1863??2018-03-24?17:39??ch08\WebContent\exercise\insert.jsp

?????文件???????1625??2018-03-24?17:39??ch08\WebContent\exercise\select.jsp

............此處省略51個文件信息

評論

共有 條評論