function cdb_result(pParam)


Summary

Used to check the status of the most recently executed CDB call.

Inputs

Outputs

Depending on the input parameter -

API Version

Examples

local tDataA, tRecordID

put cdb_create(tDataA) into tRecordID

put cdb_result()
// Output: "true" if create call succeeded, "false" otherwise

put cdb_result("context")
// Output: "cdb_createLocal"

put cdb_result("response")
// Output: Any error message associated with the call, e.g. "No cdbTableName was provided to cdb_create"