2011-10-03 16:27:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- $Revision$ -->
|
|
|
|
<refentry xml:id="function.sqlsrv-get-field" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>sqlsrv_get_field</refname>
|
|
|
|
<refpurpose>Gets field data from the currently selected row</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>mixed</type><methodname>sqlsrv_get_field</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>stmt</parameter></methodparam>
|
|
|
|
<methodparam><type>int</type><parameter>fieldIndex</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>int</type><parameter>getAsType</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
Gets field data from the currently selected row. Fields must be accessed in
|
|
|
|
order. Field indices start at 0.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>stmt</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
A statement resource returned by <function>sqlsrv_query</function> or
|
|
|
|
<function>sqlsrv_execute</function>.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>fieldIndex</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The index of the field to be retrieved. Field indices start at 0. Fields
|
|
|
|
must be accessed in order. i.e. If you access field index 1, then field
|
|
|
|
index 0 will not be available.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>getAsType</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The PHP data type for the returned field data. If this parameter is not
|
|
|
|
set, the field data will be returned as its default PHP data type.
|
|
|
|
For information about default PHP data types, see
|
|
|
|
<link xlink:href="&url.sqlsrv.default.phptypes;">Default PHP Data Types</link>
|
|
|
|
in the Microsoft SQLSRV documentation.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
Returns data from the specified field on success. Returns &false; otherwise.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>sqlsrv_get_field</function> example</title>
|
|
|
|
<para>
|
|
|
|
The following example demonstrates how to retrieve a row with
|
|
|
|
<function>sqlsrv_fetch</function> and get the row fields with
|
|
|
|
<function>sqlsrv_get_field</function>.
|
|
|
|
</para>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
$serverName = "serverName\sqlexpress";
|
|
|
|
$connectionInfo = array( "Database"=>"dbName", "UID"=>"username", "PWD"=>"password");
|
|
|
|
$conn = sqlsrv_connect( $serverName, $connectionInfo);
|
|
|
|
if( $conn === false ) {
|
|
|
|
die( print_r( sqlsrv_errors(), true));
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = "SELECT Name, Comment
|
|
|
|
FROM Table_1
|
|
|
|
WHERE ReviewID=1";
|
|
|
|
$stmt = sqlsrv_query( $conn, $sql);
|
|
|
|
if( $stmt === false ) {
|
|
|
|
die( print_r( sqlsrv_errors(), true));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the first (and in this case, only) row of the result set available for reading.
|
|
|
|
if( sqlsrv_fetch( $stmt ) === false) {
|
|
|
|
die( print_r( sqlsrv_errors(), true));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the row fields. Field indeces start at 0 and must be retrieved in order.
|
|
|
|
// Retrieving row fields by name is not supported by sqlsrv_get_field.
|
|
|
|
$name = sqlsrv_get_field( $stmt, 0);
|
|
|
|
echo "$name: ";
|
|
|
|
|
|
|
|
$comment = sqlsrv_get_field( $stmt, 1);
|
|
|
|
echo $comment;
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>sqlsrv_fetch</function></member>
|
|
|
|
<member><function>sqlsrv_fetch_array</function></member>
|
|
|
|
<member><function>sqlsrv_fetch_object</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
2011-07-12 17:41:34 +00:00
|
|
|
-->
|