検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 357 for fetch (0.015 sec.)
結果セット内の行を表す、カラム名をインデックスとする配列を返す 5948
« db2_fetch_array db2_fetch_both » PHP Manual IBM DB2 関数 結果セット内の行を表す、カラム名をイン ... デックスとする配列を返す db2_fetch_assoc (PECL ibm_db2 >= 1.0.0) db2_fetch_assoc — 結 ... す、カラム名をインデックスとする配列を返す 説明 db2_fetch_assoc ( resource $stmt , int $row_number = -1 ): a ... ーソルを使用して順に処理する 行番号を指定せずに db2_fetch_assoc() をコールすると、 自動的に結果セットの次の行 ... result = db2_execute ( $stmt ); while ( $row = db2_fetch_assoc ( $stmt )) { printf ( "%-5d %-16s %-32s %10s ...
https://man.plustar.jp/php/function.db2-fetch-assoc.html - [similar]
結果セットの次の行を取得し、オブジェクトとして返す 5948
« mysqli_result::fetch_fields mysqli_result::fetch_row » PHP Manual mysqli_result 結果セットの次 ... の行を取得し、オブジェクトとして返す mysqli_result::fetch_object mysqli_fetch_object (PHP 5, PHP 7, PHP 8) m ... ysqli_result::fetch_object -- mysqli_fetch_object — 結果セットの次の行 ... て返す 説明 オブジェクト指向型 public mysqli_result::fetch_object ( string $class = "stdClass" , array $const ... args = [] ): object | null | false 手続き型 mysqli_fetch_object ( mysqli_result $result , string $class = " ...
https://man.plustar.jp/php/mysqli-result.fetch-object.html - [similar]
一行ぶんの結果を配列に取り込む 5877
« odbc_fetch_array odbc_fetch_object » PHP Manual ODBC 関数 一行ぶんの結果を配列に取り込む odbc_ ... fetch_into (PHP 4, PHP 5, PHP 7, PHP 8) odbc_fetch_into — 一行ぶんの結果を配列に取り込む 説明 odbc_fe ... また、エラーの場合に false を返します。 例 例1 odbc_fetch_into() の例 <?php $rc = odbc_fetch_into ( $res_id ... , $my_array ); ?> あるいは <?php $rc = odbc_fetch_into ( $res_id , $my_array , 2 ); ?> 関連キーワード ... : 配列 , 行ぶん , fetch , array , into , 番号 , カラム , row , int , 取得 ...
https://man.plustar.jp/php/function.odbc-fetch-into.html - [similar]
行を取り込む 5877
« odbc_fetch_object odbc_field_len » PHP Manual ODBC 関数 行を取り込む odbc_fetch_row (PHP 4, PH ... P 5, PHP 7, PHP 8) odbc_fetch_row — 行を取り込む 説明 odbc_fetch_row ( resource ... dbc_exec() から返された行データを取得します。 odbc_fetch_row() がコールされた後、この行のフィールドは、 odb ... tement 結果 ID。 row row が指定されない場合、 odbc_fetch_row() は、 結果セットにおける次の行を取り込もうと試 ... みます。 row を指定した odbc_fetch_row() のコールと指定しないコールを混用することがで ...
https://man.plustar.jp/php/function.odbc-fetch-row.html - [similar]
行を配列として返す 5859
« sqlsrv_execute sqlsrv_fetch_object » PHP Manual SQLSRV 関数 行を配列として返す sqlsrv_fetch_ar ... nformation available, might only be in Git) sqlsrv_fetch_array — 行を配列として返す 説明 sqlsrv_fetch_array ... ( resource $stmt , int $fetchType = ? , int $row = ? , int $offset = ? ): array ... るいは sqlsrv_prepare が返すステートメントリソース。 fetchType 戻り値の型を指定します。連想配列 SQLSRV_FETCH_ ... ASSOC , 配列 SQLSRV_FETCH_NUMERIC , and 連想配列と配列の両方 SQLSRV_FETCH_BO ...
https://man.plustar.jp/php/function.sqlsrv-fetch-array.html - [similar]
クエリの次の行をオブジェクトとして返す 5814
« oci_fetch_assoc oci_fetch_row » PHP Manual OCI8 関数 クエリの次の行をオブジェクトとして返す oc ... i_fetch_object (PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0) o ... ci_fetch_object — クエリの次の行をオブジェクトとして返す 説 ... 明 oci_fetch_object ( resource $statement , int $mode = OCI_ASS ... てに対して、属性の値は null になります。 例 例1 oci_fetch_object() の例 <?php /* 実行する前にテーブルを作成し ...
https://man.plustar.jp/php/function.oci-fetch-object.html - [similar]
利用可能なDSNについての情報を返す 5814
« odbc_cursor odbc_do » PHP Manual ODBC 関数 利用可能なDSNについての情報を返す odbc_data_source ... を返す 説明 odbc_data_source ( resource $odbc , int $fetch_type ): array | false この関数は、有効な DSN(複数 ... BC 接続 ID。詳細は odbc_connect() を参照ください。 fetch_type fetch_type は次のふたつの定数 SQL_FETCH_FIRST ... , SQL_FETCH_NEXT のうちのどちらかです。 この関数を最初にコール ... する際には SQL_FETCH_FIRST を、それ以降は SQL_FETCH_NEXT を使用します。 ...
https://man.plustar.jp/php/function.odbc-data-source.html - [similar]
結果のすべての行を連想配列・数値添字配列あるいはその両方の形式で取得する 5796
« mysqli_result::data_seek mysqli_result::fetch_array » PHP Manual mysqli_result 結果のすべての行 ... 配列あるいはその両方の形式で取得する mysqli_result::fetch_all mysqli_fetch_all (PHP 5 >= 5.3.0, PHP 7, PHP 8 ... ) mysqli_result::fetch_all -- mysqli_fetch_all — 結果のすべての行を連想配 ... 得する 説明 オブジェクト指向型 public mysqli_result::fetch_all ( int $mode = MYSQLI_NUM ): array 手続き型 mys ... qli_fetch_all ( mysqli_result $result , int $mode = MYSQLI_N ...
https://man.plustar.jp/php/mysqli-result.fetch-all.html - [similar]
結果セット内の行を表す、カラム位置をインデックスとする配列を返す 5770
« db2_execute db2_fetch_assoc » PHP Manual IBM DB2 関数 結果セット内の行を表す、カラム位置をイン ... デックスとする配列を返す db2_fetch_array (PECL ibm_db2 >= 1.0.1) db2_fetch_array — 結 ... 、カラム位置をインデックスとする配列を返す 説明 db2_fetch_array ( resource $stmt , int $row_number = -1 ): a ... ーソルを使用して順に処理する 行番号を指定せずに db2_fetch_array() をコールすると、 自動的に結果セットの次の行 ... result = db2_execute ( $stmt ); while ( $row = db2_fetch_array ( $stmt )) { printf ( "%-5d %-16s %-32s %10s ...
https://man.plustar.jp/php/function.db2-fetch-array.html - [similar]
Return an array with the lengths of the values of each field from the current ro... 5707
« cubrid_fetch_field cubrid_fetch_object » PHP Manual CUBRID MySQL 互換関数 Return an array with ... e values of each field from the current row cubrid_fetch_lengths (PECL CUBRID >= 8.3.0) cubrid_fetch_length ... ues of each field from the current row 説明 cubrid_fetch_lengths ( resource $result ): array This function ... ess is successful. false on failure. 例 例1 cubrid_fetch_lengths() example <?php $conn = cubrid_connect ( " ... nation_code='AUS' AND medal='G'" ); $row = cubrid_fetch_row ( $result ); print_r ( $row ); $lens = cubrid_ ...
https://man.plustar.jp/php/function.cubrid-fetch-lengths.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT