PHP » GoLang |
login |
register |
about
|
GoLang mysqli_stmt::execute
request it (439)
GoLang replacement for PHP's mysqli_stmt::execute
[edit | history]
mysqli_stmt::executemysqli_stmt_execute(PHP 5, PHP 7) mysqli_stmt::execute -- mysqli_stmt_execute — Executes a prepared Query DescriptionObject oriented style
bool mysqli_stmt::execute
( void
)
Procedural style 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.
Return Values
Returns ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above examples will output: Stuttgart (DEU,Baden-Wuerttemberg) Bordeaux (FRA,Aquitaine) See Also
|
more
Recently updated
more
Most requested
more
Last requests
|