Query: cubrid_close_prepare
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CUBRID_CLOSE_PREPARE(3) 1 CUBRID_CLOSE_PREPARE(3) cubrid_close_prepare - Close the request handleSYNOPSISbool cubrid_close_prepare (resource $req_identifier)DESCRIPTIONThe cubrid_close_prepare(3) function closes the request handle given by the $req_identifier argument, and releases the memory region related to the handle. It is an alias of cubrid_close_request(3).PARAMETERSo $req_identifier -Request identifier.RETURN VALUESReturn TRUE on success.EXAMPLESExample #1 cubrid_close_prepare(3) example <?php $con = cubrid_connect ("localhost", 33000, "demodb", "dba", ""); if ($con) { echo "connected successfully"; $req = cubrid_execute ( $con, "select * from members", CUBRID_INCLUDE_OID | CUBRID_ASYNC); if ($req) { while ( list ($id, $name) = cubrid_fetch ($req) ){ echo $id; echo $name; } cubrid_close_prepare($req); // or you can use cubrid_close_request($req) } cubrid_disconnect($con); } ?>SEE ALSOcubrid_close_request(3). PHP Documentation Group CUBRID_CLOSE_PREPARE(3)
Related Man Pages |
---|
cubrid_affected_rows(3) - php |
cubrid_close(3) - php |
cubrid_close_request(3) - php |
cubrid_data_seek(3) - php |
cubrid_save_to_glo(3) - php |
Similar Topics in the Unix Linux Community |
---|
[req] hp ux HP0-091 csa certification study material |
Removing files |
Problem joining 2 files |
sort files |
Ls followed by grep |