runRealSQL()

The function runRealSQL executes an SQL command that does not return a value such as INSERT or DELETE.

Synopsis

int runRealSQL(string sqlCommand);

Parameters

Parameter Description
sqlCommand An SQL command that does not return a value such as INSERT or DELETE.

Return value

In the event of an error, the function returns 0 otherwise, 1.

Description

The function runRealSQL executes an SQL command that does not return a value such as INSERT or DELETE. The command is executed by using the current database connection.

Be cautious when using the function. Invalid queries might cause undesired side effects.

Assignment

RDB

Availability

UI