Difference between TdaSQL properties?
In TdaSQL there are the following properties:
AvailableSelectTableCount: Integer
AvailableSelectTables[aIndex: Integer]: TdaTable
AvailableTableCount: Integer
AvailableTables[aIndex: Integer]: TdaTable
What's the difference between the two pairs and why?
(They are not mentioned in the Help file.)
AvailableSelectTableCount: Integer
AvailableSelectTables[aIndex: Integer]: TdaTable
AvailableTableCount: Integer
AvailableTables[aIndex: Integer]: TdaTable
What's the difference between the two pairs and why?
(They are not mentioned in the Help file.)
This discussion has been closed.
Comments
The FAvailableTables field keeps track of all the tables available to the
user from the database connection. The FAvailableSelectTables keeps track
of the available tables left to select (for instance if the user has already
selected two tables for their dataset, those tables are no longer available
to select).
The TdaSQL class is primarily an internal class and we do not recommend
using it directly. What are you trying to accomplish?
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
QueryDataView/DataPipeline
TdaSQLBuilder is documented in the RBuilder.hlp. Access the help topic for
TdaSQLBuilder and then naviate to the related subtopics which include sample
code.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Best regards,
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
information from TdaSQL.
I see.
Is there a good reason for such a limitation?
I didn't see the point using TdaSQLBuilder. I know it's a shell with a
simpler interface, but simplicity is not what I require.
Joins. I need to replace parts of the standard interface in the query
builder. I'll continue on another thread, as this particular problem has
been solved.