cubrid_drop

(PECL CUBRID >= 8.3.0)

cubrid_dropIs used to delete an instance

Description

int cubrid_drop ( resource $conn_identifier , string $oid )

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

Parameters

conn_identifier

Connection identifier.

oid

Oid of the instance that you want to delete.

Return Values

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Examples

Example #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);
}
?>

See Also


Copyright © 2010-2024 Platon Technologies, s.r.o.           Home | Man pages | tLDP | Documents | Utilities | About
Design by styleshout