package dao;

import java.sql.*;
import java.util.*;

import db.DBManager;
import model.Type;


public class TypeDAO {
	// 偌煦濬脤戙妀こ
			public List<Type> queryByTypeID(int typeID) {
				Connection conn = DBManager.getConn();
				PreparedStatement pstmt = null;
				List<Type> type = new ArrayList<Type>();
				try {
					try {
						String sql = null;
						if(typeID == -1){
							sql = "select * from type";
							pstmt = conn.prepareStatement(sql);
						}else{
							sql = " select * from type where typeID=?";
							pstmt = conn.prepareStatement(sql);
							pstmt.setInt(typeID, 1);						
					}
						ResultSet rs = pstmt.executeQuery();
						while (rs.next()) {
							Type type1 = new Type();
							type1.setTypeID(rs.getInt("typeID"));
							type1.setTypename(rs.getString("typename"));
							type.add(type1);
						}
					}finally {
						conn.close();
					}
				} catch (Exception e) {
					e.printStackTrace();
				}
				return type;
			}
			
			
}
最近下载更多
abandan  LV4 2023年11月6日
微信网友_6699076084797440  LV7 2023年11月2日
微信网友_6680567232876544  LV8 2023年10月10日
zhuorui  LV3 2023年10月7日
936684178  LV2 2023年6月26日
768881787  LV7 2023年6月26日
taoshen95  LV14 2023年5月29日
fq70112  LV3 2023年5月18日
喜喜喜夕夕夕  LV1 2023年3月27日
1430074044aaa  LV5 2022年12月15日
最近浏览更多
刘守曜 昨天
暂无贡献等级
gdt234  LV3 昨天
烟橙沐雨  LV1 3月21日
杨豫川  LV12 3月14日
xiaojie93  LV2 3月1日
yunYUN123  LV1 2月27日
ljhgff  LV1 2月9日
limin123  LV6 2月9日
344741626 1月10日
暂无贡献等级
Liang朝伟  LV1 1月6日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友