资源简介

明日科技:JSP数据库系统开发完全手册----------- 数据库管理系统开发从技术到实践------人民邮电出版社

资源截图

代码片段和文件信息

package beans;
import java.sql.*;
public class conn{
Connection conn=null;
Statement stmt=null;
ResultSet rs=null;

public conn(){
try{
Class.forName(“com.microsoft.jdbc.sqlserver.SQLServerDriver“); 
}catch(java.lang.ClassNotFoundException e){
System.err.println(e.getMessage());
}
}
public ResultSet executeQuery(String sql){
try{
conn=DriverManager.getConnection(“jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=db_board;user=sa;password=“);
stmt=conn.createStatement();
rs=stmt.executeQuery(sql);
}catch(SQLException ex){
System.err.println(ex.getMessage());
}
return rs;
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         43  2006-02-28 16:01  jsp数据库系统开发完全手册王国辉\AUTORUN.INF

     文件       4311  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\addTopic.jsp

     文件        832  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\conn.jsp

     文件        470  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\counter.jsp

     文件       1909  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\counter1.jsp

     文件        882  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\CSS\style.css

     文件    1048576  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\database\db_board_Data.MDF

     文件    1048576  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\database\db_board_Log.LDF

     文件        895  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\Del.jsp

     文件        913  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\atusers.gif

     文件       7843  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\banner.gif

     文件       2688  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\bg_banner.GIF

     文件       1600  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\cup.GIF

     文件        193  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\datetime.gif

     文件        156  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\dmwaste.gif

     文件        179  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\ed-item.gif

     文件        900  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\email.GIF

     文件        654  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\home-menu.gif

     文件        901  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\homepage.GIF

     文件        111  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\jobPane.gif

     文件      73252  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\PSD\banner.psd

     文件        608  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\revigate.GIF

     文件        202  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\speaker.bmp

     文件         77  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\images\speaker.GIF

     文件       4896  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\index.jsp

     文件       1270  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\java\board\beans\conn.class

     文件       1449  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\java\board\beans\connDB.class

     文件        534  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\java\board\board.jcp

     文件        265  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\java\board\board.jcw

     文件        265  2006-02-28 15:59  jsp数据库系统开发完全手册王国辉\board\java\board\board2.jcw

............此处省略475个文件信息

评论

共有 条评论