MySQL Improved Extension (
Mysqli
)
2332
["length"]=>
int(5)
["charsetnr"]=>
int(8)
["flags"]=>
int(1)
["type"]=>
int(253)
["decimals"]=>
int(31)
}
}
Prepared statements
Meta data of result sets created using prepared statements are accessed the same way. A suitable
mysqli_result
handle is returned by
mysqli_stmt_result_metadata
.
Example 20.105. Prepared statements metadata
<?php
$stmt = $mysqli->prepare("SELECT 1 AS _one, 'Hello' AS _two FROM DUAL");
$stmt->execute();
$res = $stmt->result_metadata();
var_dump($res->fetch_fields());
?>
See also
mysqli::query
mysqli_result::fetch_fields
20.7.3.4. Installing/Configuring
Copyright 1997-2012 the PHP Documentation Group. [2230]
20.7.3.4.1. Requirements
Copyright 1997-2012 the PHP Documentation Group. [2230]
In order to have these functions available, you must compile PHP with support for the mysqli extension.
Note
The mysqli extension is designed to work with MySQL version 4.1.13 or newer,
or 5.0.7 or newer. For previous versions, please see the
MySQL
extension
documentation.
20.7.3.4.2. Installation
Copyright 1997-2012 the PHP Documentation Group. [2230]
The
mysqli
extension was introduced with PHP version 5.0.0. The MySQL Native Driver was included
in PHP version 5.3.0.
20.7.3.4.2.1. Installation on Linux
Copyright 1997-2012 the PHP Documentation Group. [2230]
The common Unix distributions include binary versions of PHP that can be installed. Although these
binary versions are typically built with support for MySQL extensions enabled, the extension libraries
Summary of Contents for 5.0
Page 1: ...MySQL 5 0 Reference Manual ...
Page 18: ...xviii ...
Page 60: ...40 ...
Page 396: ...376 ...
Page 578: ...558 ...
Page 636: ...616 ...
Page 844: ...824 ...
Page 1234: ...1214 ...
Page 1427: ...MySQL Proxy Scripting 1407 ...
Page 1734: ...1714 ...
Page 1752: ...1732 ...
Page 1783: ...Configuring Connector ODBC 1763 ...
Page 1793: ...Connector ODBC Examples 1773 ...
Page 1839: ...Connector Net Installation 1819 2 You must choose the type of installation to perform ...
Page 2850: ...2830 ...
Page 2854: ...2834 ...
Page 2928: ...2908 ...
Page 3000: ...2980 ...
Page 3122: ...3102 ...
Page 3126: ...3106 ...
Page 3174: ...3154 ...
Page 3232: ...3212 ...