Previous Topic: void SetSQLStatement( LPCTSTR szSQLStr )

Next Topic: HINT32 Execute(void)


CaContainer GetSQLResult( void )

Retrieves the results from the execution of the SQL statement.

Owning Class

CaSQL

Arguments

None

Return Value

CaContainer-results

Example

CaSQL& rSQL= rContext.GetSQL();
rSQL.SetSQLStatement(“Select * from HARUSER”); 
rSQL.Execute();
CaContainer sqldata = rSQL.GetSQLResult();

More information: