sqlsrv_field_metadata
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
sqlsrv_field_metadata
Референца за `function.sqlsrv-field-metadata.php` со подобрена типографија и навигација.
sqlsrv_field_metadata
(Нема достапни информации за верзијата, можеби е само во Git)
sqlsrv_field_metadata — Retrieves metadata for the fields of a statement prepared by sqlsrv_prepare() or sqlsrv_query()
= NULL
Retrieves metadata for the fields of a statement prepared by sqlsrv_prepare() or sqlsrv_query(). sqlsrv_field_metadata() може да се повика на изјава пред или по извршувањето на изјавата.
Параметри
stmt- The statement resource for which metadata is returned.
Вратени вредности
Returns an array of arrays on success. Otherwise, false is returned. Each returned array is described by the following table:
| Можни индекси на низи за | = NULL |
|---|---|
| Име | Името на полето. |
| Тип | The numeric value for the SQL type. |
| Големина | The number of characters for fields of character type, the number of bytes for fields of binary type, or null for other types. |
| Прецизност | The precision for types of variable precision, null for other types. |
| Scale | The scale for types of variable scale, null for other types. |
| Nullable | An enumeration indicating whether the column is nullable, not nullable, or if it is not known. |
Примери
Пример #1 sqlsrv_field_metadata() example
<?php
$serverName = "serverName\sqlexpress";
$connectionInfo = array( "Database"=>"AdventureWorks", "UID"=>"username", "PWD"=>"password");
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn === false ) {
die( print_r( sqlsrv_errors(), true));
}
$sql = "SELECT * FROM Table_1";
$stmt = sqlsrv_prepare( $conn, $sql );
foreach( sqlsrv_field_metadata( $stmt ) as $fieldMetadata ) {
foreach( $fieldMetadata as $name => $value) {
echo "$name: $value<br />";
}
echo "<br />";
}
?>Види Исто така
- sqlsrv_client_info() - Враќа информации за клиентот и наведената врска