InterviewSolution
Saved Bookmarks
| 1. |
How Can You Change A Select Statement Of The Datawindow At Runtime? |
|
Answer» We can change the select STATEMENT by using functions SetSQLSelect() or by changing the DATA attributes Table.Select by calling function Modify(). Modify() is PREFERABLE because it WORKS FASTER. dw_1.Modify(“datawindow.Table.Select = ‘Select * from customer’”) We can change the select statement by using functions SetSQLSelect() or by changing the data attributes Table.Select by calling function Modify(). Modify() is preferable because it works faster. dw_1.Modify(“datawindow.Table.Select = ‘Select * from customer’”) |
|