SQL Object
 
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
 
Parameter
Description
ViewOrTableOrQuery
A reference to a View, Table or Select query.
 
See Also
other SQL.Runxxxxxxxx methodes, Data-Browser.
Example
Sub Main()
 
    Dim sQuery As String
 
    sQuery = InputBox$("Select Query:")
    SQL.RunDataBrowser sQuery
 
End Sub