検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 274 for row (0.031 sec.)
クエリからの複数の行を二次元配列に取得する 4440
« oci_execute oci_fetch_array » PHP Manual OCI8 関数 クエリからの複数の行を二次元配列に取得する ... ) の配列構造モード 定数 説明 OCI_FETCHSTATEMENT_BY_ROW 配列の配列で、内側の配列はクエリの行単位となります ... n , 'SELECT POSTAL_CODE, CITY FROM locations WHERE ROWNUM < 3' ); oci_execute ( $stid ); $nrows = oci_fet ... ch_all ( $stid , $res ); echo " $nrows rows fetched<br>\n" ; var_dump ( $res ); // var_d ... ump 出力は // 2 rows fetched // array(2) { // ["POSTAL_CODE"]=> // arr ...
https://man.plustar.jp/php/function.oci-fetch-all.html - [similar]
フィールドの長さ (精度) を得る 4440
« odbc_fetch_row odbc_field_name » PHP Manual ODBC 関数 フィールドの長さ (精度) を得る odbc_fiel ... キーワード: フィールド , 精度 , 番号 , int , fetch , row , 関数 , resource , 参照 , 取得 ...
https://man.plustar.jp/php/function.odbc-field-len.html - [similar]
リソース型の一覧 4440
« その他の予約語の一覧 利用できるフィルタのリスト » PHP Manual 付録 リソース型の一覧 リソース型の ... t_db_parameter() cubrid_set_drop() cubrid_affected_rows() cubrid_client_encoding() cubrid_errno() cubrid_ ... t_db_parameter() cubrid_set_drop() cubrid_affected_rows() cubrid_client_encoding() cubrid_errno() cubrid_ ... cubrid_next_result() cubrid_num_cols() cubrid_num_rows() cubrid_set_query_timeout() cubrid_data_seek() c ... fetch_lengths() cubrid_fetch_object() cubrid_fetch_row() cubrid_field_flags() cubrid_field_len() cubrid_f ...
https://man.plustar.jp/php/resource.html - [similar]
Move the cursor of a lob object 4410
« cubrid_lob2_read cubrid_lob2_seek » PHP Manual CUBRID 関数 Move the cursor of a lob object cub ... rid_execute ( $conn , "select * from test_lob" ); $row = cubrid_fetch_row ( $req , CUBRID_LOB ); $lob = $ ...
https://man.plustar.jp/php/function.cubrid-lob2-seek64.html - [similar]
MySQL データベース上のテーブルのリストを得る 4410
« mysql_list_processes mysql_num_fields » PHP Manual MySQL 関数 MySQL データベース上のテーブルの ... 'MySQL Error: ' . mysql_error (); exit; } while ( $row = mysql_fetch_row ( $result )) { echo "Table: { $r ...
https://man.plustar.jp/php/function.mysql-list-tables.html - [similar]
表示される長さを返す 4410
« pg_field_num pg_field_size » PHP Manual PostgreSQL 関数 表示される長さを返す pg_field_prtlen ( ... 説明 pg_field_prtlen ( PgSql\Result $result , int $row_number , mixed $field_name_or_number ): int pg_fie ... 際に 表示した場合の長さ(文字の数)を返します。行番号(row_number)は 0 から始まります。この関数は、エラーの場 ... ute() が返した PgSql\Result クラスのインスタンス。 row 結果の行番号。行番号は 0 から始まります。指定しなか ...
https://man.plustar.jp/php/function.pg-field-prtlen.html - [similar]
MagickPixelIterator を返す 4410
« Imagick::getPage Imagick::getPixelRegionIterator » PHP Manual Imagick MagickPixelIterator を返 ... getPixelIterator (); foreach ( $imageIterator as $row => $pixels ) { /* Loop through pixel rows */ forea ... mn => $pixel ) { /* Loop through the pixels in the row (columns) */ /** @var $pixel \ImagickPixel */ if ( ...
https://man.plustar.jp/php/imagick.getpixeliterator.html - [similar]
RowResult のコンストラクタ 4410
« mysql_xdevapi\RowResult RowResult::fetchAll » PHP Manual mysql_xdevapi\RowResult RowResult のコ ... ンストラクタ RowResult::__construct (No version information availab ... le, might only be in Git) RowResult::__construct — RowResult のコンストラクタ 説 ... 明 private mysql_xdevapi\RowResult::__construct () データベースへの問い合わせか ... 数にはパラメータはありません。 例 例1 mysql_xdevapi\RowResult::__construct() の例 <?php $session = mysql_x ...
https://man.plustar.jp/php/mysql-xdevapi-rowresult.construct.html - [similar]
SQL クエリを実行する 4410
« SQLite3::prepare SQLite3::querySingle » PHP Manual SQLite3 SQL クエリを実行する SQLite3::query ... = $db -> query ( 'SELECT bar FROM foo' ); while ( $row = $results -> fetchArray ()) { var_dump ( $row ); ...
https://man.plustar.jp/php/sqlite3.query.html - [similar]
現在のシステムの状態を取得する 4381
« mysql_set_charset mysql_tablename » PHP Manual MySQL 関数 現在のシステムの状態を取得する mysql ... = mysql_query ( 'SHOW STATUS' , $link ); while ( $row = mysql_fetch_assoc ( $result )) { echo $row [ 'Va ... riable_name' ] . ' = ' . $row [ 'Value' ] . "\n" ; } ?> 上の例の出力は、 たとえば ...
https://man.plustar.jp/php/function.mysql-stat.html - [similar]