|
update : 2015.11.03
php.shukuma.com검색:
|
cubrid_seq_put(PECL CUBRID >= 8.3.0) cubrid_seq_put — Update the element value of sequence type column using OID 설명
bool cubrid_seq_put
( resource
$conn_identifier
, string $oid
, string $attr_name
, int $index
, string $seq_element
)The cubrid_seq_put() function is used to update the content of the requested element in a sequent type attribute using OID. 인수
반환값
예제Example #1 cubrid_seq_put() example
<?php위 예제의 출력:
array(4) {
[0]=>
string(2) "11"
[1]=>
string(2) "22"
[2]=>
string(2) "33"
[3]=>
string(3) "333"
}
array(4) {
[0]=>
string(3) "111"
[1]=>
string(2) "22"
[2]=>
string(2) "33"
[3]=>
string(3) "333"
}
참고
|