This class defines an UnknownReadRequest used for all SQL statements that are
not SELECT but should be executed as read requests.
An UnknownReadRequest is a request that returns a ResultSet and that we are
not able to parse (we cannot know which tables are accessed, if any).
author: Emmanuel Cecchet version: 1.0
isParsed() Always returns true since the request cannot be parsed anyway.
public void
parse(DatabaseSchema schema, int granularity, boolean isCaseSensitive) Request is not parsed (isParsed is just set to true).
Constructor Detail
UnknownReadRequest
public UnknownReadRequest(String sqlQuery, boolean escapeProcessing, int timeout, String lineSeparator)(Code)
Creates a new UnknownReadRequest object
Parameters: sqlQuery - the SQL query Parameters: escapeProcessing - should the driver to escape processing beforesending to the database ? Parameters: timeout - an int value Parameters: lineSeparator - the line separator used in the query