PHP Doku:: Is used to delete an element - function.cubrid-seq-drop.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_seq_drop

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_send_glo

cubrid_seq_insert>>

cubrid_seq_drop

(PECL CUBRID >= 8.3.0)

cubrid_seq_dropIs used to delete an element

Beschreibung

int cubrid_seq_drop ( resource $conn_identifier , string $oid , string $attr_name , int $index )

The cubrid_seq_drop() function is used to delete an element you request from the given sequence type attribute in the database.

Parameter-Liste

conn_identifier

Connection identifier.

oid

Oid of the instance you want to work with.

attr_name

Name of the attribute that you want to delete an element from.

index

Index of the element that you want to delete (1-based).

Rückgabewerte

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Beispiele

Beispiel #1 cubrid_seq_drop() example

<?php
$elems 
cubrid_col_get ($con$oid"style");
$i 1;
while (list (
$key$val) = each($elems)) {
if (
$val == "1") {
    echo 
$val;
    
cubrid_seq_drop ($con$oid"style"$i);
  }
  
$i++;
}
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)