Package org.openqreg.bean

Examples of org.openqreg.bean.TextKey


*/
public static Object findByPrimaryKey(Connection con, PrimaryKey key) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
TextBean valueObject = null;
TextKey primaryKey = (TextKey) key;
try{
pStmt = con.prepareStatement(TextBeanBase.SELECT_STATEMENT);
pStmt.setObject(1, primaryKey.getAutoid());
rs = pStmt.executeQuery();
while (rs.next()){
valueObject = populate(rs);
valueObject.afterPopulate(con);
}
View Full Code Here


/**
* @return The primaryKey
*
*/
public PrimaryKey getPrimaryKey() {
return new TextKey(getAutoid());
}
View Full Code Here

TOP

Related Classes of org.openqreg.bean.TextKey

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.