Hi, > So if i have two separate applications that access a database at > random times, I cannot use the auto-mixed-mode because of the > following situation: > > App1 accesses database through an embedded connection (and hence > starting an internal server also). > App2 accesses the database through a connection to the server. > App1 finishes and closes. > > App2 then gets rolled back? (as in it does not complete it's > operation?)
Yes. If App2 has uncommitted transactions while App1 stops, those transactions are rolled back. This may not be a problem if you keep autocommit enabled (I will document that). Regards, Thomas -- 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.
