<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.dbase.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.dbase-replace-record.php',
    1 => 'dbase_replace_record',
    2 => 'Ersetzt einen Datensatz in einer Datenbank',
  ),
  'up' => 
  array (
    0 => 'ref.dbase.php',
    1 => 'dBase Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.dbase-pack.php',
    1 => 'dbase_pack',
  ),
  'next' => 
  array (
    0 => 'book.ibase.php',
    1 => 'Firebird/InterBase',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/dbase/functions/dbase-replace-record.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.dbase-replace-record" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">dbase_replace_record</h1>
  <p class="verinfo">(PHP 5 &lt; 5.3.0, dbase 5, dbase 7)</p><p class="refpurpose"><span class="refname">dbase_replace_record</span> &mdash; <span class="dc-title">Ersetzt einen Datensatz in einer Datenbank</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.dbase-replace-record-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>dbase_replace_record</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$database</code></span>, <span class="methodparam"><span class="type"><a href="language.types.array.php" class="type array">array</a></span> <code class="parameter">$data</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$number</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Ersetzt in der Datenbank den angegebenen Datensatz
   <code class="parameter">record_number</code> mit den Daten aus
   <code class="parameter">record</code>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.dbase-replace-record-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">database</code></dt>
     <dd>
      <p class="para">
       Die Datenbank-Ressource, die von <span class="function"><a href="function.dbase-open.php" class="function">dbase_open()</a></span> oder
       <span class="function"><a href="function.dbase-create.php" class="function">dbase_create()</a></span> zurückgegeben wurde.
      </p>
     </dd>
    
    
     <dt><code class="parameter">data</code></dt>
     <dd>
      <p class="para">
       Ein indiziertes Datenarray. Falls die Anzahl der Elemente nicht mit der
       Anzahl der Datenbankfelder übereinstimmt, schlägt
       <span class="function"><strong>dbase_replace_record()</strong></span> fehl.
      </p>
      <blockquote class="note"><p><strong class="note">Hinweis</strong>: 
       <p class="para">
        Vergessen Sie nicht, den <code class="literal">deleted</code>-Schlüssel zu
        löschen, wenn Sie für diesen Parameter den Rückgabewert von
        <span class="function"><a href="function.dbase-get-record.php" class="function">dbase_get_record()</a></span> verwenden.
       </p>
      </p></blockquote>
     </dd>
    
    
     <dt><code class="parameter">number</code></dt>
     <dd>
      <p class="para">
       Eine Ganzzahl, die von 1 bis zur Anzahl der Datensätze in der Datenbank
       (wie von <span class="function"><a href="function.dbase-numrecords.php" class="function">dbase_numrecords()</a></span> zurückgegeben) geht.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.dbase-replace-record-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt bei Erfolg <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> zurück. Bei einem Fehler wird <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> zurückgegeben.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.dbase-replace-record-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Beschreibung</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>PECL dbase 7.0.0</td>
      <td>
       <code class="parameter">database</code> ist nun vom Typ <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span>
       statt <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.dbase-replace-record-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 Aktualisieren eines Datensatzes in der Datenbank</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">// im lesen-schreiben-Modus öffnen<br /></span><span style="color: #0000BB">$db </span><span style="color: #007700">= </span><span style="color: #0000BB">dbase_open</span><span style="color: #007700">(</span><span style="color: #DD0000">'/tmp/test.dbf'</span><span style="color: #007700">, </span><span style="color: #0000BB">2</span><span style="color: #007700">);<br /><br />if (</span><span style="color: #0000BB">$db</span><span style="color: #007700">) {<br />  </span><span style="color: #FF8000">// den alten Datensatz holen<br />  </span><span style="color: #0000BB">$datensatz </span><span style="color: #007700">= </span><span style="color: #0000BB">dbase_get_record_with_names</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">, </span><span style="color: #0000BB">1</span><span style="color: #007700">);<br /><br />  </span><span style="color: #FF8000">// den Eintrag 'deleted' entfernen<br />  </span><span style="color: #007700">unset(</span><span style="color: #0000BB">$datensatz</span><span style="color: #007700">[</span><span style="color: #DD0000">'deleted'</span><span style="color: #007700">]);<br /><br />  </span><span style="color: #FF8000">// das Datumsfeld mit dem aktuellen Zeitstempel aktualisieren<br />  </span><span style="color: #0000BB">$datensatz</span><span style="color: #007700">[</span><span style="color: #DD0000">'Datum'</span><span style="color: #007700">] = </span><span style="color: #0000BB">date</span><span style="color: #007700">(</span><span style="color: #DD0000">'Ymd'</span><span style="color: #007700">);<br /><br />  </span><span style="color: #FF8000">// wandle den Datensatz in ein indexiertes Array um<br />  </span><span style="color: #0000BB">$datensatz </span><span style="color: #007700">= </span><span style="color: #0000BB">array_values</span><span style="color: #007700">(</span><span style="color: #0000BB">$datensatz</span><span style="color: #007700">);<br /><br />  </span><span style="color: #FF8000">// den Datensatz ersetzen<br />  </span><span style="color: #0000BB">dbase_replace_record</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">, </span><span style="color: #0000BB">$datensatz</span><span style="color: #007700">, </span><span style="color: #0000BB">1</span><span style="color: #007700">);<br />  </span><span style="color: #0000BB">dbase_close</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">);<br />}<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


 <div class="refsect1 notes" id="refsect1-function.dbase-replace-record-notes">
  <h3 class="title">Anmerkungen</h3>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: 
   <p class="para">
    Boolesche Felder ergeben einen <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>-Elementwert
    (<code class="literal">0</code> oder <code class="literal">1</code>), wenn sie per
    <span class="function"><a href="function.dbase-get-record.php" class="function">dbase_get_record()</a></span> oder
    <span class="function"><a href="function.dbase-get-record-with-names.php" class="function">dbase_get_record_with_names()</a></span> gelesen werden. Werden
    sie zurückgeschrieben, wird der Wert zu <code class="literal">0</code>, so dass
    darauf geachtet werden muss, den Wert ordnungsgemäß anzupassen.
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.dbase-replace-record-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.dbase-add-record.php" class="function" rel="rdfs-seeAlso">dbase_add_record()</a> - H&auml;ngt einen Datensatz an eine Datenbank an</span></li>
    <li><span class="function"><a href="function.dbase-delete-record.php" class="function" rel="rdfs-seeAlso">dbase_delete_record()</a> - Markiert einen Datensatz als gel&ouml;scht</span></li>
   </ul>
  </p>
 </div>


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