<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.sqlite3stmt.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'sqlite3stmt.execute.php',
    1 => 'SQLite3Stmt::execute',
    2 => 'Executes a prepared statement and returns a result set object',
  ),
  'up' => 
  array (
    0 => 'class.sqlite3stmt.php',
    1 => 'SQLite3Stmt',
  ),
  'prev' => 
  array (
    0 => 'sqlite3stmt.construct.php',
    1 => 'SQLite3Stmt::__construct',
  ),
  'next' => 
  array (
    0 => 'sqlite3stmt.getsql.php',
    1 => 'SQLite3Stmt::getSQL',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/sqlite3/sqlite3stmt/execute.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="sqlite3stmt.execute" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SQLite3Stmt::execute</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SQLite3Stmt::execute</span> &mdash; <span class="dc-title">Executes a prepared statement and returns a result set object</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-sqlite3stmt.execute-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>SQLite3Stmt::execute</strong></span>(): <span class="type"><span class="type"><a href="class.sqlite3result.php" class="type SQLite3Result">SQLite3Result</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Executes a prepared statement and returns a result set object.
  </p>
  <div class="caution"><strong class="caution">Attenzione</strong>
   <p class="para">
    Result set objects retrieved by calling this method on the same statement
    object are not independent, but rather share the same underlying structure.
    Therefore it is recommended to call
    <span class="methodname"><a href="sqlite3result.finalize.php" class="methodname">SQLite3Result::finalize()</a></span>, before calling
    <span class="methodname"><strong>SQLite3Stmt::execute()</strong></span> on the same statement object
    again.
   </p>
  </div>
 </div>


 <div class="refsect1 parameters" id="refsect1-sqlite3stmt.execute-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">Questa funzione non contiene parametri.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-sqlite3stmt.execute-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Returns an <span class="classname"><a href="class.sqlite3result.php" class="classname">SQLite3Result</a></span> object on successful execution of the prepared
   statement, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-sqlite3stmt.execute-seealso">
  <h3 class="title">Vedere anche:</h3>
  <ul class="simplelist">
   <li><span class="methodname"><a href="sqlite3.prepare.php" class="methodname" rel="rdfs-seeAlso">SQLite3::prepare()</a> - Prepares an SQL statement for execution</span></li>
   <li><span class="methodname"><a href="sqlite3stmt.bindvalue.php" class="methodname" rel="rdfs-seeAlso">SQLite3Stmt::bindValue()</a> - Binds the value of a parameter to a statement variable</span></li>
   <li><span class="methodname"><a href="sqlite3stmt.bindparam.php" class="methodname" rel="rdfs-seeAlso">SQLite3Stmt::bindParam()</a> - Binds a parameter to a statement variable</span></li>
  </ul>
 </div>


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