资源简介
简单的jsp 客房管理系用,是自己编写的,可能没有那么高级,但是很简单实用。
代码片段和文件信息
package com.lah.toolBean;
import java.sql.*;
public class Conn {
Connection conn=null;
ResultSet rs=null;
Statement stmt=null;
String url=“jdbc:mysql://localhost:3306/test“;
String username=“root“;
String password=“1234“;
int result=0;
public Conn()
{
try{
Class.forName( “com.mysql.jdbc.Driver“);//装载驱动
}
catch(java.lang.ClassNotFoundException e){
System.err.println(e.getMessage());
}
try{ //建立连接
Connection conn=DriverManager.getConnection(urlusernamepassword);
stmt=conn.createStatement();
}
catch(SQLException ex){
System.err.println(ex.getMessage());
}
}
public ResultSet executeQuery(String sql){ //数据查询
try{
rs=stmt.executeQuery(sql);
}
catch(SQLException ex){
System.err.println(ex.getMessage
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-06-20 11:58 binguan\
文件 529 2012-06-17 19:38 binguan\.classpath
文件 311 2013-06-20 08:08 binguan\.myme
文件 1750 2013-06-20 08:08 binguan\.project
目录 0 2013-06-20 11:58 binguan\.settings\
文件 500 2012-06-17 19:38 binguan\.settings\.jsdtscope
文件 395 2012-06-17 19:38 binguan\.settings\org.eclipse.jdt.core.prefs
文件 493 2013-06-20 08:08 binguan\.settings\org.eclipse.wst.common.component
文件 252 2012-06-17 19:38 binguan\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2012-06-17 19:38 binguan\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2012-06-17 19:38 binguan\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2013-06-20 11:58 binguan\image\
文件 13037 2013-06-20 10:57 binguan\image\0040.gif
文件 3782 2013-06-19 20:48 binguan\image\0c30484f4ad874b02129296a6256e23d.jpg
文件 4400 2013-06-19 20:57 binguan\image\111.jpg
文件 58403 2013-06-19 20:52 binguan\image\112.jpg
文件 139726 2013-06-19 20:53 binguan\image\122.jpg
文件 52687 2013-06-19 20:50 binguan\image\123.jpg
文件 3782 2013-06-19 20:48 binguan\image\23.jpg
文件 141254 2013-06-19 20:52 binguan\image\53.jpg
文件 12269 2013-06-19 21:54 binguan\image\66.gif
文件 86035 2013-06-19 20:49 binguan\image\67.jpg
文件 47227 2013-06-20 10:57 binguan\image\bg.jpg
文件 876 2013-06-20 10:57 binguan\image\bot1.GIF
文件 2038 2013-06-20 10:57 binguan\image\bot3.GIF
文件 4992 2013-06-20 10:57 binguan\image\flowh1.jpg
文件 29364 2013-06-20 10:57 binguan\image\flowh1.png
文件 14185 2013-06-20 10:57 binguan\image\flowh2.jpg
文件 876 2013-06-20 10:57 binguan\image\flowh3.gif
文件 825 2013-06-20 10:57 binguan\image\flowh4.gif
文件 49 2013-06-20 10:57 binguan\image\flowt1.gif
............此处省略45个文件信息
评论
共有 条评论