PHP » GoLang |
login |
register |
about
|
GoLang mysqli_stmt::store_result
request it (445)
GoLang replacement for PHP's mysqli_stmt::store_result
[edit | history]
mysqli_stmt::store_resultmysqli_stmt_store_result(PHP 5, PHP 7) mysqli_stmt::store_result -- mysqli_stmt_store_result — Transfers a result set from a prepared statement DescriptionObject oriented style
bool mysqli_stmt::store_result
( void
)
Procedural style You must call mysqli_stmt_store_result() for every query that successfully produces a result set (SELECT, SHOW, DESCRIBE, EXPLAIN), if and only if you want to buffer the complete result set by the client, so that the subsequent mysqli_stmt_fetch() call returns buffered data.
Return Values
Returns ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above examples will output: Number of rows: 20. See Also
|
more
Recently updated
more
Most requested
more
Last requests
|