Re: how to monitor the amount of bytes fetched in a executeQuery() - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: how to monitor the amount of bytes fetched in a executeQuery()
Date
Msg-id 44B56D9A.5030302@opencloud.com
Whole thread Raw
In response to Re: how to monitor the amount of bytes fetched in a executeQuery()  (Albert Cardona <acardona@ini.phys.ethz.ch>)
Responses Re: how to monitor the amount of bytes fetched in a executeQuery()  (Albert Cardona <acardona@ini.phys.ethz.ch>)
List pgsql-jdbc
Albert Cardona wrote:

> Also, the ability to monitor the amount of bytes loaded would be an nice
> addition to the driver itself. Perhaps a small Monitor class that extends
> Thread, which monitors the receiving InputStream and provides a single
> getLoadedBytes() method?

Well, there's only one InputStream per connection really.. If a
bytecount from there is useful it wouldn't be too hard to expose
(perhaps on PGconnection), but it'd only be approximate because that one
stream is used for all activity on the connection including other
columns, protocol overhead, etc.

-O

pgsql-jdbc by date:

Previous
From: Victor
Date:
Subject: unsubscribe pgsql-jdbc
Next
From: Oliver Jowett
Date:
Subject: Re: executeQuery Locked