| 
 | cubrid_putUpdate a column using OID 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  
      You can update single attribute by using string data type to set
       Parameters
 
 Return Values
     
     ExamplesExample #1 cubrid_put example 
<?phpThe above example will output: 
array(3) {
  [0]=>
  string(1) "1"
  [1]=>
  string(1) "2"
  [2]=>
  string(1) "3"
}
array(3) {
  [0]=>
  string(1) "2"
  [1]=>
  string(1) "4"
  [2]=>
  string(1) "8"
}
See Also
 
 |