Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 3589

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>List of SQL fieldproperties</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.ifx-fetch-row.html">ifx_fetch_row</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.ifx-fieldtypes.html">ifx_fieldtypes</a></div>
 <div class="up"><a href="ref.ifx.html">Informix Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.ifx-fieldproperties" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ifx_fieldproperties</h1>
  <p class="verinfo">(PHP 4, PHP &lt;=5.2.0)</p><p class="refpurpose"><span class="refname">ifx_fieldproperties</span> &mdash; <span class="dc-title">List of SQL fieldproperties</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.ifx-fieldproperties-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">array</span> <span class="methodname"><strong>ifx_fieldproperties</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result_id</code></span>
   )</div>

  <p class="para rdfs-comment">
   Returns the Informix SQL fieldproperties of every field in the
   query as an associative array.  Properties are encoded as:
   &quot;SQLTYPE;length;precision;scale;ISNULLABLE&quot; where SQLTYPE = the
   Informix type like &quot;SQLVCHAR&quot; etc. and ISNULLABLE = &quot;Y&quot; or &quot;N&quot;.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ifx-fieldproperties-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">result_id</code></em></span>
     <dd>

      <p class="para">
       <em><code class="parameter">result_id</code></em> is a valid resultid returned by
        <span class="function"><a href="function.ifx-query.html" class="function">ifx_query()</a></span> or
        <span class="function"><a href="function.ifx-prepare.html" class="function">ifx_prepare()</a></span> (select type queries only!).
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ifx-fieldproperties-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns an associative array with fieldnames as key and the SQL 
   fieldproperties as data for a query with <em><code class="parameter">result_id</code></em>.
   Returns <strong><code>FALSE</code></strong> on errors.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.ifx-fieldproperties-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1198">
    <p><strong>Example #1 Informix SQL fieldproperties</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$properties&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">ifx_fieldproperties</span><span style="color: #007700">(</span><span style="color: #0000BB">$resultid</span><span style="color: #007700">);<br />if&nbsp;(!isset(</span><span style="color: #0000BB">$properties</span><span style="color: #007700">))&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">/*&nbsp;...&nbsp;error&nbsp;...&nbsp;*/<br /></span><span style="color: #007700">}<br />foreach&nbsp;(</span><span style="color: #0000BB">$properties&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">$fname&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #0000BB">$val</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"</span><span style="color: #0000BB">$fname</span><span style="color: #DD0000">:\t&nbsp;property&nbsp;=&nbsp;</span><span style="color: #0000BB">$val</span><span style="color: #DD0000">\n"</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.ifx-fieldproperties-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="function.ifx-fieldtypes.html" class="function" rel="rdfs-seeAlso">ifx_fieldtypes()</a> - List of Informix SQL fields</span></li>
   </ul>
  </p>
 </div>


</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.ifx-fetch-row.html">ifx_fetch_row</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.ifx-fieldtypes.html">ifx_fieldtypes</a></div>
 <div class="up"><a href="ref.ifx.html">Informix Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>