September 2001
Intermediate to advanced
768 pages
32h 45m
English
bool odbc_execute(resource result [array parameters])
Executes a prepared query.
Returns:
TRUE on success; FALSE on error
Description:
Executes a SQL statement based on the result identifier passed from odbc_prepare().
Version:
Existing since version 3.0.6
Example:
$db = odbc_connect("DSN","user","pass");
$result = odbc_prepare($db,"SELECT FirstName, LastName FROM Employees
ORDER BY LastName");
odbc_execute($result);
|
Read now
Unlock full access