Cubrid İşlevleri
PHP Manual

cubrid_drop

(PECL CUBRID >= 8.3.0)

cubrid_dropIs used to delete an instance

Açıklama

int cubrid_drop ( resource $conn_identifier , string $oid )

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

Değiştirgeler

conn_identifier

Connection identifier.

oid

Oid of the instance that you want to delete.

Dönen Değerler

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Örnekler

Örnek 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);
}
?>

Ayrıca Bakınız


Cubrid İşlevleri
PHP Manual