Package org.openqreg.bean

Examples of org.openqreg.bean.ForsamlingBean


* @return A populated ForsamlingBean
*
* @throws SQLException
*/
protected static ForsamlingBean populate(ResultSet rs) throws SQLException {
ForsamlingBean valueObject = new ForsamlingBean();
valueObject.setForsamlingskod((String)rs.getObject(1));
valueObject.setForsamlingsnamn((String)rs.getObject(2));
return valueObject;
}
View Full Code Here


* @throws SQLException
*/
public static Collection<ForsamlingBean> findAll(Connection con) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
ForsamlingBean valueObject = null;
Collection<ForsamlingBean> col = Collections.synchronizedList(new ArrayList<ForsamlingBean>());
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

* @throws SQLException
*/
public static Object findByPrimaryKey(Connection con, PrimaryKey key) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
ForsamlingBean valueObject = null;
ForsamlingKey primaryKey = (ForsamlingKey) key;
try{
pStmt = con.prepareStatement(ForsamlingBeanBase.SELECT_STATEMENT);
pStmt.setObject(1, primaryKey.getForsamlingskod());
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

Related Classes of org.openqreg.bean.ForsamlingBean

Copyright © 2018 www.massapicom. 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.