検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 274 for row (0.042 sec.)
スキーマのテーブルを取得する 4362
« Schema::getSession Schema::getTables » PHP Manual mysql_xdevapi\Schema スキーマのテーブルを取得 ... ook" ); $table = $schema -> getTable ( "names" ); $row = $table -> select ( 'name' , 'age' )-> execute () ... -> fetchAll (); print_r ( $row ); ?> 上の例の出力は、 たとえば以下のようになります ...
https://man.plustar.jp/php/mysql-xdevapi-schema.gettable.html - [similar]
select のクエリパラメータをバインドする 4362
« mysql_xdevapi\TableSelect TableSelect::__construct » PHP Manual mysql_xdevapi\TableSelect sele ... 'name' => 'John' , 'age' => 42 ]) -> execute (); $row = $result -> fetchAll (); print_r ( $row ); ?> 上の ...
https://man.plustar.jp/php/mysql-xdevapi-tableselect.bind.html - [similar]
スキップするoffsetを設定する 4362
« TableSelect::lockShared TableSelect::orderby » PHP Manual mysql_xdevapi\TableSelect スキップす ... ' ) -> limit ( 1 ) -> offset ( 1 ) -> execute (); $row = $result -> fetchAll (); print_r ( $row ); ?> 上の ...
https://man.plustar.jp/php/mysql-xdevapi-tableselect.offset.html - [similar]
select 文のソート条件を設定する 4362
« TableSelect::offset TableSelect::where » PHP Manual mysql_xdevapi\TableSelect select 文のソート ... 'age' ) -> orderBy ( 'name desc' ) -> execute (); $row = $result -> fetchAll (); print_r ( $row ); ?> 上の ...
https://man.plustar.jp/php/mysql-xdevapi-tableselect.orderby.html - [similar]
ストレージの暗号化 4362
« データベースへの接続 SQLインジェクション » PHP Manual データベースのセキュリティ ストレージの暗 ... RE name='%s';" , pg_escape_string ( $username )); $row = pg_fetch_assoc ( pg_query ( $connection , $query ... )); if ( $row && password_verify ( $password , $row [ 'pwd' ])) ...
https://man.plustar.jp/php/security.database.storage.html - [similar]
LOB ファイルから、ユーザーが定義したサイズの内容を取得する 4333
« db2_last_insert_id db2_next_result » PHP Manual IBM DB2 関数 LOB ファイルから、ユーザーが定義し ... $conn , $sql ); db2_execute ( $result ); db2_fetch_row ( $result ); $i = 0 ; /* LOB データの読み込み */ w ... $conn , $sql ); db2_execute ( $result ); db2_fetch_row ( $result ); $i = 0 ; /* LOB データの読み込み */ w ... e() - プリペアドステートメントを実行する db2_fetch_row() - 結果セットポインタを次の行あるいは要求された行 ...
https://man.plustar.jp/php/function.db2-lob-read.html - [similar]
行数を返す 4333
« pg_num_fields pg_options » PHP Manual PostgreSQL 関数 行数を返す pg_num_rows (PHP 4 >= 4.2.0, ... PHP 5, PHP 7, PHP 8) pg_num_rows — 行数を返す 説明 pg_num_rows ( PgSql\Result $res ... ult ): int pg_num_rows() は、 PgSql\Result クラスのインスタンスに含まれる ... 行数を返します。 注意 : この関数は、以前は pg_numrows() と呼ばれていました。 パラメータ result pg_query ... ンでは、 リソース を期待していました。 例 例1 pg_num_rows() の例 <?php $result = pg_query ( $conn , "SELECT ...
https://man.plustar.jp/php/function.pg-num-rows.html - [similar]
実行時設定 4333
« インストール手順 リソース型 » PHP Manual インストール/設定 実行時設定 実行時設定 php.ini の設定 ... dba_insert() dba_replace() dba_fetch() ibase_fetch_row() ibase_fetch_assoc() ibase_fetch_object() mssql_f ... etch_row() mssql_fetch_object() mssql_fetch_array() mssql_f ... etch_assoc() mysqli_fetch_row() mysqli_fetch_array() mysqli_fetch_assoc() mysqli ... _fetch_object() pg_fetch_row() pg_fetch_assoc() pg_fetch_array() pg_fetch_objec ...
https://man.plustar.jp/php/info.configuration.html - [similar]
結果セットから全ての行を取得する 4333
« RowResult::__construct RowResult::fetchOne » PHP Manual mysql_xdevapi\RowResult 結果セットから ... 全ての行を取得する RowResult::fetchAll (No version information available, ... might only be in Git) RowResult::fetchAll — 結果セットから全ての行を取得する ... 説明 public mysql_xdevapi\RowResult::fetchAll (): array 結果セットから全ての行を ... 場合は、空の配列が返されます。 例 例1 mysql_xdevapi\RowResult::fetchAll() の例 <?php $session = mysql_xdev ...
https://man.plustar.jp/php/mysql-xdevapi-rowresult.fetchall.html - [similar]
結果セットから行を取得する 4333
« RowResult::fetchAll RowResult::getColumnsCount » PHP Manual mysql_xdevapi\RowResult 結果セット ... から行を取得する RowResult::fetchOne (No version information available, ... might only be in Git) RowResult::fetchOne — 結果セットから行を取得する 説明 ... public mysql_xdevapi\RowResult::fetchOne (): array 結果セットから一行取得し ... しない場合は null を返します。 例 例1 mysql_xdevapi\RowResult::fetchOne() の例 <?php $session = mysql_xdev ...
https://man.plustar.jp/php/mysql-xdevapi-rowresult.fetchone.html - [similar]