yves pielusenet wrote:
> So, since I use an embedded database, should I use the shutdown command > (database shutdown nor derby shutdown) everytime I do > Connection.close() ? (an if so, why derby connection close command call > itself database;shutdown=true commande ?) Connection.close doesn't close down the database because they may be multiple connections open. Or the application may want to open another connection after closing the previous one. Dan.
