Syntax
| SQL.RunDataBrowser ViewOrTableOrQuery
| ||||
---|---|---|---|---|---|
Description
| Opens a VIEW, TABLE or a SELECT query, and presents the data in a window that can be browsed. If the user has permissions to do so, the data can also be edited.
The output is similar to the output option: "Data-browser" in the SQL Designer
| ||||
See Also
| other SQL.Runxxxxxxxx methodes, Data-Browser.
| ||||
Example
| Sub Main() Dim sQuery As String sQuery = InputBox$("Select Query:") SQL.RunDataBrowser sQuery End Sub | ||||