deletestatement
TDeleteSqlStatement = class(TCustomSqlStatement);
Class represents delete statement.
How to find table(s) in delete statement class?
All tables can be found in Tables property. But you can
fetch specific table from the following different properties.
Table, DeletedTables, JoinTables
[MySQL]
Delete tablelist from tablelist
First tablelist is in DeletedTables, and second tablelist is in JoinTables
[Sql Server]
Delete table from tablelist
First table is in Table property, and tablelist is in JoinTables.
[Oracle,DB2]
Delete table
This table is in Table property.
Gudu software http://www.sqlparser.com
|
Send comments about this topic.
|