Examples of CentretypeBean


Examples of org.openqreg.bean.CentretypeBean

* @return A populated CentretypeBean
*
* @throws SQLException
*/
protected static CentretypeBean populate(ResultSet rs) throws SQLException {
CentretypeBean valueObject = new CentretypeBean();
valueObject.setId((Integer)rs.getObject(1));
valueObject.setName((String)rs.getObject(2));
valueObject.setStatus((Integer)rs.getObject(3));
valueObject.setTscreated((java.sql.Timestamp)rs.getObject(4));
valueObject.setTsupdated((java.sql.Timestamp)rs.getObject(5));
valueObject.setCreatedby((String)rs.getObject(6));
valueObject.setUpdatedby((String)rs.getObject(7));
return valueObject;
}
View Full Code Here

Examples of org.openqreg.bean.CentretypeBean

* @throws SQLException
*/
public static Collection<CentretypeBean> findAll(Connection con) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
CentretypeBean valueObject = null;
Collection<CentretypeBean> col = Collections.synchronizedList(new ArrayList<CentretypeBean>());
try{
pStmt = con.prepareStatement(FIND_ALL_STATEMENT);
rs = pStmt.executeQuery();
while (rs.next()){
valueObject = populate(rs);
valueObject.afterPopulate(con);
col.add(valueObject);
}
return col;
}finally{
if(null!=rs){
View Full Code Here

Examples of org.openqreg.bean.CentretypeBean

* @throws SQLException
*/
public static Object findByPrimaryKey(Connection con, PrimaryKey key) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
CentretypeBean valueObject = null;
CentretypeKey primaryKey = (CentretypeKey) key;
try{
pStmt = con.prepareStatement(CentretypeBeanBase.SELECT_STATEMENT);
pStmt.setObject(1, primaryKey.getId());
rs = pStmt.executeQuery();
while (rs.next()){
valueObject = populate(rs);
valueObject.afterPopulate(con);
}
return valueObject;
}finally{
if(null!=rs){
rs.close();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.