Examples of VarattributeBean


Examples of org.openqreg.bean.VarattributeBean

    // for (VarattributeBean vaBean : col) {
    // vaBean.remove(con);
    // }
    // The attribute must be in the same order because of the schema
    int orderNr = 0;
    VarattributeBean varAttrBean = null;
    for (Node node : attrList) {
      attributeName = node.getName().trim();
      attributeValue = node.getText().trim();

      varAttrBean = new VarattributeBean();
      varAttrBean.setAutoid(autoId);
      varAttrBean.setId(elementId);
      varAttrBean.setAttributename(attributeName);

      varAttrBean.setOrdernumber(new Integer(orderNr));
      varAttrBean.setAttributevalue(attributeValue);
      varAttrBean.create(con);
      orderNr++;
    }
  }
View Full Code Here

Examples of org.openqreg.bean.VarattributeBean

* @return A populated VarattributeBean
*
* @throws SQLException
*/
protected static VarattributeBean populate(ResultSet rs) throws SQLException {
VarattributeBean valueObject = new VarattributeBean();
valueObject.setAutoid((Long)rs.getObject(1));
valueObject.setId((String)rs.getObject(2));
valueObject.setAttributename((String)rs.getObject(3));
valueObject.setAttributevalue((String)rs.getObject(4));
valueObject.setOrdernumber((Integer)rs.getObject(5));
return valueObject;
}
View Full Code Here

Examples of org.openqreg.bean.VarattributeBean

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

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