Parameterized Statements
The following code example shows how to bind parameters to create parameterized statements.
Reusable Statements
The odbc_prepare function creates prepared statements, which can be re-used across multiple calls to odbc_execute. The statement object can be used to fetch results like a non-parameterized query.
$stmt = odbc_prepare($cnx, "SELECT Username, Email FROM [CData].[Administrators].Users WHERE Id = ?");
odbc_execute($stmt, array("39ef9b6f-5973-4701-bd19-7950d4b7d6e0 1"));
while ($row = odbc_fetch_array($stmt)) {
echo "Username = ", $row["Username"], "\n";
echo "Email = ", $row["Email"], "\n";
}
odbc_execute($stmt, array("39ef9b6f-5973-4701-bd19-7950d4b7d6e0 2"));
while ($row = odbc_fetch_array($stmt)) {
echo "Username = ", $row["Username"], "\n";
echo "Email = ", $row["Email"], "\n";
}