|
maxdb_stmt_executemaxdb_stmt::executeExecutes a prepared Query DescriptionProcedural style
bool maxdb_stmt_execute
( resource
$stmt
)Object oriented style
bool maxdb_stmt::execute
( void
)
The maxdb_stmt_execute function executes a query that has been previously
prepared using the maxdb_prepare function represented by the
If the statement is UPDATE, DELETE, or INSERT, the total number of affected rows can be determined by using the maxdb_stmt_affected_rows function. Likewise, if the query yields a result set the maxdb_fetch function is used.
Return Values
Returns ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above example will output something similar to: 11111 (Georgetown,NY) 22222 (Hubbatown,CA) See Also
|