资源简介
2-14.rar
代码片段和文件信息
package com.lyq.bean;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
/**
* 商品数据库操作
*
*/
public class BookDao {
/**
* 获取数据库连接
* @return Connection对象
*/
public Connection getConnection(){
// 数据库连接
Connection conn = null;
try {
// 加载数据库驱动,注册到驱动管理器
Class.forName(“com.mysql.jdbc.Driver“);
// 数据库连接字符串
String url = “jdbc:mysql://localhost:3306/db_database10“;
// 数据库用户名
String username = “root“;
// 数据库密码
String password = “111“;
// 创建Connection连接
conn = DriverManager.getConnection(urlusernamepassword);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
// 返回数据库连接
return conn;
}
/**
* 分页查询所有商品信息
* @param page 页数
* @return List
*/
public List find(int page){
// 创建List
List list = new ArrayList();
// 获取数据库连接
Connection conn = getConnection();
// 分页查询的SQL语句
String sql = “select * from tb_product order by id desc limit ??“;
try {
// 获取PreparedStatement
PreparedStatement ps = conn.prepareStatement(sql);
// 对SQL语句中的第1个参数赋值
ps.setInt(1 (page - 1) * Product.PAGE_SIZE);
// 对SQL语句中的第2个参数赋值
ps.setInt(2 Product.PAGE_SIZE);
// 执行查询操作
ResultSet rs = ps.executeQuery();
// 光标向后移动,并判断是否有效
while(rs.next()){
// 实例化Product
Product p = new Product();
// 对id属性赋值
p.setId(rs.getInt(“id“));
// 对name属性赋值
p.setName(rs.getString(“name“));
// 对num属性赋值
p.setNum(rs.getInt(“num“));
// 对price属性赋值
p.setPrice(rs.getDouble(“price“));
// 对unit属性赋值
p.setUnit(rs.getString(“unit“));
// 将Product添加到List集合中
list.add(p);
}
// 关闭ResultSet
rs.close();
// 关闭PreparedStatement
ps.close();
// 关闭Connection
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}
/**
* 查询总记录数
* @return 总记录数
*/
public int findCount(){
// 总记录数
int count = 0;
// 获取数据库连接
Connection conn = getConnection();
// 查询总记录数SQL语句
String sql = “select count(*) from tb_product“;
try {
// 创建Statement
Statement stmt = conn.createStatement();
// 查询并获取ResultSet
ResultSet rs = stmt.executeQuery(sql);
// 光标向后移动,并判断是否有效
if(rs.next()){
// 对总记录数赋值
count = rs.getInt(1);
}
// 关闭ResultSet
rs.close();
// 关闭Connection
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
// 返回总记录数
return count;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 353 2016-03-21 11:59 第2章\2.1\index.html
文件 531 2016-03-21 11:59 第2章\2.10\index.html
文件 1101 2016-03-21 11:59 第2章\2.11\index.html
文件 20643501 2016-03-21 11:59 第2章\2.12\Big.ogv
文件 453 2016-03-21 11:59 第2章\2.12\index.html
文件 857894 2016-03-21 11:59 第2章\2.12\mingrisoft.mp4
文件 958 2016-03-21 11:59 第2章\2.13\index.html
文件 428 2016-03-21 11:59 第2章\2.14\index.html
文件 322 2016-03-21 11:59 第2章\2.15\index.html
文件 364 2016-03-21 11:59 第2章\2.16\index.html
文件 360 2016-03-21 11:59 第2章\2.17\index.html
文件 526 2016-03-21 11:59 第2章\2.18\index.html
文件 697 2016-03-21 11:59 第2章\2.19\index.html
文件 384 2016-03-21 11:59 第2章\2.2\index.html
文件 265 2016-03-21 11:59 第2章\2.20\index.html
文件 336 2016-03-21 11:59 第2章\2.20\newWindow.html
文件 422 2016-03-21 11:59 第2章\2.3\index.html
文件 424 2016-03-21 11:59 第2章\2.4\index.html
文件 259 2016-03-21 11:59 第2章\2.5\header示例.html
文件 19156 2016-03-21 11:59 第2章\2.5\mrlogo.jpg
文件 4096 2016-03-21 11:59 第2章\2.5\Thumbs.db
文件 367 2016-03-21 11:59 第2章\2.6\index.html
文件 381 2016-03-21 11:59 第2章\2.7\index.html
文件 687 2016-03-21 11:59 第2章\2.8\index.html
文件 381 2016-03-21 11:59 第2章\2.9\index.html
文件 19917 2016-03-21 11:59 第2章\sj1\bike.jpg
文件 380 2016-03-21 11:59 第2章\sj1\index.html
文件 5120 2016-03-21 11:59 第2章\sj1\Thumbs.db
文件 2957 2016-03-21 11:59 第2章\sj2\index.html
文件 51372 2016-03-21 12:01 第2章\sj3\images\01.gif
............此处省略2981个文件信息
相关资源
- 大话设计模式_程杰.zip
- anyconnect-4.8.02042.rar
- 禾匠独立版前后端3.1.40.zip
- STM3232人体检测-心率血氧、跌到检测、
- 黑马旅游网初始项目文件.rar
- zw_PingFangSC.zip
- 树莓派入门教程.zip
- 答案_wrapper.pdf
- AfterFXLib.dll
- 基于websocket的即时通讯H5App源码.rar
- CrackingtheCodingInterview(6th).zip
- 计量经济学__第4版.zip
- 数字信号处理的FPGA实现(第3版)中文
- charlesV4.0.2破解版.zip
- linux联网工具.zip
- IT日本语教程基础篇_12115984副本.pdf
- 北京城区.rar
- 乐玩插件9.05.zip
- tower2.3.2_windows_破解.rar
- 方维p2p借贷股票配资商业系统开源无
- 15-16.rar
- 脑机接口导论.pdf
- 智能车辆先进技术丛书无人驾驶车辆
- CN-shi-A.shp
- 发卡1015.rar
- 高翔视觉SLAM十四讲-完整14讲版.zip
- NLP汉语自然语言处理原理与实践.zip
- 算法笔记.胡凡(详细书签).zip
- 龙虎斗教程.zip
- 新一代视频压缩编码标准(H265264)
评论
共有 条评论