Previous Topic: SetSQLStatement Method

Next Topic: Execute Method


GetSQLResult Method

Retrieves the results from the execution of the SQL statement.

Syntax

object.GetSQLResult(strSQL)

Owning Class

CaWSQL

Arguments

strSQL - The SQL statement.

Return Value

A CaWContainer object - Results

Example

Dim objSQL
Set objSQL = objContext.GetSQL()
objSQL.SetSQLStatement(“Select * from HARUSER”)
 objSQL.Execute(); CaContainer sqldata = rSQL.GetSQLResult();
Set objContainer = objSQL.GetSQLResult();

More information: