Subject | Re: [Firebird-Java] Difference between 1.5.5 an 2.1.1 and ResultSets in autocommit connections |
---|---|
Author | Roman Rokytskyy |
Post date | 2007-11-22T18:45:03Z |
> But I never close the AC-Connection. Without any commit.Ok, then this is a problem. When you do not commit a transaction, you
> Is it possible that I run into problems without commiting the
> read connection?
won't see changes made by transactions that were started and committed
later. In other aspects, when you set the connection read-only
(Connection.setReadOnly) it has no consequences on the database.
So, if you can't add Connection.commit to your code, then you have to
have to work as you did it so far.
Roman