downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

cubrid_real_escape_string> <cubrid_prepare
Last updated: Fri, 24 Sep 2010

view this page in

cubrid_put

(PECL CUBRID >= 8.3.0)

cubrid_putIs used to update an attribute

Description

int cubrid_put ( resource $conn_identifier , string $oid [, string $attr ], mixed $value )

The cubrid_put() function is used to update an attribute of the instance of the given oid.

You can update single attribute by using string data type to set attr. In such case, you can use integer, float-point, or string type data for the value argument. To update multiple number of attributes, you can disregard the attr argument, and set value argument with associative array data type. However, you cannot use the method for attribute of collection type. You have to use APIs related to collection type (cubrid_set_add(), cubrid_set_drop(), etc) when you want to use cubrid_put() on collection typed attribute.

Parameters

conn_identifier

Connection identifier.

oid

Oid of the instance that you want to update.

attr

Name of the attribute that you want to update.

value

New value that you want to assign to the attribute.

Return Values

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Examples

Example #1 cubrid_put() example

<?php
$attrarray 
cubrid_get ($con$oid);
$attrarray["name"] = "New Name";
cubrid_put ($con$oid$attrarray);
cubrid_put ($con$oid"name""New Name2");
cubrid_put ($con$oid"hobbies", array("aa""bb"));
?>

See Also



add a note add a note User Contributed Notes
cubrid_put
There are no user contributed notes for this page.

cubrid_real_escape_string> <cubrid_prepare
Last updated: Fri, 24 Sep 2010
 
 
show source | credits | sitemap | contact | advertising | mirror sites