clothesdao.java
来自「网上购物源代码」· Java 代码 · 共 47 行
JAVA
47 行
/**
*
*/
package com.chinaaccpDao;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.ArrayList;
import com.chinaaccpbean.Display;
/**
* @author liu
*
*/
public class ClothesDao {
public ArrayList GetClothesInfo()
{
ArrayList list = new ArrayList();
Connection con = null;
try {
con = ConnectionLee.GetCon();
Statement st = con.createStatement();
String sql = "select id,name,descinfo,price,picture,picture_big from product where pronum like 'COL_%'";
ResultSet rs = st.executeQuery(sql);
while(rs.next())
{
Display cpubook = new Display();
cpubook.setId(rs.getInt(1));
cpubook.setName(rs.getString(2));
cpubook.setDiscinfo(rs.getString(3));
cpubook.setPrice(rs.getDouble(4));
cpubook.setImgpath(rs.getString(5));
cpubook.setBigimgpath(rs.getString(6));
list.add(cpubook);
}
st.close();
con.close();
} catch (Exception e) {
e.printStackTrace();
}
return list;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?