Hi Peter,
there is a skipDbCheck() method if you somehow get hold of the ConfigurationImpl class, the DB check is fired up in ProcessEngineImpl with the following method:
protected void checkDb(ConfigurationImpl configuration) {
if (configuration.isCheckDb()) {
userCommandService.execute(new CheckDbCmd());
}
}
so you might want to patch that or the CheckDbCmd class...