(PECL CUBRID >= 8.3.0)
cubrid_seq_insert — Is used to insert an element to a sequence
The cubrid_col_insert() function is used to insert an element to a sequence type attribute in a requested location.
Connection identifier.
Oid of the instance you want to work with.
Name of the attribute you want to insert an instance to.
Location of the element, you want to insert the element to (1-based).
Content of the element that you want to insert.
TRUE, when process is successful.
FALSE, when process is unsuccessful.
Example #1 cubrid_seq_insert() example
<?php
cubrid_seq_insert ($con, $oid, "tel", 1, "02-3430-1200");
cubrid_seq_insert ($con, $oid, "tel", 1, "02-3430-1300");
?>