Re: feature addition proposal: disconnected jdbc statement

2005-11-18 Thread Raffaele Spazzoli
The library is in effect an implementation of the statemets interface that become a wrap in the connected phase. This is obtained using the java.lang.reflect.Proxy API. I didn't wanted to write a proxy for the entire JDBC API, starting from connection. This also because a lot of objects can't be us

Re: feature addition proposal: disconnected jdbc statement

2005-11-18 Thread Thomas Dudziak
On 11/18/05, Raffaele Spazzoli <[EMAIL PROTECTED]> wrote: > Hi, > > I've developed a class library to allow use of jdbc statements > (Statement, PreparedStatement, CallableStatement) in a disconnected > environment (i.e. a situation where a jdbc connection is not available). > This library can be t

feature addition proposal: disconnected jdbc statement

2005-11-18 Thread Raffaele Spazzoli
Hi, I've developed a class library to allow use of jdbc statements (Statement, PreparedStatement, CallableStatement) in a disconnected environment (i.e. a situation where a jdbc connection is not available). This library can be thought as the counterpart of the CachedResultSet class. I believe thi