<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.sqlsrv.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.sqlsrv-fetch-object.php',
    1 => 'sqlsrv_fetch_object',
    2 => 'Retrieves the next row of data in a result set as an object',
  ),
  'up' => 
  array (
    0 => 'ref.sqlsrv.php',
    1 => 'SQLSRV 関数',
  ),
  'prev' => 
  array (
    0 => 'function.sqlsrv-fetch-array.php',
    1 => 'sqlsrv_fetch_array',
  ),
  'next' => 
  array (
    0 => 'function.sqlsrv-field-metadata.php',
    1 => 'sqlsrv_field_metadata',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/sqlsrv/functions/sqlsrv-fetch-object.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.sqlsrv-fetch-object" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">sqlsrv_fetch_object</h1>
  <p class="verinfo">(No version information available, might only be in Git)</p><p class="refpurpose"><span class="refname">sqlsrv_fetch_object</span> &mdash; <span class="dc-title">Retrieves the next row of data in a result set as an object</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.sqlsrv-fetch-object-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>sqlsrv_fetch_object</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$stmt</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$className</code><span class="initializer"> = ?</span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.array.php" class="type array">array</a></span> <code class="parameter">$ctorParams</code><span class="initializer"> = ?</span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$row</code><span class="initializer"> = ?</span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$offset</code><span class="initializer"> = ?</span></span><br>): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>

  <p class="simpara">
   Retrieves the next row of data in a result set as an instance of the specified
   class with properties that match the row field names and values that correspond
   to the row field values.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.sqlsrv-fetch-object-parameters">
  <h3 class="title">パラメータ</h3>
  <dl>
   
    <dt><code class="parameter">stmt</code></dt>
    <dd>
     <span class="simpara">
      A statement resource created by <span class="function"><a href="function.sqlsrv-query.php" class="function">sqlsrv_query()</a></span> or
      <span class="function"><a href="function.sqlsrv-execute.php" class="function">sqlsrv_execute()</a></span>.
     </span>
    </dd>
   
   
    <dt><code class="parameter">className</code></dt>
    <dd>
     <span class="simpara">
      The name of the class to instantiate. If no class name is specified,
      stdClass is instantiated.
     </span>
    </dd>
   
   
    <dt><code class="parameter">ctorParams</code></dt>
    <dd>
     <span class="simpara">
      Values passed to the constructor of the specified class. If the constructor
      of the specified class takes parameters, the ctorParams array must be
      supplied.
     </span>
    </dd>
   
   
    <dt><code class="parameter">row</code></dt>
    <dd>
     <p class="para">
      The row to be accessed. This parameter can only be used if the specified
      statement was prepared with a scrollable cursor. In that case, this parameter
      can take on one of the following values:
      <ul class="simplelist">
       <li>SQLSRV_SCROLL_NEXT</li>
       <li>SQLSRV_SCROLL_PRIOR</li>
       <li>SQLSRV_SCROLL_FIRST</li>
       <li>SQLSRV_SCROLL_LAST</li>
       <li>SQLSRV_SCROLL_ABSOLUTE</li>
       <li>SQLSRV_SCROLL_RELATIVE</li>
      </ul>
     </p>
    </dd>
   
   
    <dt><code class="parameter">offset</code></dt>
    <dd>
     <span class="simpara">
      Specifies the row to be accessed if the row parameter is set to
      <strong><code><a href="sqlsrv.constants.php#constant.sqlsrv-scroll-absolute">SQLSRV_SCROLL_ABSOLUTE</a></code></strong> or
      <strong><code><a href="sqlsrv.constants.php#constant.sqlsrv-scroll-relative">SQLSRV_SCROLL_RELATIVE</a></code></strong>. Note that the first row in
      a result set has index 0.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.sqlsrv-fetch-object-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="simpara">
   Returns an object on success, <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> if there are no more rows to return,
   and <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> if an error occurs or if the specified class does not exist.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.sqlsrv-fetch-object-examples">
  <h3 class="title">例</h3>
  <div class="example" id="example-1">
   <p><strong>例1 <span class="function"><strong>sqlsrv_fetch_object()</strong></span> example</strong></p>
   <div class="example-contents"><p>
   The following example demonstrates how to retrieve a row as a stdClass object.
   </p></div>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$serverName </span><span style="color: #007700">= </span><span style="color: #DD0000">"serverName\sqlexpress"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$connectionInfo </span><span style="color: #007700">= array( </span><span style="color: #DD0000">"Database"</span><span style="color: #007700">=&gt;</span><span style="color: #DD0000">"dbName"</span><span style="color: #007700">, </span><span style="color: #DD0000">"UID"</span><span style="color: #007700">=&gt;</span><span style="color: #DD0000">"username"</span><span style="color: #007700">, </span><span style="color: #DD0000">"PWD"</span><span style="color: #007700">=&gt;</span><span style="color: #DD0000">"password"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$conn </span><span style="color: #007700">= </span><span style="color: #0000BB">sqlsrv_connect</span><span style="color: #007700">( </span><span style="color: #0000BB">$serverName</span><span style="color: #007700">, </span><span style="color: #0000BB">$connectionInfo</span><span style="color: #007700">);<br />if( </span><span style="color: #0000BB">$conn </span><span style="color: #007700">=== </span><span style="color: #0000BB">false </span><span style="color: #007700">) {<br />     die( </span><span style="color: #0000BB">print_r</span><span style="color: #007700">( </span><span style="color: #0000BB">sqlsrv_errors</span><span style="color: #007700">(), </span><span style="color: #0000BB">true</span><span style="color: #007700">));<br />}<br /><br /></span><span style="color: #0000BB">$sql </span><span style="color: #007700">= </span><span style="color: #DD0000">"SELECT fName, lName FROM Table_1"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$stmt </span><span style="color: #007700">= </span><span style="color: #0000BB">sqlsrv_query</span><span style="color: #007700">( </span><span style="color: #0000BB">$conn</span><span style="color: #007700">, </span><span style="color: #0000BB">$sql</span><span style="color: #007700">);<br />if( </span><span style="color: #0000BB">$stmt </span><span style="color: #007700">=== </span><span style="color: #0000BB">false </span><span style="color: #007700">) {<br />     die( </span><span style="color: #0000BB">print_r</span><span style="color: #007700">( </span><span style="color: #0000BB">sqlsrv_errors</span><span style="color: #007700">(), </span><span style="color: #0000BB">true</span><span style="color: #007700">));<br />}<br /><br /></span><span style="color: #FF8000">// Retrieve each row as an object.<br />// Because no class is specified, each row will be retrieved as a stdClass object.<br />// Property names correspond to field names.<br /></span><span style="color: #007700">while( </span><span style="color: #0000BB">$obj </span><span style="color: #007700">= </span><span style="color: #0000BB">sqlsrv_fetch_object</span><span style="color: #007700">( </span><span style="color: #0000BB">$stmt</span><span style="color: #007700">)) {<br />      echo </span><span style="color: #0000BB">$obj</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">fName</span><span style="color: #007700">.</span><span style="color: #DD0000">", "</span><span style="color: #007700">.</span><span style="color: #0000BB">$obj</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">lName</span><span style="color: #007700">.</span><span style="color: #DD0000">"&lt;br /&gt;"</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

  </div>
 </div>


 <div class="refsect1 notes" id="refsect1-function.sqlsrv-fetch-object-notes">
  <h3 class="title">注意</h3>
  <p class="para">
   If a class name is specified with the optional $className parameter and the
   class has properties whose names match the result set field names, the corresponding
   result set values are applied to the properties. If a result set field name
   does not match a class property, a property with the result set field name is added
   to the object and the result set value is applied to the property. The following
   rules apply when using the $className parameter:
   <ul class="simplelist">
      <li>Field-property name matching is case-sensitive.</li>
      <li>Field-property matching occurs regardless of access modifiers.</li>
      <li>Class property data types are ignored when applying a field value to a property.</li>
      <li>If the class does not exist, the function returns <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> and adds an error to the error collection.</li>
   </ul>
   Regardless of whether the $className parameter is supplied, if a field with no
   name is returned, the field value will be ignored and a warning will be added
   to the error collection.
  </p>
  <p class="simpara">
   When consuming a result set that has multiple columns with the same name, it may
   be better to use <span class="function"><a href="function.sqlsrv-fetch-array.php" class="function">sqlsrv_fetch_array()</a></span> or the combination of
   <span class="function"><a href="function.sqlsrv-fetch.php" class="function">sqlsrv_fetch()</a></span> and <span class="function"><a href="function.sqlsrv-get-field.php" class="function">sqlsrv_get_field()</a></span>.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.sqlsrv-fetch-object-seealso">
  <h3 class="title">参考</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.sqlsrv-fetch.php" class="function" rel="rdfs-seeAlso">sqlsrv_fetch()</a> - Makes the next row in a result set available for reading</span></li>
   <li><span class="function"><a href="function.sqlsrv-fetch-array.php" class="function" rel="rdfs-seeAlso">sqlsrv_fetch_array()</a> - 行を配列として返す</span></li>
  </ul>
 </div>

</div><?php manual_footer($setup); ?>