On 19.11.2012 14:45, Bruno Soares wrote:
> Hello, how are you?
> First of all, sorry my bad english, I'm brazilian.
>
> I have a question about output in SquirreL.
> I'm doing a research on columnar databases and I'm using SquirreL as a
> cliente to do
> my tests.
> When a query is executed in SquirreL, it returns three values, including
> the output time.
> I'd like to know how this time is measured, if the JDBC influences the
> response.
The "SQL query" time is the time an SQL execution needs to return from
the JDBC driver. After this time SQuirreL has hold of the reference to
the JDBC-ResultSet but has not yet called any method on it.
Reading results is the time it takes to read the JDBC-ResultSet
including the time it takes to store the data in SQuirreL's own data
structure.
Hope this helps.
Gerd
|