|
maxdb_stmt_executemaxdb_stmt::executeExecutes a prepared Query BeschreibungProzeduraler Stil
bool maxdb_stmt_execute
( resource
$stmt
)Objektorientierter Stil
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.
Rückgabewerte
Gibt bei Erfolg BeispieleBeispiel #1 Objektorientierter Stil
<?phpBeispiel #2 Prozeduraler Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: 11111 (Georgetown,NY) 22222 (Hubbatown,CA) Siehe auch
|