Compile problem with JDAPI 10g
Hi,
We are using form JDAPI to automatically compile and translate our forms module from english to french.
Everything work fine for the translation but our problem seem to be the compilation.
We are using code like this
My question is the following: Does the fmb.compile execute an incremental compile or a full compile of the module. Because actually it seem to do an incremental compile because from time to time some form crash at runtime but if we open the FMB and compile all then build, everything is fine.
We are using form JDAPI to automatically compile and translate our forms module from english to french.
Everything work fine for the translation but our problem seem to be the compilation.
We are using code like this
FormModule fmb = FormModule.open(filename); Jdapi.connectToDatabase(connectstring); try { fmb.compile(); } catch (JdapiStatusException e) { ....
My question is the following: Does the fmb.compile execute an incremental compile or a full compile of the module. Because actually it seem to do an incremental compile because from time to time some form crash at runtime but if we open the FMB and compile all then build, everything is fine.
0