Syntax
| SQL.RunDataList ViewOrTableOrQuery[, AlternativeTitle][, LayoutString]
| ||||||||
---|---|---|---|---|---|---|---|---|---|
Description
| Opens a VIEW, TABLE or a SELECT query, and presents the data in a window that can be browsed. The data is read-only and cannot be modified.
The output is similar to the output option: "Data list" in the SQL Designer
| ||||||||
See Also
| other SQL.Runxxxxxxxx methodes, Datalijst.
| ||||||||
Example
| Sub Main() Dim sQuery As String sQuery = InputBox$("Select Query:") SQL.RunDataList sQuery End Sub | ||||||||