検索

phrase: max: clip:
target: order:
Results of 201 - 210 of about 790 for result (0.042 sec.)
フェッチした行からフィールドの値を取得する 3756
« oci_register_taf_callback oci_rollback » PHP Manual OCI8 関数 フェッチした行からフィールドの値 ... を取得する oci_result (PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0) oci_resu ... フェッチした行からフィールドの値を取得する 説明 oci_result ( resource $statement , string | int $column ): mi ... 場合、 false を返します。 例 例1 oci_fetch() と oci_result() を組み合わせる例 <?php $conn = oci_connect ( 'hr ... ( $stid ); while ( oci_fetch ( $stid )) { echo oci_result ( $stid , 'LOCATION_ID' ) . " is " ; echo oci_resu ...
https://man.plustar.jp/php/function.oci-result.html - [similar]
SQLSRV 関数 3756
« 定義済み定数 sqlsrv_begin_transaction » PHP Manual SQLSRV SQLSRV 関数 SQLSRV 関数 目次 sqlsrv_ ... fetch_object — Retrieves the next row of data in a result set as an object sqlsrv_fetch — Makes the next row ... in a result set available for reading sqlsrv_field_metadata — ... ether the specified statement has rows sqlsrv_next_result — Makes the next result of the specified statement ... qlsrv_num_rows — Retrieves the number of rows in a result set sqlsrv_prepare — Prepares a query for executio ...
https://man.plustar.jp/php/ref.sqlsrv.html - [similar]
結果における各出力の長さを得る 3736
« mysql_fetch_field mysql_fetch_object » PHP Manual MySQL 関数 結果における各出力の長さを得る my ... tColumnMeta() 説明 mysql_fetch_lengths ( resource $result ): array | false MySQL により一番最近に取得された行 ... この配列のオフセットは 0 から始まります。 パラメータ result 評価された結果 リソース 。この結果は、 mysql_query ... 返します。 例 例1 mysql_fetch_lengths() の例 <?php $result = mysql_query ( "SELECT id,email FROM people WHERE ... id = '42'" ); if (! $result ) { echo 'Could not run query: ' . mysql_error (); ...
https://man.plustar.jp/php/function.mysql-fetch-lengths.html - [similar]
クエリを実行するためのデフォルトのデータベースを選択する 3736
« mysqli::savepoint mysqli::set_charset » PHP Manual mysqli クエリを実行するためのデフォルトのデ ... /* 現在のデフォルトデータベース名を取得します */ $result = $mysqli -> query ( "SELECT DATABASE()" ); $row = ... $result -> fetch_row (); printf ( "Default database is %s. ... /* 現在のデフォルトデータベース名を取得します */ $result = $mysqli -> query ( "SELECT DATABASE()" ); $row = ... $result -> fetch_row (); printf ( "Default database is %s. ...
https://man.plustar.jp/php/mysqli.select-db.html - [similar]
指定した接続の直近のクエリから発生した警告の数を返す 3736
« mysqli::use_result mysqli_stmt » PHP Manual mysqli 指定した接続の直近のクエリから発生した警告の ... $query ); if ( $mysqli -> warning_count ) { if ( $result = $mysqli -> query ( "SHOW WARNINGS" )) { $row = $ ... %d): %s\n" , $row [ 0 ], $row [ 1 ], $row [ 2 ]); $result -> close (); } } /* 接続を閉じます */ $mysqli -> c ... ry ); if ( mysqli_warning_count ( $link )) { if ( $result = mysqli_query ( $link , "SHOW WARNINGS" )) { $row ... = mysqli_fetch_row ( $result ); printf ( "%s (%d): %s\n" , $row [ 0 ], $row [ 1 ...
https://man.plustar.jp/php/mysqli.warning-count.html - [similar]
Add a group sort field (group.sort parameter) 3736
« SolrQuery::addGroupQuery SolrQuery::addHighlightField » PHP Manual SolrQuery Add a group sort ... ce asc 参考 SolrQuery::setGroup() - Enable/Disable result grouping (group parameter) SolrQuery::addGroupFiel ... d() - Add a field to be used to group results SolrQuery::addGroupFunction() - Allows grouping r ... lrQuery::setGroupLimit() - Specifies the number of results to return for each group. The server default valu ... e is 1 SolrQuery::setGroupMain() - If true, the result of the first field grouping command is used as the ...
https://man.plustar.jp/php/solrquery.addgroupsortfield.html - [similar]
指定したフィールドが含まれるテーブルの名前を取得する 3716
« mysql_field_seek mysql_field_type » PHP Manual MySQL 関数 指定したフィールドが含まれるテーブル ... nMeta() [table] 説明 mysql_field_table ( resource $result , int $field_offset ): string 指定したフィールドが ... 含まれるテーブルの名前を返します。 パラメータ result 評価された結果 リソース 。この結果は、 mysql_query ... ry_id = country.id" ; // 結果を DB から取得します $result = mysql_query ( $query ); // テーブル名とフィールド ... 覧表示します for ( $i = 0 ; $i < mysql_num_fields ( $result ); ++ $i ) { $table = mysql_field_table ( $result ...
https://man.plustar.jp/php/function.mysql-field-table.html - [similar]
MySQL クエリを送信する 3716
« mysql_ping mysql_real_escape_string » PHP Manual MySQL 関数 MySQL クエリを送信する mysql_query ... 、 mysql_query() は失敗し false を返します。 <?php $result = mysql_query ( 'SELECT * WHERE 1=1' ); if (! $res ... eal_escape_string ( $lastname )); // クエリの実行 $result = mysql_query ( $query ); // 結果のチェック // MyS ... ーをそのまま表示します。デバッグに便利です。 if (! $result ) { $message = 'Invalid query: ' . mysql_error () ... ' . $query ; die( $message ); } // 結果の利用 // $result をそのまま出力してもリソースの内部の情報にはアクセ ...
https://man.plustar.jp/php/function.mysql-query.html - [similar]
結果を添字配列として取得する 3703
« mysql_fetch_object mysql_field_flags » PHP Manual MySQL 関数 結果を添字配列として取得する mysq ... h(PDO::FETCH_NUM) 説明 mysql_fetch_row ( resource $result ): array 取得された行に対応する配列を返し、内部のデ ... ータポインタを前に進めます。 パラメータ result 評価された結果 リソース 。この結果は、 mysql_query ... す。 例 例1 mysql_fetch_row() で行を取得する <?php $result = mysql_query ( "SELECT id,email FROM people WHERE ... id = '42'" ); if (! $result ) { echo 'Could not run query: ' . mysql_error (); ...
https://man.plustar.jp/php/function.mysql-fetch-row.html - [similar]
pg_last_error および pg_result_error が返すメッセージの詳細度を指定する 3703
« pg_set_client_encoding pg_socket » PHP Manual PostgreSQL 関数 pg_last_error および pg_result_e ... pg_set_error_verbosity — pg_last_error() および pg_result_error() が返すメッセージの詳細度を指定する 説明 pg ... , int $verbosity ): int pg_last_error() および pg_result_error() が返すメッセージの詳細度を指定します。 pg_ ... ( $dbconn , PGSQL_ERRORS_VERBOSE ); $res1 = pg_get_result ( $dbconn ); echo pg_result_error ( $res1 ); ?> 参 ... の接続から直近のエラーメッセージ文字列を取得する pg_result_error() - 結果に関連するエラーメッセージを取得する ...
https://man.plustar.jp/php/function.pg-set-error-verbosity.html - [similar]