📄 userlogbean_p3hc9l__weblogic_cmp_rdbms.java
字号:
} catch (RuntimeException re) {
if (__WL_verbose) {
Debug.say("rethrowing RuntimeException.");
re.printStackTrace();
}
throw re;
} catch (Exception ex) {
if (__WL_verbose) {
Debug.say("wrapping Exception in PersistenceRuntimeException.");
ex.printStackTrace();
}
throw new PersistenceRuntimeException(ex);
}
}
public void setOperationDate(
java.sql.Timestamp operationDate)
{
this.operationDate = operationDate;
__WL_isModified[4] = true;
if (! __WL_modifiedBeanIsRegistered) {
__WL_pm.registerModifiedBean(__WL_ctx.getPrimaryKey());
__WL_modifiedBeanIsRegistered = true;
}
}
//=================================================================
//Finder methods.
public java.util.Collection ejbFindAll() throws javax.ejb.FinderException{ if(__WL_verbose) {
Debug.say("called findAll");
}
java.sql.Connection __WL_con = null;
java.sql.PreparedStatement __WL_stmt = null;
java.sql.ResultSet __WL_rs = null;
int selectForUpdateVal = __WL_pm.getSelectForUpdateValue();
java.lang.String __WL_query = null;
switch(selectForUpdateVal) {
case DDConstants.SELECT_FOR_UPDATE_DISABLED:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 ";
break;
case DDConstants.SELECT_FOR_UPDATE:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 FOR UPDATE ";
break;
case DDConstants.SELECT_FOR_UPDATE_NO_WAIT:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 FOR UPDATE NOWAIT ";
break;
default:
throw new AssertionError(
"Unknown selectForUpdate type: '"+selectForUpdateVal+"'");
}
if(__WL_verbose) {
Debug.say("Finder produced statement string " + __WL_query);
}
try {
__WL_con = __WL_pm.getConnection();
}
catch (java.lang.Exception e) {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
throw new javax.ejb.FinderException("Couldn't get connection: " + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
}
try {
__WL_stmt = __WL_con.prepareStatement(__WL_query);
// preparedStatementParamIndex reset.
__WL_rs = __WL_stmt.executeQuery();
}
catch (java.lang.Exception e) {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
throw new javax.ejb.FinderException(
"Exception in findAll while preparing or executing " +
"statement: '" + __WL_stmt + "'" + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
}
try {
java.util.Collection __WL_collection = new java.util.ArrayList(); stockmanagementpro.UserLogBean_p3hc9l__WebLogic_CMP_RDBMS __WL_bean = null; Object __WL_eo = null; Object __WL_eo_rc = null;
Map __WL_pkMap = new HashMap();
while (__WL_rs.next()) {
Integer __WL_offsetIntObj = new Integer(0); Object __WL_pk = __WL_getPKFromRS(__WL_rs, __WL_offsetIntObj, __WL_classLoader); __WL_eo = null; if (__WL_pk != null) { RSInfo __WL_rsInfo = new RSInfoImpl(__WL_rs, 0, 0, __WL_pk); __WL_bean = (stockmanagementpro.UserLogBean_p3hc9l__WebLogic_CMP_RDBMS)__WL_pm.getBeanFromRS(__WL_pk, __WL_rsInfo); __WL_eo = __WL_pm.finderGetEoFromBeanOrPk(__WL_bean, __WL_pk, __WL_getIsLocal()); if (__WL_verbose) Debug.say("bean after finder load: " + __WL_bean); __WL_collection.add(__WL_eo); Object __WL_retVal = __WL_pkMap.put(__WL_pk, __WL_bean); }
}
return __WL_collection;
} catch (java.sql.SQLException sqle) {
throw new javax.ejb.FinderException(
"Exception in 'findAll' while using " +
"result set: '" + __WL_rs + "'" + EOL +
sqle.toString() + EOL +
RDBMSUtils.throwable2StackTrace(sqle));
} catch (java.lang.Exception e) {
throw new javax.ejb.FinderException(
"Exception executing finder 'findAll': " + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
} finally {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
}
} public java.util.Collection ejbFindByProgramName(java.lang.String param0) throws javax.ejb.FinderException
{ if(__WL_verbose) {
Debug.say("called findByProgramName");
}
java.sql.Connection __WL_con = null;
java.sql.PreparedStatement __WL_stmt = null;
java.sql.ResultSet __WL_rs = null;
int selectForUpdateVal = __WL_pm.getSelectForUpdateValue();
java.lang.String __WL_query = null;
switch(selectForUpdateVal) {
case DDConstants.SELECT_FOR_UPDATE_DISABLED:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.programName LIKE ? ) ) ";
break;
case DDConstants.SELECT_FOR_UPDATE:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.programName LIKE ? ) ) FOR UPDATE ";
break;
case DDConstants.SELECT_FOR_UPDATE_NO_WAIT:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.programName LIKE ? ) ) FOR UPDATE NOWAIT ";
break;
default:
throw new AssertionError(
"Unknown selectForUpdate type: '"+selectForUpdateVal+"'");
}
if(__WL_verbose) {
Debug.say("Finder produced statement string " + __WL_query);
}
try {
__WL_con = __WL_pm.getConnection();
}
catch (java.lang.Exception e) {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
throw new javax.ejb.FinderException("Couldn't get connection: " + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
}
try {
__WL_stmt = __WL_con.prepareStatement(__WL_query);
// preparedStatementParamIndex reset.
if (param0 == null) { __WL_stmt.setNull(1,java.sql.Types.VARCHAR); } else { __WL_stmt.setString(1, param0); if (__WL_verbose) { Debug.say("paramIdx :"+1+" binded with value :"+param0); } }
__WL_rs = __WL_stmt.executeQuery();
}
catch (java.lang.Exception e) {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
throw new javax.ejb.FinderException(
"Exception in findByProgramName while preparing or executing " +
"statement: '" + __WL_stmt + "'" + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
}
try {
java.util.Collection __WL_collection = new java.util.ArrayList(); stockmanagementpro.UserLogBean_p3hc9l__WebLogic_CMP_RDBMS __WL_bean = null; Object __WL_eo = null; Object __WL_eo_rc = null;
Map __WL_pkMap = new HashMap();
while (__WL_rs.next()) {
Integer __WL_offsetIntObj = new Integer(0); Object __WL_pk = __WL_getPKFromRS(__WL_rs, __WL_offsetIntObj, __WL_classLoader); __WL_eo = null; if (__WL_pk != null) { RSInfo __WL_rsInfo = new RSInfoImpl(__WL_rs, 0, 0, __WL_pk); __WL_bean = (stockmanagementpro.UserLogBean_p3hc9l__WebLogic_CMP_RDBMS)__WL_pm.getBeanFromRS(__WL_pk, __WL_rsInfo); __WL_eo = __WL_pm.finderGetEoFromBeanOrPk(__WL_bean, __WL_pk, __WL_getIsLocal()); if (__WL_verbose) Debug.say("bean after finder load: " + __WL_bean); __WL_collection.add(__WL_eo); Object __WL_retVal = __WL_pkMap.put(__WL_pk, __WL_bean); }
}
return __WL_collection;
} catch (java.sql.SQLException sqle) {
throw new javax.ejb.FinderException(
"Exception in 'findByProgramName' while using " +
"result set: '" + __WL_rs + "'" + EOL +
sqle.toString() + EOL +
RDBMSUtils.throwable2StackTrace(sqle));
} catch (java.lang.Exception e) {
throw new javax.ejb.FinderException(
"Exception executing finder 'findByProgramName': " + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
} finally {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
}
} public java.util.Collection ejbFindByOperationContent(java.lang.String param0
) throws javax.ejb.FinderException
{ if(__WL_verbose) {
Debug.say("called findByOperationContent");
}
java.sql.Connection __WL_con = null;
java.sql.PreparedStatement __WL_stmt = null;
java.sql.ResultSet __WL_rs = null;
int selectForUpdateVal = __WL_pm.getSelectForUpdateValue();
java.lang.String __WL_query = null;
switch(selectForUpdateVal) {
case DDConstants.SELECT_FOR_UPDATE_DISABLED:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.operationContent LIKE ? ) ) ";
break;
case DDConstants.SELECT_FOR_UPDATE:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.operationContent LIKE ? ) ) FOR UPDATE ";
break;
case DDConstants.SELECT_FOR_UPDATE_NO_WAIT:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.operationContent LIKE ? ) ) FOR UPDATE NOWAIT ";
break;
default:
throw new AssertionError(
"Unknown selectForUpdate type: '"+selectForUpdateVal+"'");
}
if(__WL_verbose) {
Debug.say("Finder produced statement string " + __WL_query);
}
try {
__WL_con = __WL_pm.getConnection();
}
catch (java.lang.Exception e) {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
throw new javax.ejb.FinderException("Couldn't get connection: " + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
}
try {
__WL_stmt = __WL_con.prepareStatement(__WL_query);
// preparedStatementParamIndex reset.
if (param0 == null) { __WL_stmt.setNull(1,java.sql.Types.VARCHAR); } else { __WL_stmt.setString(1, param0); if (__WL_verbose) { Debug.say("paramIdx :"+1+" binded with value :"+param0); } }
__WL_rs = __WL_stmt.executeQuery();
}
catch (java.lang.Exception e) {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
throw new javax.ejb.FinderException(
"Exception in findByOperationContent while preparing or executing " +
"statement: '" + __WL_stmt + "'" + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
}
try {
java.util.Collection __WL_collection = new java.util.ArrayList(); stockmanagementpro.UserLogBean_p3hc9l__WebLogic_CMP_RDBMS __WL_bean = null; Object __WL_eo = null; Object __WL_eo_rc = null;
Map __WL_pkMap = new HashMap();
while (__WL_rs.next()) {
Integer __WL_offsetIntObj = new Integer(0); Object __WL_pk = __WL_getPKFromRS(__WL_rs, __WL_offsetIntObj, __WL_classLoader); __WL_eo = null; if (__WL_pk != null) { RSInfo __WL_rsInfo = new RSInfoImpl(__WL_rs, 0, 0, __WL_pk); __WL_bean = (stockmanagementpro.UserLogBean_p3hc9l__WebLogic_CMP_RDBMS)__WL_pm.getBeanFromRS(__WL_pk, __WL_rsInfo); __WL_eo = __WL_pm.finderGetEoFromBeanOrPk(__WL_bean, __WL_pk, __WL_getIsLocal()); if (__WL_verbose) Debug.say("bean after finder load: " + __WL_bean); __WL_collection.add(__WL_eo); Object __WL_retVal = __WL_pkMap.put(__WL_pk, __WL_bean); }
}
return __WL_collection;
} catch (java.sql.SQLException sqle) {
throw new javax.ejb.FinderException(
"Exception in 'findByOperationContent' while using " +
"result set: '" + __WL_rs + "'" + EOL +
sqle.toString() + EOL +
RDBMSUtils.throwable2StackTrace(sqle));
} catch (java.lang.Exception e) {
throw new javax.ejb.FinderException(
"Exception executing finder 'findByOperationContent': " + EOL +
e.toString() + EOL +
RDBMSUtils.throwable2StackTrace(e));
} finally {
__WL_pm.releaseResources(__WL_con, __WL_stmt, __WL_rs);
}
} public java.util.Collection ejbFindByUserName(java.lang.String param0) throws javax.ejb.FinderException
{ if(__WL_verbose) {
Debug.say("called findByUserName");
}
java.sql.Connection __WL_con = null;
java.sql.PreparedStatement __WL_stmt = null;
java.sql.ResultSet __WL_rs = null;
int selectForUpdateVal = __WL_pm.getSelectForUpdateValue();
java.lang.String __WL_query = null;
switch(selectForUpdateVal) {
case DDConstants.SELECT_FOR_UPDATE_DISABLED:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.userName LIKE ? ) ) ";
break;
case DDConstants.SELECT_FOR_UPDATE:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.userName LIKE ? ) ) FOR UPDATE ";
break;
case DDConstants.SELECT_FOR_UPDATE_NO_WAIT:
__WL_query = "SELECT WL0.id, WL0.operationContent, WL0.operationDate, WL0.programName, WL0.userName FROM userLog WL0 WHERE ( (WL0.userName LIKE ? ) ) FOR UPDATE NOWAIT ";
break;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -