Subject | Re: [Firebird-Java] firebird embedded under Linux problems |
---|---|
Author | Roman Rokytskyy |
Post date | 2004-09-09T09:13:07Z |
> The problem arises when I try to get a connection from the pool. TheYou can use multiple connections from the same JVM. Release notes contain
> pool is configured with setMinPoolSize(1) and setMaxPoolSize(1) to
> avoid problems with mutiple connections, as I don't know do they
> exist.
information about this issue - it is safe to use multiple connections on
Linux, driver provides necessary synchronization on per class-loader basis.
So, you have to only ensure that firebirdsql-full.jar is loaded by the
top-most classloader (e.g. system classloader).
Also check the log files, you should find more information there.
Roman