📄 apply.java
字号:
package com.haizi.struts.order;
import java.sql.ResultSet;
import java.util.Vector;
import com.haizi.struts.businessobjects.ApplyingBO;
import com.haizi.struts.datebase.DBConnect;
public class Apply {
public ResultSet rs;
public Vector allContent(){
DBConnect dbc = null;
Vector allApplyVector = new Vector();
try{
dbc = new DBConnect();
dbc.prepareStatement("SELECT * FROM order_applying_info where state='0' order by applying_no");
rs = dbc.executeQuery();
while(rs.next()){
ApplyingBO applyingBO = new ApplyingBO();
applyingBO.setApplying_no(rs.getInt("applying_no"));
applyingBO.setDep_name(rs.getString("dep_name"));
applyingBO.setSpare_no(rs.getInt("spare_no"));
applyingBO.setUser_name(rs.getString("user_name"));
applyingBO.setApplying_person(rs.getString("applying_person"));
applyingBO.setSpare_name(rs.getString("spare_name"));
applyingBO.setQuan(rs.getFloat("quan"));
applyingBO.setUnits(rs.getString("units"));
applyingBO.setDate(rs.getDate("date"));
allApplyVector.add(applyingBO);
}
}catch(Exception e){
System.err.println(e);
}finally{
try{
dbc.close();
}catch(Exception e){
e.printStackTrace();
}
}
return allApplyVector;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -