Database Parsing Function

For database TrueLogs, TrueLog Explorer offers a single parsing function, Parse Element Value. This parsing function is available from the context menu in the SQL window’s Output data view.

The function generates a parsing statement for one element of a result set. Example:

Ora8StmtExecute(ghSvcCtx0, ghStmt0);
Ora8StmtFetch(ghStmt0, ORA_FETCH_ALL, 100); // rows fetched: 1
sParam2 := RsGetString("1", 4);
Print("sParam2: " + sParam2);

Depending on the data type (number, float, or string), the appropriate parsing function is then generated (RsGetInt, RsGetFloat, or RsGetString).