*/
public static Object findByPrimaryKey(Connection con, PrimaryKey key) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
ListboxtextrowBean valueObject = null;
ListboxtextrowKey primaryKey = (ListboxtextrowKey) key;
try{
pStmt = con.prepareStatement(ListboxtextrowBeanBase.SELECT_STATEMENT);
pStmt.setObject(1, primaryKey.getId());
pStmt.setObject(2, primaryKey.getListorder());
pStmt.setObject(3, primaryKey.getDocument());
rs = pStmt.executeQuery();
while (rs.next()){
valueObject = populate(rs);
valueObject.afterPopulate(con);
}