Akshay, Akshay Mehta wrote: > Hi, > > I have developed an Invoicing Application as H2 being the backend for > our own use at the office. Unfortunetly the application crashed twice > while we were using it, I am attaching the crash reports. I just want > to know where the problem is? as the one of the crash reports suggests > a H2 module as problematic frame. Or is the JVM at fault, as suggested > by the other crash report.
Actually, both logs suggest the JVM is at fault, though the error may be indirectly triggered by something H2 is doing. An access violation indicates the JVM made an illegal attempt to access a location in protected memory. This level of memory management is the JVM's responsibility. It is not something H2 has any control over. A Java application (like H2) cannot directly cause such an error, except in a native module (i.e., a module it calls into/out of using JNI). As a general statement, H2 does not include any native modules to my knowledge. In this specific case, the log files do not indicate the error occurred in any native code provided by H2. Regards, Eric Faulhaber > > regards > Akshay > > -- > > You received this message because you are subscribed to the Google > Groups "H2 Database" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/h2-database?hl=en. -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
