|
maxdb_stmt_executemaxdb_stmt::execute(PECL maxdb >= 1.0) maxdb_stmt_execute -- maxdb_stmt::execute — Executes a prepared Query ОписаниеПроцедурный стиль
bool maxdb_stmt_execute
( resource $stmt
)
Объектно-ориентированный стиль
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 stmt resource. When executed any parameter markers which exist will automatically be replaced with the appropiate data. 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.
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. ПримерыПример #1 Объектно-ориентированный стиль
<?php Пример #2 Процедурный стиль
<?php Результатом выполнения данного примера будет что-то подобное: 11111 (Georgetown,NY) 22222 (Hubbatown,CA) Смотрите также
|
|