検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 274 for row (0.005 sec.)
Retrieves the next row of data in a result set as an object 7332
« sqlsrv_fetch_array sqlsrv_fetch » PHP Manual SQLSRV 関数 Retrieves the next row of data in a r ... e in Git) sqlsrv_fetch_object — Retrieves the next row of data in a result set as an object 説明 sqlsrv_f ... ring $className = ? , array $ctorParams = ? , int $row = ? , int $offset = ? ): mixed Retrieves the next ... the specified class with properties that match the row field names and values that correspond to the row ... parameters, the ctorParams array must be supplied. row The row to be accessed. This parameter can only be ...
https://man.plustar.jp/php/function.sqlsrv-fetch-object.html - [similar]
結果の任意の行にポインタを移動する 7332
« mysqli_result::$current_field mysqli_result::fetch_all » PHP Manual mysqli_result 結果の任意の ... セット。ゼロから全行数 - 1 までの間 (0.. mysqli_num_rows() - 1)である必要があります。 戻り値 成功した場合 ... $result -> data_seek ( 400 ); /* 1行取得します */ $row = $result -> fetch_row (); printf ( "City: %s Coun ... trycode: %s\n" , $row [ 0 ], $row [ 1 ]); 手続き型 <?php mysqli_report ( ... _data_seek ( $result , 400 ); /* 1行取得します */ $row = mysqli_fetch_row ( $result ); printf ( "City: %s ...
https://man.plustar.jp/php/mysqli-result.data-seek.html - [similar]
クエリの次の行を連想配列あるいは数値添字配列で返す 7312
« oci_fetch_all oci_fetch_assoc » PHP Manual OCI8 関数 クエリの次の行を連想配列あるいは数値添字配 ... M departments' ); oci_execute ( $stid ); while (( $row = oci_fetch_array ( $stid , OCI_BOTH )) != false ) ... 想配列の指標として大文字のカラム名を使用します echo $row [ 0 ] . " and " . $row [ 'DEPARTMENT_ID' ] . " are ... the same<br>\n" ; echo $row [ 1 ] . " and " . $row [ 'DEPARTMENT_NAME' ] . " a ... on FROM mytab' ); oci_execute ( $stid ); while (( $row = oci_fetch_array ( $stid , OCI_NUM )) != false ) ...
https://man.plustar.jp/php/function.oci-fetch-array.html - [similar]
結果セットの次の行を連想配列・数値添字配列あるいはその両方の形式で取得する 7224
« mysqli_result::fetch_all mysqli_result::fetch_assoc » PHP Manual mysqli_result 結果セットの次の ... します。一方 MYSQLI_NUM を指定すると、 mysqli_fetch_row() 関数と同じ結果となります。最後の MYSQLI_BOTH を指 ... = $mysqli -> query ( $query ); /* 数値添字配列 */ $row = $result -> fetch_array ( MYSQLI_NUM ); printf ( ... "%s (%s)\n" , $row [ 0 ], $row [ 1 ]); /* 連想配列 */ $row = $result ... ch_array ( MYSQLI_ASSOC ); printf ( "%s (%s)\n" , $row [ "Name" ], $row [ "CountryCode" ]); /* 連想配列お ...
https://man.plustar.jp/php/mysqli-result.fetch-array.html - [similar]
数値添字の配列として行を得る 6923
« pg_fetch_result pg_field_is_null » PHP Manual PostgreSQL 関数 数値添字の配列として行を得る pg_ ... fetch_row (PHP 4, PHP 5, PHP 7, PHP 8) pg_fetch_row — 数値添 ... 字の配列として行を得る 説明 pg_fetch_row ( PgSql\Result $result , ? int $row = null , int $ ... mode = PGSQL_NUM ): array | false pg_fetch_row() は、 指定した result インスタンスが指す結果から ... ute() が返した PgSql\Result クラスのインスタンス。 row 取得する行番号。最初の行は 0 です。省略したり null ...
https://man.plustar.jp/php/function.pg-fetch-row.html - [similar]
プリペアドステートメントを実行する 6923
« mysqli_stmt::$error mysqli_stmt::fetch » PHP Manual mysqli_stmt プリペアドステートメントを実行 ... った場合、 変更された行の総数は mysqli_stmt_affected_rows() 関数を使用することで取得可能です。 クエリが結果 ... ; $result = $mysqli -> query ( $query ); while ( $row = $result -> fetch_row ()) { printf ( "%s (%s,%s)\ ... n" , $row [ 0 ], $row [ 1 ], $row [ 2 ]); } 手続き型 <?php m ... result = mysqli_query ( $link , $query ); while ( $row = mysqli_fetch_row ( $result )) { printf ( "%s (%s ...
https://man.plustar.jp/php/mysqli-stmt.execute.html - [similar]
Read from BLOB/CLOB data 6893
« cubrid_lob2_new cubrid_lob2_seek64 » PHP Manual CUBRID 関数 Read from BLOB/CLOB data cubrid_lo ... rid_execute ( $conn , "select * from test_lob" ); $row = cubrid_fetch_row ( $req , CUBRID_LOB ); print "p ... osition now is " . cubrid_lob2_tell ( $row [ 1 ]) . "\n" ; cubrid_lob2_seek ( $row [ 1 ], 10 ... on after moving farword is " . cubrid_lob2_tell ( $row [ 1 ]) . "\n" ; $data = cubrid_lob2_read ( $row [ ... nposition after reading is " . cubrid_lob2_tell ( $row [ 1 ]) . "\n" ; print $data . "\n" ; cubrid_lob2_s ...
https://man.plustar.jp/php/function.cubrid-lob2-read.html - [similar]
Gets field data from the currently selected row 6864
« sqlsrv_get_config sqlsrv_has_rows » PHP Manual SQLSRV 関数 Gets field data from the currently ... selected row sqlsrv_get_field (No version information available ... ield — Gets field data from the currently selected row 説明 sqlsrv_get_field ( resource $stmt , int $fiel ... mixed Gets field data from the currently selected row. Fields must be accessed in order. Field indices s ... e following example demonstrates how to retrieve a row with sqlsrv_fetch() and get the row fields with sq ...
https://man.plustar.jp/php/function.sqlsrv-get-field.html - [similar]
Delete a row in the Swoole table by $row_key. 6845
« Swoole\Table::decr Swoole\Table::destroy » PHP Manual Swoole\Table Delete a row in the Swoole ... table by $row_key. Swoole\Table::del (PECL swoole >= 1.9.0) Swoo ... le\Table::del — Delete a row in the Swoole table by $row_key. 説明 public Swool ... oid パラメータ key 戻り値 関連キーワード: Swoole , row , key , Delete , Table , in , the , decr , destroy ...
https://man.plustar.jp/php/swoole-table.del.html - [similar]
Check if a row is existed by $row_key. 6845
« Swoole\Table::destroy Swoole\Table::get » PHP Manual Swoole\Table Check if a row is existed by ... $row_key. Swoole\Table::exist (PECL swoole >= 1.9.0) Sw ... oole\Table::exist — Check if a row is existed by $row_key. 説明 public Swoole\Table:: ... $key ): bool パラメータ key 戻り値 関連キーワード: row , key , Check , existed , Swoole , Table , exist , ...
https://man.plustar.jp/php/swoole-table.exist.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT