GetRowData Method
The GetRowData method returns a row of the currently opened query.
Syntax
[str=] DatabaseQuery.GetRowData()
|
Return Value
Returns a String that contains the row.
Remarks
Examples
The following example opens a database query and displays the last returned row.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
dbquery = SiteCafe.Server.CreateDatabaseQuery();
dbquery.Open("SELECT * FROM users");
dbquery.MoveLast();
alert(dbquery.GetRowData());
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top