Subject Re: [Firebird-Java] How is statement pooling working ? (2nd try)
Author Roman Rokytskyy
> If not, can someone please give examples for using
> statement-pooling.

Connection con = getConnection(); // gets a connection from Pool.
while(true) {
PreparedStatement ps = con.prepareStatement(some_sql);
ps.setInt(1,1);
ps.execute();
}
con close();

But I think the previous scenario should be supported too. I will not add
this to the release, but will release 1.5.1 with this feature.

Roman