Results of 31 - 40 of about 274 for row (0.004 sec.)
- 結果セット内の行を表す、 カラム位置およびカラム名の両方をインデックスとする配列... 6397
- « db2_fetch_assoc db2_fetch_object » PHP Manual IBM DB2 関数 結果セット内の行を表す、 カラム位置
...
列を返す 説明 db2_fetch_both ( resource $stmt , int $row_number = -1 ): array 結果セット内の行を表す、 カラ ...
ラメータ stmt 結果セットを含む有効な stmt リソース。 row_number 結果セット内の 1 から始まる行番号を指定しま ...
を返します。 結果セットに行がもうない場合、あるいは row_number で指定された行が結果セットに存在しない場合に ...
$sql ); $result = db2_execute ( $stmt ); while ( $row = db2_fetch_both ( $stmt )) { printf ( "%-5d %-16s ...
-
https://man.plustar.jp/php/function.db2-fetch-both.html
- [similar]
- クエリを実行するためのデフォルトのデータベースを選択する 6397
- « mysqli::savepoint mysqli::set_charset » PHP Manual mysqli クエリを実行するためのデフォルトのデ
...
esult = $mysqli -> query ( "SELECT DATABASE()" ); $row = $result -> fetch_row (); printf ( "Default datab ...
ase is %s.\n" , $row [ 0 ]); /* データベースを world に変更します */ $m ...
esult = $mysqli -> query ( "SELECT DATABASE()" ); $row = $result -> fetch_row (); printf ( "Default datab ...
ase is %s.\n" , $row [ 0 ]); 手続き型 <?php mysqli_report ( MYSQLI_REPO ...
-
https://man.plustar.jp/php/mysqli.select-db.html
- [similar]
- 指定した接続の直近のクエリから発生した警告の数を返す 6397
- « mysqli::use_result mysqli_stmt » PHP Manual mysqli 指定した接続の直近のクエリから発生した警告の
...
容を取得するには、SQL コマンド SHOW WARNINGS [limit row_count] を使用します。 パラメータ link 手続き型のみ ...
$result = $mysqli -> query ( "SHOW WARNINGS" )) { $row = $result -> fetch_row (); printf ( "%s (%d): %s\n ...
" , $row [ 0 ], $row [ 1 ], $row [ 2 ]); $result -> close ( ...
ult = mysqli_query ( $link , "SHOW WARNINGS" )) { $row = mysqli_fetch_row ( $result ); printf ( "%s (%d): ...
-
https://man.plustar.jp/php/mysqli.warning-count.html
- [similar]
- CUBRID MySQL 互換関数 6348
- « cubrid_version cubrid_affected_rows » PHP Manual CUBRID CUBRID MySQL 互換関数 CUBRID MySQL 互換
...
関数 目次 cubrid_affected_rows — Return the number of rows affected by the last ...
ID connection cubrid_data_seek — Move the internal row pointer of the CUBRID result cubrid_db_name — Get ...
error message cubrid_fetch_array — Fetch a result row as an associative array, a numeric array, or both ...
associative array that corresponds to the fetched row cubrid_fetch_field — Get column information from a ...
-
https://man.plustar.jp/php/cubridmysql.cubrid.html
- [similar]
- Get the value in the Swoole table by $row_key and $column_key. 6261
- « Swoole\Table::exist Swoole\Table::incr » PHP Manual Swoole\Table Get the value in the Swoole t
...
able by $row_key and $column_key. Swoole\Table::get (PECL swool ...
Table::get — Get the value in the Swoole table by $row_key and $column_key. 説明 public Swoole\Table::get ...
( string $row_key , string $column_key ): int パラメータ row_key ...
_key 戻り値 関連キーワード: key , Swoole , Table , row , column , Get , string , exist , incr , swoole ...
-
https://man.plustar.jp/php/swoole-table.get.html
- [similar]
- Fetch the next row and return it as an object 6231
- « cubrid_fetch_lengths cubrid_fetch_row » PHP Manual CUBRID MySQL 互換関数 Fetch the next row an
...
RID >= 8.3.0) cubrid_fetch_object — Fetch the next row and return it as an object 説明 cubrid_fetch_objec ...
of these properties are extracted from the current row of the result. パラメータ result result comes from ...
cess is successful. false , when there are no more rows; NULL, when process is unsuccessful. 例 例1 cubri ...
ared SQL statement cubrid_fetch() - Fetch the next row from a result set cubrid_fetch_array() - Fetch a r ...
-
https://man.plustar.jp/php/function.cubrid-fetch-object.html
- [similar]
- 行を連想配列として取得する 6231
- « pg_fetch_array pg_fetch_object » PHP Manual PostgreSQL 関数 行を連想配列として取得する pg_fetc
...
説明 pg_fetch_assoc ( PgSql\Result $result , ? int $row = null ): array | false pg_fetch_assoc() は、取得し ...
返します。もし数値添字の配列が 必要な場合は pg_fetch_row() を使用してください。 注意 : この関数は、 NULL フ ...
ll 値を設定します。 pg_fetch_assoc() は、 pg_fetch_row() に比べてきわめて遅いというわけでは 「ありません」 ...
ute() が返した PgSql\Result クラスのインスタンス。 row 取得する行番号。最初の行は 0 です。省略したり null ...
-
https://man.plustar.jp/php/function.pg-fetch-assoc.html
- [similar]
- クエリの次の行を配列で返す 6202
- « oci_fetch_object oci_fetch » PHP Manual OCI8 関数 クエリの次の行を配列で返す oci_fetch_row (PH
...
P 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0) oci_fetch_row — クエリの次の行を配列で返す 説明 oci_fetch_row ( ...
lse は、もう行がないことをあらわします。 oci_fetch_row() をコールすることは、 oci_fetch_array() で OCI_NU ...
う行がない場合は false を返します。 例 例1 oci_fetch_row() の例 <?php $conn = oci_connect ( 'hr' , 'welcome ...
M departments' ); oci_execute ( $stid ); while (( $row = oci_fetch_row ( $stid )) != false ) { echo $row ...
-
https://man.plustar.jp/php/function.oci-fetch-row.html
- [similar]
- 結果セットの次の行を連想配列で取得する 6202
- « mysqli_result::fetch_array mysqli_result::fetch_column » PHP Manual mysqli_result 結果セットの
...
同名の複数のカラムに アクセスする場合、 mysqli_fetch_row() を用いて 数値添字配列を使用するか、あるいは SQL ...
ry ( $query ); /* 連想配列を取得します */ while ( $row = $result -> fetch_assoc ()) { printf ( "%s (%s)\n ...
" , $row [ "Name" ], $row [ "CountryCode" ]); } 手続き型 <? ...
li , $query ); /* 連想配列を取得します */ while ( $row = mysqli_fetch_assoc ( $result )) { printf ( "%s ( ...
-
https://man.plustar.jp/php/mysqli-result.fetch-assoc.html
- [similar]
- Return an array with the lengths of the values of each field from the current ro... 6153
- « cubrid_fetch_field cubrid_fetch_object » PHP Manual CUBRID MySQL 互換関数 Return an array with
...
ngths of the values of each field from the current row cubrid_fetch_lengths (PECL CUBRID >= 8.3.0) cubrid ...
ngths of the values of each field from the current row 説明 cubrid_fetch_lengths ( resource $result ): ar ...
ngths of the values of each field from the current row of the result set or it returns FALSE on failure. ...
year=2004 AND nation_code='AUS' AND medal='G'" ); $row = cubrid_fetch_row ( $result ); print_r ( $row ); ...
-
https://man.plustar.jp/php/function.cubrid-fetch-lengths.html
- [similar]