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

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_drop

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_disconnect

cubrid_errno>>

cubrid_drop

(PECL CUBRID >= 8.3.0)

cubrid_dropIs used to delete an instance

Beschreibung

int cubrid_drop ( resource $conn_identifier , string $oid )

The cubrid_drop() function is used to delete an instance from database by using oid.

Parameter-Liste

conn_identifier

Connection identifier.

oid

Oid of the instance that you want to delete.

Rückgabewerte

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Beispiele

Beispiel #1 cubrid_drop() example

<?php
$deloid 
cubrid_get ($con$oid"order");
$res cubrid_drop ($con$deloid);  
if (
$res) {
   
cubrid_commit ($con);
} else {
   
cubrid_rollback ($con);
}
?>

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