検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 270 for conn (0.026 sec.)
結果セットポインタを次の行あるいは要求された行に設定する 4696
« db2_fetch_object db2_field_display_size » PHP Manual IBM DB2 関数 結果セットポインタを次の行あ ... animals WHERE weight < ?' ; $stmt = db2_prepare ( $conn , $sql ); db2_execute ( $stmt , array( 10 )); whil ... h_row() / db2_result() よりすぐれています。 <?php $conn = db2_connect ( "" , "" , "" ); $sql = 'SELECT SPE ... NES FETCH FIRST 2 ROWS ONLY' ; $stmt = db2_exec ( $conn , $sql , array( 'cursor' => DB2_SCROLLABLE )); whi ... REATED' ]} { $row [ 5 ]} " ; } $stmt = db2_exec ( $conn , $sql , array( 'cursor' => DB2_SCROLLABLE )); whi ...
https://man.plustar.jp/php/function.db2-fetch-row.html - [similar]
フェッチしたフィールドが null であるかどうかを確認する 4696
« oci_fetch oci_field_name » PHP Manual OCI8 関数 フェッチしたフィールドが null であるかどうかを ... b VALUES (1); // INSERT INTO mytab VALUES (NULL); $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); ... if (! $conn ) { $m = oci_error (); trigger_error ( htmlentitie ... essage' ]), E_USER_ERROR ); } $stid = oci_parse ( $conn , "SELECT * FROM mytab" ); oci_execute ( $stid ); ... l(true) oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP バージョン 5.0.0 以前では、代 ...
https://man.plustar.jp/php/function.oci-field-is-null.html - [similar]
Return the number of columns in the result set 4666
« cubrid_list_dbs cubrid_ping » PHP Manual CUBRID MySQL 互換関数 Return the number of columns in ... cessful. 例 例1 cubrid_num_fields() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT * FROM code" ); $row_num = cubrid_num_ro ... lumn Num: %d\n" , $row_num , $col_num ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 Ro ...
https://man.plustar.jp/php/function.cubrid-num-fields.html - [similar]
MQSeries MQCONNX 4666
« mqseries_conn mqseries_disc » PHP Manual mqseries 関数 MQSeries MQCONNX mqseries_connx (PECL m ... qseries >= 0.10.0) mqseries_connx — MQSeries MQCONNX 説明 mqseries_connx ( string $ ... qManagerName , array &$connOptions , resource &$hconn , resource &$compCode , ... resource &$reason ): void The mqseries_connx() (MQCONNX) call connects an application program ... to a queue manager. It provides a queue manager connection handle, which is used by the application on ...
https://man.plustar.jp/php/function.mqseries-connx.html - [similar]
MQSeries MQDISC 4666
« mqseries_connx mqseries_get » PHP Manual mqseries 関数 MQSeries MQDISC mqseries_disc (PECL mqs ... — MQSeries MQDISC 説明 mqseries_disc ( resource $hconn , resource &$compCode , resource &$reason ): void ... ションプログラムとの間の接続を切断します。 mqseries_conn() (MQCONN) や mqseries_connx() (MQCONNX) の逆の意味 ... です。 パラメータ hConn 接続ハンドル。 このハンドルは、キューマネージャへの ... 例 例1 mqseries_disc() の例 <?php mqseries_disc ( $conn , $comp_code , $reason ); if ( $comp_code !== MQSE ...
https://man.plustar.jp/php/function.mqseries-disc.html - [similar]
Close CUBRID connection 4637
« cubrid_client_encoding cubrid_data_seek » PHP Manual CUBRID MySQL 互換関数 Close CUBRID connec ... (PECL CUBRID >= 8.3.1) cubrid_close — Close CUBRID connection 説明 cubrid_close ( resource $conn_identifie ... s the transaction currently in process, closes the connection handle and disconnects from server. If there ... ed. It is similar to the CUBRID function cubrid_disconnect() . パラメータ conn_identifier The CUBRID conne ... ction identifier. If the connection identifier is not specified, the last connec ...
https://man.plustar.jp/php/function.cubrid-close.html - [similar]
Get last error message for the most recent function call 4637
« cubrid_error_code cubrid_execute » PHP Manual CUBRID 関数 Get last error message for the most ... occurred. 例 例1 cubrid_error_msg() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); if (!@ cubrid_schema ( $conn , 100000 )) { printf ( "Error facility: %d\nError ... rid_error_code (), cubrid_error_msg ()); cubrid_disconnect ( $conn ); exit; } ?> 上の例の出力は以下となりま ...
https://man.plustar.jp/php/function.cubrid-error-msg.html - [similar]
Return the number of columns in the result set 4637
« cubrid_next_result cubrid_num_rows » PHP Manual CUBRID 関数 Return the number of columns in th ... ot SELECT. 例 例1 cubrid_num_cols() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... , "dba" ); $req = cubrid_execute ( $conn , "SELECT * FROM code" ); $row_num = cubrid_num_ro ... lumn Num: %d\n" , $row_num , $col_num ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 Ro ...
https://man.plustar.jp/php/function.cubrid-num-cols.html - [similar]
クエリの次の行を連想配列で返す 4637
« oci_fetch_array oci_fetch_object » PHP Manual OCI8 関数 クエリの次の行を連想配列で返す oci_fet ... を返します。 例 例1 oci_fetch_assoc() の例 <?php $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ... ); if (! $conn ) { $e = oci_error (); trigger_error ( htmlentitie ... T_QUOTES ), E_USER_ERROR ); } $stid = oci_parse ( $conn , 'SELECT department_id, department_name FROM depa ... \n" ; } oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : 行の取得例は oci_fetch_array() も ...
https://man.plustar.jp/php/function.oci-fetch-assoc.html - [similar]
クエリの次の行を配列で返す 4637
« oci_fetch_object oci_fetch » PHP Manual OCI8 関数 クエリの次の行を配列で返す oci_fetch_row (PH ... se を返します。 例 例1 oci_fetch_row() の例 <?php $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ... ); if (! $conn ) { $e = oci_error (); trigger_error ( htmlentitie ... T_QUOTES ), E_USER_ERROR ); } $stid = oci_parse ( $conn , 'SELECT department_id, department_name FROM depa ... \n" ; } oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : 行の取得例は oci_fetch_array() も ...
https://man.plustar.jp/php/function.oci-fetch-row.html - [similar]