Subject Re: deprecated functions
Author Roman Rokytskyy
> What is the non-deprecated way to replace the following functions:
>
> warning: [deprecation] setDatabaseName(java.lang.String) in
> org.firebirdsql.jdbc.FBSimpleDataSource has been deprecated
> warning: [deprecation] setUser(java.lang.String) in
> org.firebirdsql.jdbc.FBSimpleDataSource has been deprecated

All pooling related code has been moved to org.firebirdsql.pool
package:

org.firebirdsql.jdbc.FBSimpleDataSource ->
org.firebirdsql.pool.FBSimpleDataSource

Roman