Sophie

Sophie

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

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>Get the last Ingres error number generated</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.ingres-cursor.html">ingres_cursor</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.ingres-error.html">ingres_error</a></div>
 <div class="up"><a href="ref.ingres.html">Ingres Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.ingres-errno" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ingres_errno</h1>
  <p class="verinfo">(PECL ingres &gt;= 1.1.0)</p><p class="refpurpose"><span class="refname">ingres_errno</span> &mdash; <span class="dc-title">Get the last Ingres error number generated</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.ingres-errno-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">int</span> <span class="methodname"><strong>ingres_errno</strong></span>
    ([ <span class="methodparam"><span class="type">resource</span> <code class="parameter">$link</code></span>
  ] )</div>

  <p class="para rdfs-comment">
   Returns an integer containing the last error number. If no error was
   reported 0 is returned.
  </p>
  <p class="para">
   If a <em><code class="parameter">link</code></em> resource is passed to
    <span class="function"><strong>ingres_errno()</strong></span> it returns the last error recorded for
   the link. If no link is passed, then  <span class="function"><strong>ingres_errno()</strong></span>
   returns the last error reported using the default link.
  </p>
  <p class="para">
   The function,  <span class="function"><strong>ingres_errno()</strong></span>, should always be called
   after executing a database query.  Calling another function before
    <span class="function"><strong>ingres_errno()</strong></span> is called will reset or change any
   error code from the last Ingres function call.
  </p>
 </div>


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

    <dt>

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

      <p class="para">
       The connection link identifier
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ingres-errno-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns an integer containing the last error number. If no error was
   reported, 0 is returned.
  </p>
 </div>



 <div class="refsect1 examples" id="refsect1-function.ingres-errno-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1210">
    <p><strong>Example #1 Get the last Ingres error number generated</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$link&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">ingres_connect</span><span style="color: #007700">(</span><span style="color: #0000BB">$database</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$user</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$password</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$result&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">ingres_query</span><span style="color: #007700">(</span><span style="color: #0000BB">$link</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"select&nbsp;*&nbsp;from&nbsp;table"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$error_code&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">ingres_errno</span><span style="color: #007700">(</span><span style="color: #0000BB">$link</span><span style="color: #007700">);<br /><br />if&nbsp;(&nbsp;</span><span style="color: #0000BB">$error_code&nbsp;</span><span style="color: #007700">!=&nbsp;</span><span style="color: #0000BB">0&nbsp;</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"An&nbsp;error&nbsp;occurred&nbsp;-&nbsp;"&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">$error_code</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.ingres-errno-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="function.ingres-error.html" class="function" rel="rdfs-seeAlso">ingres_error()</a> - Get a meaningful error message for the last error generated</span></li>
    <li class="member"> <span class="function"><a href="function.ingres-errsqlstate.html" class="function" rel="rdfs-seeAlso">ingres_errsqlstate()</a> - Get the last SQLSTATE error code generated</span></li>
    <li class="member"> <span class="function"><a href="function.ingres-next-error.html" class="function" rel="rdfs-seeAlso">ingres_next_error()</a> - Get the next Ingres error</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.ingres-cursor.html">ingres_cursor</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.ingres-error.html">ingres_error</a></div>
 <div class="up"><a href="ref.ingres.html">Ingres Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>