RAPPAZ Francois wrote:
Using ij, I create a database, then I build a table and populate it with a
serie of insert statement. Without doing anything else I disconnect (that take
a long time) and I exit.
When I reconnect and run a select * from table; I got nothing in the table...
If run that select statement after the inserts, the bug does not appear.
Is this a known problem ?
François
Hi François,
It sounds as though you are not committing your transaction before
exiting. As part of an orderly exit, make sure that you do the following:
1) Commit your transaction
2) Shutdown the database
3) Then exit
Hope this helps,
-Rick