|
mysqli_stmt::executemysqli_stmt_execute(PHP 5) mysqli_stmt::execute -- mysqli_stmt_execute — Executes a prepared Query ОписаниеОбъектно-ориентированный стиль
bool mysqli_stmt::execute
( void
)
Процедурный стиль
bool mysqli_stmt_execute
( mysqli_stmt $stmt
)
Executes a query that has been previously prepared using the mysqli_prepare() function. When executed any parameter markers which exist will automatically be replaced with the appropriate data. If the statement is UPDATE, DELETE, or INSERT, the total number of affected rows can be determined by using the mysqli_stmt_affected_rows() function. Likewise, if the query yields a result set the mysqli_stmt_fetch() function is used.
Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. ПримерыПример #1 Объектно-ориентированный стиль
<?php Пример #2 Процедурный стиль
<?php Результат выполнения данных примеров: Stuttgart (DEU,Baden-Wuerttemberg) Bordeaux (FRA,Aquitaine) Смотрите также
|
|