Execute a statement on the currently open database.
return_bool = dbexec(command_str)
return_bool - True if successful, else false
command_str - Statement to send to the database
True if successful.
Unlike dbexecstmt(), dbexec() executes a statement in modular fashion anytime a database is open. It allocates a statement handle, sends the statement, then closes its statement handle.
@CODE
dbopen("test","root","mypassword");
dbexec("INSERT INTO abc (name, number) VALUES('Joe','0013');");
dbclose();
@@CODE