Concept Framework 2.0 documentation | Contents | Index |
Name | Version | Deprecated |
ODBCExecute | version 1.0 | no |
number ODBCExecute(string query, number statement) |
query | the SQL query |
statement | the statement handle (or result set) as returned by ODBCStatement. |
Execute a prepared query. A prepared query contains bounded parameters via the ODBCAddParameter function.
If you want to build a prepared query, the order is this: ODBCStatement for each parameter in the query, ODBCAddParameter ODBCExecute This function is considered safer when dealing with data from the user. In addition, you may want to check the ODBCExecuteQuery as a convenient alternative. After a query that provides results is successfully executed, you must call {ODBCBind} in order to be able to access the data in the result set (result set is the same as statement handle). |
Documented by Eduard Suica, generation time: Fri Jan 21 18:06:22 2011 GMT | (c)2011 RadGs Software |