1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| databaseSpecificLimitBeforeStatements.put("dm", "select * from ( select a.*, ROWNUM rnum from ("); databaseSpecificLimitAfterStatements.put("dm", " ) a where ROWNUM < #{lastRow}) where rnum >= #{firstRow}"); databaseSpecificLimitBetweenStatements.put("dm", ""); databaseOuterJoinLimitBetweenStatements.put("dm", ""); databaseSpecificOrderByStatements.put("dm", defaultOrderBy); addDatabaseSpecificStatement("dm", "selectExclusiveJobsToExecute", "selectExclusiveJobsToExecute_integerBoolean"); addDatabaseSpecificStatement("dm", "selectUnlockedTimersByDuedate", "selectUnlockedTimersByDuedate_oracle"); addDatabaseSpecificStatement("dm", "insertEventLogEntry", "insertEventLogEntry_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertVariableInstance", "bulkInsertVariableInstance_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertTask", "bulkInsertTask_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertResource", "bulkInsertResource_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertProperty", "bulkInsertProperty_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertProcessDefinition", "bulkInsertProcessDefinition_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertModel", "bulkInsertModel_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertTimer", "bulkInsertTimer_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertMessage", "bulkInsertMessage_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertIdentityLink", "bulkInsertIdentityLink_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertHistoricVariableInstance", "bulkInsertHistoricVariableInstance_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertHistoricTaskInstance", "bulkInsertHistoricTaskInstance_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertHistoricProcessInstance", "bulkInsertHistoricProcessInstance_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertHistoricIdentityLink", "bulkInsertHistoricIdentityLink_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertHistoricDetailVariableInstanceUpdate", "bulkInsertHistoricDetailVariableInstanceUpdate_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertHistoricFormProperty", "bulkInsertHistoricFormProperty_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertHistoricActivityInstance", "bulkInsertHistoricActivityInstance_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertExecution", "bulkInsertExecution_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertMessageEventSubscription", "bulkInsertMessageEventSubscription_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertSignalEventSubscription", "bulkInsertSignalEventSubscription_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertCompensateEventSubscription", "bulkInsertCompensateEventSubscription_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertEventLogEntry", "bulkInsertEventLogEntry_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertDeployment", "bulkInsertDeployment_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertComment", "bulkInsertComment_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertByteArray", "bulkInsertByteArray_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertEventLogEntry", "bulkInsertEventLogEntry_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertDeployment", "bulkInsertDeployment_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertComment", "bulkInsertComment_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertAttachment", "bulkInsertAttachment_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertJob", "bulkInsertJob_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertTimerJob", "bulkInsertTimerJob_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertSuspendedJob", "bulkInsertSuspendedJob_oracle"); addDatabaseSpecificStatement("dm", "bulkInsertDeadLetterJob", "bulkInsertDeadLetterJob_oracle");
|