<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/cubridmysql.cubrid.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.cubrid-errno.php',
    1 => 'cubrid_errno',
    2 => 'Return the numerical value of the error message from previous CUBRID operation',
  ),
  'up' => 
  array (
    0 => 'cubridmysql.cubrid.php',
    1 => 'Функції CUBRID для сумісності з MySQL',
  ),
  'prev' => 
  array (
    0 => 'function.cubrid-db-name.php',
    1 => 'cubrid_db_name',
  ),
  'next' => 
  array (
    0 => 'function.cubrid-error.php',
    1 => 'cubrid_error',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/cubrid/cubridmysql/cubrid-errno.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.cubrid-errno" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">cubrid_errno</h1>
  <p class="verinfo">(PECL CUBRID &gt;= 8.3.1)</p><p class="refpurpose"><span class="refname">cubrid_errno</span> &mdash; <span class="dc-title">Return the numerical value of the error message from previous CUBRID operation</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.cubrid-errno-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>cubrid_errno</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$conn_identifier</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <p class="para rdfs-comment">
   Returns the error number from the last CUBRID function. 
  </p>
  <p class="para">
   The <span class="function"><strong>cubrid_errno()</strong></span> function is used to get the
   error code of the error that occurred during the API execution.  Usually,
   it gets the error code when API returns false as its return value.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.cubrid-errno-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">conn_identifier</code></dt>
     <dd>
      <p class="para">
       The CUBRID connection identifier. If the connection identifier is not
       specified, the last connection opened by
       <span class="function"><a href="function.cubrid-connect.php" class="function">cubrid_connect()</a></span> is assumed.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 
 <div class="refsect1 returnvalues" id="refsect1-function.cubrid-errno-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   Returns the error number from the last CUBRID function, or <code class="literal">0</code> (zero) if no error occurred.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.cubrid-errno-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 <span class="function"><strong>cubrid_errno()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$con </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'localhost'</span><span style="color: #007700">, </span><span style="color: #0000BB">33000</span><span style="color: #007700">, </span><span style="color: #DD0000">'demodb'</span><span style="color: #007700">, </span><span style="color: #DD0000">'dba'</span><span style="color: #007700">, </span><span style="color: #DD0000">''</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$req </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$con</span><span style="color: #007700">, </span><span style="color: #DD0000">"select id, name from person"</span><span style="color: #007700">);<br />if (</span><span style="color: #0000BB">$req</span><span style="color: #007700">) {<br />    while (list (</span><span style="color: #0000BB">$id</span><span style="color: #007700">, </span><span style="color: #0000BB">$name</span><span style="color: #007700">) = </span><span style="color: #0000BB">cubrid_fetch</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">)) <br />    echo </span><span style="color: #0000BB">$id</span><span style="color: #007700">, </span><span style="color: #0000BB">$name</span><span style="color: #007700">;<br />} else {<br />    echo </span><span style="color: #DD0000">"Error Code: "</span><span style="color: #007700">, </span><span style="color: #0000BB">cubrid_errno</span><span style="color: #007700">(</span><span style="color: #0000BB">$con</span><span style="color: #007700">);<br />    echo </span><span style="color: #DD0000">"Error Message: "</span><span style="color: #007700">, </span><span style="color: #0000BB">cubrid_error</span><span style="color: #007700">(</span><span style="color: #0000BB">$con</span><span style="color: #007700">);<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

     <div class="example-contents"><p>Поданий вище приклад
виведе:</p></div>
     <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Error Code: -493 Error Message: Syntax: Unknown class &quot;person&quot;. select id, [name] from person</pre>
</div>
     </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.cubrid-errno-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.cubrid-error.php" class="function" rel="rdfs-seeAlso">cubrid_error()</a> - Get the error message</span></li>
    <li><span class="function"><a href="function.cubrid-error-code.php" class="function" rel="rdfs-seeAlso">cubrid_error_code()</a> - Get error code for the most recent function call</span></li>
    <li><span class="function"><a href="function.cubrid-error-msg.php" class="function" rel="rdfs-seeAlso">cubrid_error_msg()</a> - Get last error message for the most recent function call</span></li>
   </ul>
  </p>
 </div>

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