資源簡(jiǎn)介
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;
/**
?*?商品數(shù)據(jù)庫操作
?*
?*/
public?class?BookDao?{
/**
?*?獲取數(shù)據(jù)庫連接
?*?@return?Connection對(duì)象
?*/
public?Connection?getConnection(){
//?數(shù)據(jù)庫連接
Connection?conn?=?null;
try?{
//?加載數(shù)據(jù)庫驅(qū)動(dòng),注冊(cè)到驅(qū)動(dòng)管理器
Class.forName(“com.mysql.jdbc.Driver“);
//?數(shù)據(jù)庫連接字符串
String?url?=?“jdbc:mysql://localhost:3306/db_database10“;
//?數(shù)據(jù)庫用戶名
String?username?=?“root“;
//?數(shù)據(jù)庫密碼
String?password?=?“111“;
//?創(chuàng)建Connection連接
conn?=?DriverManager.getConnection(urlusernamepassword);
}?catch?(ClassNotFoundException?e)?{
e.printStackTrace();
}?catch?(SQLException?e)?{
e.printStackTrace();
}
//?返回?cái)?shù)據(jù)庫連接
return?conn;
}
/**
?*?分頁查詢所有商品信息
?*?@param?page?頁數(shù)
?*?@return?List
?*/
public?List?find(int?page){
//?創(chuàng)建List
List?list?=?new?ArrayList();
//?獲取數(shù)據(jù)庫連接
Connection?conn?=?getConnection();
//?分頁查詢的SQL語句
String?sql?=?“select?*?from?tb_product?order?by?id?desc?limit???“;
try?{
//?獲取PreparedStatement
PreparedStatement?ps?=?conn.prepareStatement(sql);
//?對(duì)SQL語句中的第1個(gè)參數(shù)賦值
ps.setInt(1?(page?-?1)?*?Product.PAGE_SIZE);
//?對(duì)SQL語句中的第2個(gè)參數(shù)賦值
ps.setInt(2?Product.PAGE_SIZE);
//?執(zhí)行查詢操作
ResultSet?rs?=?ps.executeQuery();
//?光標(biāo)向后移動(dòng),并判斷是否有效
while(rs.next()){
//?實(shí)例化Product
Product?p?=?new?Product();
//?對(duì)id屬性賦值
p.setId(rs.getInt(“id“));
//?對(duì)name屬性賦值
p.setName(rs.getString(“name“));
//?對(duì)num屬性賦值
p.setNum(rs.getInt(“num“));
//?對(duì)price屬性賦值
p.setPrice(rs.getDouble(“price“));
//?對(duì)unit屬性賦值
p.setUnit(rs.getString(“unit“));
//?將Product添加到List集合中
list.add(p);
}
//?關(guān)閉ResultSet
rs.close();
//?關(guān)閉PreparedStatement
ps.close();
//?關(guān)閉Connection
conn.close();
}?catch?(SQLException?e)?{
e.printStackTrace();
}
return?list;
}
/**
?*?查詢總記錄數(shù)
?*?@return?總記錄數(shù)
?*/
public?int?findCount(){
//?總記錄數(shù)
int?count?=?0;
//?獲取數(shù)據(jù)庫連接
Connection?conn?=?getConnection();
//?查詢總記錄數(shù)SQL語句
String?sql?=?“select?count(*)?from?tb_product“;
try?{
//?創(chuàng)建Statement
Statement?stmt?=?conn.createStatement();
//?查詢并獲取ResultSet
ResultSet?rs?=?stmt.executeQuery(sql);
//?光標(biāo)向后移動(dòng),并判斷是否有效
if(rs.next()){
//?對(duì)總記錄數(shù)賦值
count?=?rs.getInt(1);
}
//?關(guān)閉ResultSet
rs.close();
//?關(guān)閉Connection
conn.close();
}?catch?(SQLException?e)?{
e.printStackTrace();
}
//?返回總記錄數(shù)
return?count;
}
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????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個(gè)文件信息
評(píng)論
共有 條評(píng)論