Is there JDBC stream compression wrapper available?

Is there generic JDBC stream compression wrapper ? Like I running a daemon at DB server side, which work as a proxy to actual DB, and there we connect to that proxy using a proxy JDBC driver.There data transfer in actual network is compressed, is there such thing available?
[288 byte] By [carfielda] at [2007-11-27 7:07:02]
# 1

> Is there generic JDBC stream compression wrapper ?

No.

Some drivers support compression directly.

You also may have a proxy type (type 3) driver and this could possibly support compression as well (you seem to mention this).

There is no "generic" solution though as the actual protocol used by a specific driver is not generic but specific to that server.

cotton.ma at 2007-7-12 18:58:21 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2

> Some drivers support compression directly.

>

Do you know if any oracle driver support compression?

> You also may have a proxy type (type 3) driver and

> this could possibly support compression as well (you

> seem to mention this).

>

Yes, that what I mean, sorry for poor terminology. Do you think proxy type driver like that exist?

carfielda at 2007-7-12 18:58:21 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...