PHP Doku:: Is used to update the content - function.cubrid-seq-put.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_seq_put

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_seq_insert

cubrid_set_add>>

cubrid_seq_put

(PECL CUBRID >= 8.3.0)

cubrid_seq_putIs used to update the content

Beschreibung

int cubrid_seq_put ( resource $conn_identifier , string $oid , string $attr_name , int $index , string $seq_element )

The cubrid_seq_put() function is used to update the content of the requested element in a sequent type attribute.

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 update an element.

index

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

seq_element

New content that you want to use for the update.

Rückgabewerte

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Beispiele

Beispiel #1 cubrid_seq_put() example

<?php
cubrid_seq_put 
($con$oid"tel"1"02-3430-1200");
cubrid_seq_put ($con$oid"tel"2"02-3430-1300");
?>

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",...)