<?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 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.dbase-delete-record.php',
    1 => 'dbase_delete_record',
    2 => 'Deletes a record from a database',
  ),
  'up' => 
  array (
    0 => 'ref.dbase.php',
    1 => 'dBase İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.dbase-create.php',
    1 => 'dbase_create',
  ),
  'next' => 
  array (
    0 => 'function.dbase-get-header-info.php',
    1 => 'dbase_get_header_info',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/dbase/functions/dbase-delete-record.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.dbase-delete-record" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">dbase_delete_record</h1>
  <p class="verinfo">(PHP 5 &lt; 5.3.0, dbase 5, dbase 7)</p><p class="refpurpose"><span class="refname">dbase_delete_record</span> &mdash; <span class="dc-title">Deletes a record from a database</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.dbase-delete-record-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>dbase_delete_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.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">
   Marks the given record to be deleted from the database.
  </p>
  <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
   <p class="para">
    To actually remove the record from the database, you must also call
    <span class="function"><a href="function.dbase-pack.php" class="function">dbase_pack()</a></span>.
   </p>
  </p></blockquote>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.dbase-delete-record-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">database</code></dt>
     <dd>
      <p class="para">
       The database resource, returned by <span class="function"><a href="function.dbase-open.php" class="function">dbase_open()</a></span>
       or <span class="function"><a href="function.dbase-create.php" class="function">dbase_create()</a></span>.
      </p>
     </dd>
    
    
     <dt><code class="parameter">number</code></dt>
     <dd>
      <p class="para">
       An integer which spans from 1 to the number of records in the database
       (as returned by <span class="function"><a href="function.dbase-numrecords.php" class="function">dbase_numrecords()</a></span>).
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.dbase-delete-record-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Başarı durumunda <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>, başarısızlık durumunda <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> döner.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.dbase-delete-record-changelog">
  <h3 class="title">Sürüm Bilgisi</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Sürüm: </th>
      <th>Açıklama</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>PECL dbase 7.0.0</td>
      <td>
       <code class="parameter">database</code> is now a <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span>
       instead of an <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.dbase-delete-record-seealso">
  <h3 class="title">Ayrıca Bakınız</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> - Adds a record to a database</span></li>
    <li><span class="function"><a href="function.dbase-replace-record.php" class="function" rel="rdfs-seeAlso">dbase_replace_record()</a> - Replaces a record in a database</span></li>
   </ul>
  </p>
 </div>

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