Re: Mandatory tableOwner property

Souri-

I think the tableOwner property should be optional. Using tableOwner and
tableName is a short-hand for the SQLQuery:

SELECT * FROM <tableOwner>.<tableName>

When writing this query by hand the tableOwner is optional. In the same way
I think tableOwner should be optional when using the tableName property.
This allows the author of the SQL to either use the tableOwner if it is
needed in their context or to omit it if it is not needed. In my experience
it is common to write SQL queries with unqualified table names and rely on
the user to only be specified as part of the connection properties.

-David

Received on Friday, 11 February 2011 13:54:37 UTC