资源简介
本系统采用JSP+Servlet+JavaBean设计的在线投票系统,特别适合课程设计的童鞋们
代码片段和文件信息
package vote;
import java.sql.*;
public class VoteConn
{ String urlsql;
Connection con=null;
Statement stmt=null;
ResultSet rs=null;
public VoteConn()
{
try{
Class.forName(“com.microsoft.jdbc.sqlserver.SQLServerDriver“);
url=“jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=vote“;
con=DriverManager.getConnection(url“sa““sa“);
stmt=con.createStatement();
//rs=stmt.executeQuery(sql);
}catch(Exception e){e.printStackTrace();}
}
public ResultSet executeQuery(String sql)
{
try{
rs=stmt.executeQuery(sql);
}catch(SQLException ex){System.err.println(ex.getMessage());}
return rs;
}
public int executeUpdate(String sql)
{ int result=0;
tr
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-09-20 12:37 投票系统\
目录 0 2011-09-20 12:37 投票系统\voteSystem\
目录 0 2011-09-20 12:37 投票系统\voteSystem\WEB-INF\
目录 0 2011-09-20 12:37 投票系统\voteSystem\WEB-INF\classes\
文件 929 2007-11-12 21:17 投票系统\voteSystem\WEB-INF\classes\VoteConn.java
目录 0 2011-09-20 12:37 投票系统\voteSystem\WEB-INF\classes\vote\
文件 1487 2007-11-20 22:15 投票系统\voteSystem\WEB-INF\classes\vote\VoteConn.class
文件 780 2007-12-18 17:35 投票系统\voteSystem\addvote.jsp
文件 2235 2007-12-18 17:44 投票系统\voteSystem\admin.jsp
文件 330 2007-11-13 16:59 投票系统\voteSystem\delete.jsp
目录 0 2011-09-20 12:37 投票系统\voteSystem\img\
文件 4185 2007-11-05 23:05 投票系统\voteSystem\img\bg.gif
文件 1160 2007-12-18 17:43 投票系统\voteSystem\index.jsp
文件 1209 2007-12-18 17:45 投票系统\voteSystem\result.jsp
目录 0 2011-09-20 12:37 投票系统\voteSystem\sql\
文件 426 2007-11-12 23:04 投票系统\voteSystem\sql\vote.sql
文件 216 2007-11-12 22:06 投票系统\voteSystem\st
文件 407 2007-12-18 17:47 投票系统\voteSystem\vote.jsp
- 上一篇:guava jar包
- 下一篇:QT集成讯飞封装
评论
共有 条评论