Results of 81 - 90 of about 274 for row (0.008 sec.)
- Return the number of columns in the result set 5043
- « cubrid_next_result cubrid_num_rows » PHP Manual CUBRID 関数 Return the number of columns in th
...
cubrid_execute ( $conn , "SELECT * FROM code" ); $row_num = cubrid_num_rows ( $req ); $col_num = cubrid_ ...
num_cols ( $req ); printf ( "Row Num: %d\nColumn Num: %d\n" , $row_num , $col_num ) ...
nnect ( $conn ); ?> 上の例の出力は以下となります。 Row Num: 6 Column Num: 2 参考 cubrid_execute() - Execu ...
te a prepared SQL statement cubrid_num_rows() - Get the number of rows in the result set 関連 ...
-
https://man.plustar.jp/php/function.cubrid-num-cols.html
- [similar]
- 結果のすべての行を連想配列・数値添字配列あるいはその両方の形式で取得する 5043
- « mysqli_result::data_seek mysqli_result::fetch_array » PHP Manual mysqli_result 結果のすべての行
...
me, CountryCode FROM City ORDER BY ID LIMIT 3" ); $rows = $result -> fetch_all ( MYSQLI_ASSOC ); foreach ...
( $rows as $row ) { printf ( "%s (%s)\n" , $row [ "Name" ...
], $row [ "CountryCode" ]); } 手続き型 <?php mysqli_report ...
me, CountryCode FROM City ORDER BY ID LIMIT 3" ); $rows = mysqli_fetch_all ( $result , MYSQLI_ASSOC ); fo ...
-
https://man.plustar.jp/php/mysqli-result.fetch-all.html
- [similar]
- 連想配列として結果の行を取得する 5024
- « odbc_execute odbc_fetch_into » PHP Manual ODBC 関数 連想配列として結果の行を取得する odbc_fetc
...
説明 odbc_fetch_array ( resource $statement , int $row = -1 ): array | false ODBC クエリから、連想配列を取 ...
パラメータ statement odbc_exec() の結果リソース。 row どの行番号を取得するのかを任意で指定する。 戻り値 ...
コンパイルした場合に使用可能です。 参考 odbc_fetch_row() - 行を取り込む odbc_fetch_object() - オブジェクト ...
として結果の行を取得する odbc_num_rows() - 結果における行数を返す 関連キーワード: 取得 , ...
-
https://man.plustar.jp/php/function.odbc-fetch-array.html
- [similar]
- 行をオブジェクトとして得る 5024
- « pg_fetch_assoc pg_fetch_result » PHP Manual PostgreSQL 関数 行をオブジェクトとして得る pg_fetc
...
説明 pg_fetch_object ( PgSql\Result $result , ? int $row = null , string $class = "stdClass" , array $const ...
この関数は pg_fetch_array() と同じであり、 pg_fetch_row() とほとんど同じ程度です (違いはわずかです)。 パ ...
ute() が返した PgSql\Result クラスのインスタンス。 row 取得する行番号。最初の行は 0 です。省略したり null ...
す。 データベースの NULL 値は null として返します。 row が結果の行数より大きい場合・行が存在しない場合 、そ ...
-
https://man.plustar.jp/php/function.pg-fetch-object.html
- [similar]
- 結果インスタンスの内部行オフセットを設定する 5024
- « pg_result_error pg_result_status » PHP Manual PostgreSQL 関数 結果インスタンスの内部行オフセッ
...
説明 pg_result_seek ( PgSql\Result $result , int $row ): bool pg_result_seek() は、結果インスタンスの行の ...
ute() が返した PgSql\Result クラスのインスタンス。 row PgSql\Result クラスのインスタンス内で、内部オフセッ ...
_result_seek ( $result , 2 ); // 3 行目を取得する $row = pg_fetch_row ( $result ); ?> 参考 pg_fetch_row() ...
-
https://man.plustar.jp/php/function.pg-result-seek.html
- [similar]
- pixel iterator の行を設定する 5024
- « ImagickPixelIterator::setIteratorLastRow ImagickPixelIterator::syncIterator » PHP Manual Imagi
...
or の行を設定する ImagickPixelIterator::setIteratorRow (PECL imagick 2, PECL imagick 3) ImagickPixelItera ...
tor::setIteratorRow — pixel iterator の行を設定する 説明 public Imagic ...
kPixelIterator::setIteratorRow ( int $row ): bool 警告 この関数は、 現在のところ詳 ...
ます。 pixel iterator の行を設定します。 パラメータ row 戻り値 成功した場合に true を返します。 例 例1 Ima ...
-
https://man.plustar.jp/php/imagickpixeliterator.setiteratorrow.html
- [similar]
- ストアドプロシージャから、次の結果セットを要求する 4995
- « db2_lob_read db2_num_fields » PHP Manual IBM DB2 関数 ストアドプロシージャから、次の結果セット
...
print "最初の結果セットを取得します\n" ; while ( $row = db2_fetch_array ( $stmt )) { var_dump ( $row ); ...
db2_next_result ( $stmt ); if ( $res ) { while ( $row = db2_fetch_array ( $res )) { var_dump ( $row ); } ...
db2_next_result ( $stmt ); if ( $res2 ) { while ( $row = db2_fetch_array ( $res2 )) { var_dump ( $row ); ...
-
https://man.plustar.jp/php/function.db2-next-result.html
- [similar]
- 結果における各出力の長さを得る 4995
- « mysql_fetch_field mysql_fetch_object » PHP Manual MySQL 関数 結果における各出力の長さを得る my
...
を返します。 mysql_fetch_lengths() は、 mysql_fetch_row() , mysql_fetch_assoc() , mysql_fetch_array() , そ ...
'Could not run query: ' . mysql_error (); exit; } $row = mysql_fetch_assoc ( $result ); $lengths = mysql_ ...
fetch_lengths ( $result ); print_r ( $row ); print_r ( $lengths ); ?> 上の例の出力は、 たとえ ...
len() - 指定したフィールドの長さを返す mysql_fetch_row() - 結果を添字配列として取得する strlen() - 文字列 ...
-
https://man.plustar.jp/php/function.mysql-fetch-lengths.html
- [similar]
- クエリがプリフェッチする行数を設定する 4995
- « oci_set_prefetch_lob oci_statement_type » PHP Manual OCI8 関数 クエリがプリフェッチする行数を設
...
説明 oci_set_prefetch ( resource $statement , int $rows ): bool oci_execute() のコール、およびそれに伴う内 ...
チ関数群の挙動は変わりません。 たとえば、 oci_fetch_row() は、常に一行だけを返します。 プリフェッチバッファ ...
メント ID、 あるいは REF CURSOR ステートメント ID。 rows プリフェッチする行数。>= 0 戻り値 成功した場合に ...
ョン 説明 PECL OCI8 1.4 これより前のバージョンでは、 rows は 1 以上でなければなりませんでした。 PECL OCI8 1 ...
-
https://man.plustar.jp/php/function.oci-set-prefetch.html
- [similar]
- のエイリアス ibase_fetch_assoc 4965
- « fbird_execute fbird_fetch_object » PHP Manual Firebird/InterBase 関数 のエイリアス ibase_fetch
...
リアスです。 ibase_fetch_assoc() . 参考 fbird_fetch_row() - のエイリアス ibase_fetch_row fbird_fetch_objec ...
連キーワード: fetch , ibase , assoc , fbird , 関数 , row , execute , 参考 , ...
-
https://man.plustar.jp/php/function.fbird-fetch-assoc.html
- [similar]