PHP » GoLang |
login |
register |
about
|
GoLang mysqli_stmt::result_metadata
request it (397)
GoLang replacement for PHP's mysqli_stmt::result_metadata
[edit | history]
PHP mysqli_stmt::result_metadataPHP original manual for mysqli_stmt::result_metadata [ show | php.net ]mysqli_stmt::result_metadatamysqli_stmt_result_metadata(PHP 5, PHP 7) mysqli_stmt::result_metadata -- mysqli_stmt_result_metadata — Returns result set metadata from a prepared statement DescriptionObject oriented style Procedural style If a statement passed to mysqli_prepare() is one that produces a result set, mysqli_stmt_result_metadata() returns the result object that can be used to process the meta information such as total number of fields and individual field information.
The result set structure should be freed when you are done with it, which you can do by passing it to mysqli_free_result()
Return Values
Returns a result object or ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php See Also
|
more
Recently updated
more
Most requested
|