資源簡介
Java Web網(wǎng)上書店 J2EE,內(nèi)含源代碼,數(shù)據(jù)庫。

代碼片段和文件信息
package?comm;
import?java.sql.*;
public?class?ConnectionManager?{
private?static?final?String?DRIVER=“com.microsoft.sqlserver.jdbc.SQLServerDriver“;
private?static?final?String?URL=“jdbc:sqlserver://localhost:1433;DatabaseName=books“;
private?static?final?String?UNAME=“sa“;
private?static?final?String?UPASS=“123456“;
public?static?Connection?getCon()?throws?SQLException{
Connection?con=null;
try?{
Class.forName(DRIVER);
con=DriverManager.getConnection(URLUNAMEUPASS);
}?catch?(ClassNotFoundException?e)?{
e.printStackTrace();
}
return?con;
}
public?static?void?allClose(Connection?conPreparedStatement?pstmtResultSet?rs){
try?{
if(rs!=null){
rs.close();
}
}?catch?(SQLException?e)?{
e.printStackTrace();
}
try?{
if(pstmt!=null){
pstmt.close();
}
}?catch?(SQLException?e)?{
e.printStackTrace();
}
try?{
if(con!=null){
con.close();
}
}?catch?(SQLException?e)?{
e.printStackTrace();
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????????0??2010-08-02?08:55??網(wǎng)上書店\.me
?????文件?????264259??2010-08-05?09:12??網(wǎng)上書店\.me
?????文件?????????80??2010-08-04?21:35??網(wǎng)上書店\.me
?????文件???????1663??2010-08-02?12:03??網(wǎng)上書店\.me
?????文件??????17026??2010-08-02?12:03??網(wǎng)上書店\.me
?????文件???????3403??2010-08-03?12:26??網(wǎng)上書店\.me
?????文件??????19775??2010-08-05?09:11??網(wǎng)上書店\.me
?????文件??????????0??2010-08-02?08:55??網(wǎng)上書店\.me
?????文件????????652??2010-08-02?11:48??網(wǎng)上書店\.me
?????文件???????1012??2010-08-02?14:25??網(wǎng)上書店\.me
?????文件???????3158??2010-08-03?11:09??網(wǎng)上書店\.me
?????文件???????5036??2010-08-03?09:06??網(wǎng)上書店\.me
?????文件???????5048??2010-08-03?09:07??網(wǎng)上書店\.me
?????文件??????????0??2010-08-03?21:07??網(wǎng)上書店\.me
?????文件???????1778??2010-08-02?11:43??網(wǎng)上書店\.me
?????文件???????1317??2010-08-02?10:19??網(wǎng)上書店\.me
?????文件???????7222??2010-08-03?09:24??網(wǎng)上書店\.me
?????文件???????4903??2010-08-04?17:04??網(wǎng)上書店\.me
?????文件???????4849??2010-08-03?09:29??網(wǎng)上書店\.me
?????文件???????2934??2010-08-03?11:17??網(wǎng)上書店\.me
?????文件???????4424??2010-08-03?10:07??網(wǎng)上書店\.me
?????文件????????585??2010-08-03?10:19??網(wǎng)上書店\.me
?????文件???????2290??2010-08-03?09:24??網(wǎng)上書店\.me
?????文件???????4852??2010-08-02?15:14??網(wǎng)上書店\.me
?????文件????????860??2010-08-02?11:51??網(wǎng)上書店\.me
?????文件???????1280??2010-08-03?21:10??網(wǎng)上書店\.me
?????文件???????1307??2010-08-03?11:42??網(wǎng)上書店\.me
?????文件???????1539??2010-08-02?14:09??網(wǎng)上書店\.me
?????文件????????754??2010-08-02?11:50??網(wǎng)上書店\.me
?????文件???????1413??2010-08-02?15:26??網(wǎng)上書店\.me
............此處省略883個文件信息
評論
共有 條評論