資源簡介
基于jsp+access的購物網站(非本人制作)

代碼片段和文件信息
package?db.conn;
import?java.sql.*;
public?class?dbConn?{
Connection?conn=?null;
ResultSet?rs?=?null;
Statement?stmt=null;
public?dbConn()?{
try?{
Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver“);?
}
catch(java.lang.ClassNotFoundException?e)?{
System.err.println(?e.getMessage());
}
}
public?ResultSet?executeQuery(String?sql)?{
try?{
conn=DriverManager.getConnection(“jdbc:odbc:hi“);
stmt=conn.createStatement();
rs?=?stmt.executeQuery(sql);
}?
catch(SQLException?ex)?{?
System.err.println(ex.getMessage());
}
return?rs;
}
public?int?executeUpdate(String?sql)?{
int?result?=?0;
try?{
conn=DriverManager.getConnection(“jdbc:odbc:hi“);
stmt=conn.createStatement();
result?=?stmt.executeUpdate(sql);
}?
catch(SQLException?ex)?{?
System.err.println(ex.getMessage());
}
return?result;
}
public?void?closeConn()?{
try?{
stmt.close();
conn.close();
}?catch?(SQLException?ex)?{
System.err.println(?ex.getMessage());
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2010-11-10?23:18??hi\
?????文件?????????388??2010-06-22?21:17??hi\afterloginindex.jsp
?????文件????????1208??2010-06-24?02:14??hi\afterloginleft.jsp
?????文件????????2321??2010-06-24?18:28??hi\backmain.jsp
?????文件????????1712??2010-06-24?23:24??hi\count.jsp
?????文件????????3282??2010-06-24?17:20??hi\deltgoods.jsp
?????文件????????3352??2010-06-24?17:21??hi\deltuser.jsp
?????文件????????3651??2010-06-25?07:45??hi\goodsd.jsp
?????文件????????1503??2010-06-24?17:19??hi\goodslook.jsp
?????文件??????356352??2010-12-22?22:05??hi\hi.mdb
?????目錄???????????0??2010-11-10?23:18??hi\image\
?????文件???????67159??2010-06-23?18:25??hi\image\bwlc.gif
?????目錄???????????0??2010-11-10?23:18??hi\image\goods\
?????文件???????18328??2010-06-22?20:14??hi\image\goods\1.jpg
?????文件???????13856??2010-06-22?20:14??hi\image\goods\2.jpg
?????文件????????4601??2010-06-24?17:29??hi\image\goods\3.jpg
?????文件???????11306??2010-06-24?17:29??hi\image\goods\4.jpg
?????文件????????7359??2010-06-24?17:29??hi\image\goods\5.jpg
?????文件????????6879??2010-06-24?17:29??hi\image\goods\6.jpg
?????文件???????20924??2010-06-24?17:30??hi\image\goods\7.jpg
?????文件????????8954??2010-06-24?17:30??hi\image\goods\8.jpg
?????文件???????12805??2010-06-22?20:14??hi\image\goods\9.jpg
?????文件??????403230??2010-06-22?18:12??hi\image\index.jpg
?????文件???????28839??2010-06-23?17:40??hi\image\left.jpg
?????文件??????131061??2010-06-22?20:14??hi\image\main.jpg
?????文件???????72129??2010-06-22?20:14??hi\image\main1.jpg
?????文件??????202413??2010-06-23?17:22??hi\image\wlc.gif
?????文件?????????384??2010-06-22?20:34??hi\index.htm
?????文件????????1421??2010-06-24?18:58??hi\indexgoodslook.jsp
?????文件????????1512??2010-06-24?19:00??hi\indexgoodslook1.jsp
?????文件????????3487??2010-06-24?17:20??hi\insertgoods.jsp
............此處省略23個文件信息
評論
共有 條評論