资源简介
前台功能模块包括五个模块组成班级成员管理模块、班级相册模块、班级通讯录模块、班级留言模块、后台管理员系统。
代码片段和文件信息
package db;
import java.sql.*;
public class db {
private String dbDriver=“com.microsoft.sqlserver.jdbc.SQLServerDriver“;
private String sConnStr = “jdbc:sqlserver://localhost:1433;databaseName=jsptongxueluxns“;
public Connection connect = null;
public ResultSet rs=null;
public db() {
try {
Class.forName(dbDriver).newInstance();
connect = DriverManager.getConnection(sConnStr“sa““sa“);
}
catch (Exception ex) {
System.out.println(“12121“);
}
}
public ResultSet executeQuery(String sql) {
try{
connect=DriverManager.getConnection(sConnStr“sa““sa“);
Statement stmt=connect.createStatement();
rs=stmt.executeQuery(sql);
}catch(SQLException ex){
System.err.println(ex.getMessage());
}
return rs;
}
public void executeUpdate(String sql)
{
Statement stmt=null;
rs=null;
try
{ connect=DriverManager.getConnection(sConnStr“sa““sa“);
stmt=connect.createStatement();
stmt.executeUpdate(sql);
stmt.close();
connect.close();
}
catch(SQLException ex)
{
System.err.println(ex.getMessage());
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 743 2012-08-08 23:41 310JSP校友录\jspxiaoyoulufo\.classpath
文件 315 2013-05-16 18:21 310JSP校友录\jspxiaoyoulufo\.myme
文件 1232 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\.project
文件 1315 2012-08-08 23:41 310JSP校友录\jspxiaoyoulufo\src\db\db.java
文件 1425 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\adminyanzheng.jsp
文件 4848 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\banjixiangcelist.jsp
文件 2398 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\banjixiangce_add.jsp
文件 1343 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\banjixiangce_add_post.jsp
文件 2822 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\banjixiangce_list.jsp
文件 2605 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\banjixiangce_list2.jsp
文件 2645 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\banjixiangce_updt.jsp
文件 1054 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\banjixiangce_updt_post.jsp
文件 865 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\center.jsp
文件 2140 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\CSS.css
文件 833 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\databack.jsp
文件 61 2013-05-16 08:58 310JSP校友录\jspxiaoyoulufo\WebRoot\default.jsp
文件 873 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\del.jsp
文件 943 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\delgg.jsp
文件 1591 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\down.jsp
文件 299 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\about.gif
文件 219 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\abspos.gif
文件 237 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\anchor.gif
文件 125 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\art.gif
文件 162 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\backcolor.gif
文件 253 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\backward.gif
文件 285 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\bgcolor.gif
文件 272 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\bgpic.gif
文件 88 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\bl
文件 76 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\bold.gif
文件 267 2012-04-01 23:18 310JSP校友录\jspxiaoyoulufo\WebRoot\eWebEditor_V4.60\buttonimage\blue\br.gif
............此处省略610个文件信息
评论
共有 条评论