検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 462 for Select (0.032 sec.)
Return the number of columns in the result set 5074
« cubrid_next_result cubrid_num_rows » PHP Manual CUBRID 関数 Return the number of columns in th ... . It can only be used when the query executed is a SELECT statement. パラメータ result Result. 戻り値 Number ... ess is successful. false , if SQL statement is not SELECT. 例 例1 cubrid_num_cols() example <?php $conn = cu ... emodb" , "dba" ); $req = cubrid_execute ( $conn , "SELECT * FROM code" ); $row_num = cubrid_num_rows ( $req ...
https://man.plustar.jp/php/function.cubrid-num-cols.html - [similar]
結果における行の数を得る 5074
« mysql_num_fields mysql_pconnect » PHP Manual MySQL 関数 結果における行の数を得る mysql_num_row ... 結果セットから行の数を取得します。このコマンドは、 SELECT や SHOW のような、実際に結果セットを返す文に対して ... alhost" , "mysql_user" , "mysql_password" ); mysql_select_db ( "database" , $link ); $result = mysql_query ( ... "SELECT * FROM table1" , $link ); $num_rows = mysql_num_ro ... data_seek() - 内部的な結果ポインタを移動する mysql_select_db() - MySQL データベースを選択する mysql_query() ...
https://man.plustar.jp/php/function.mysql-num-rows.html - [similar]
データベース上でひとつ以上のクエリを実行する 5074
« mysqli::more_results mysqli::next_result » PHP Manual mysqli データベース上でひとつ以上のクエリ ... うかを調べるには mysqli_more_results() を使います。 SELECT, SHOW, DESCRIBE や EXPLAIN のように 結果セットを生 ... ットが生じる場合があります。 ストアドプロシージャに SELECT が含まれている場合、 結果セットは実行されるプロシー ... , "my_user" , "my_password" , "world" ); $query = "SELECT CURRENT_USER();" ; $query .= "SELECT Name FROM Cit ... , "my_user" , "my_password" , "world" ); $query = "SELECT CURRENT_USER();" ; $query .= "SELECT Name FROM Cit ...
https://man.plustar.jp/php/mysqli.multi-query.html - [similar]
直近のクエリのカラムの数を返す 5017
« mysqli::$error mysqli::get_charset » PHP Manual mysqli 直近のクエリのカラムの数を返す mysqli:: ... Hartmut'), (2, 'Ulf')" ); $mysqli -> real_query ( "SELECT * FROM friends" ); if ( $mysqli -> field_count ) { ... /* これは select/show あるいは describe クエリです */ $result = $my ... mut'), (2, 'Ulf')" ); mysqli_real_query ( $link , "SELECT * FROM friends" ); if ( mysqli_field_count ( $link ... )) { /* これは select/show あるいは describe クエリです */ $result = mys ...
https://man.plustar.jp/php/mysqli.field-count.html - [similar]
mysqli_result オブジェクトを構築する 4968
« mysqli_result mysqli_result::$current_field » PHP Manual mysqli_result mysqli_result オブジェク ... lhost" , "my_user" , "my_password" , "world" ); /* Select queries return a result set */ $mysqli -> real_que ... ry ( "SELECT Name FROM City LIMIT 10" ); $result = new mysqli_r ... esult ( $mysqli ); printf ( "Select returned %d rows.\n" , $result -> num_rows ); 上の ... 例の出力は、 たとえば以下のようになります。 Select returned 10 rows. 参考 mysqli_multi_query() - デー ...
https://man.plustar.jp/php/mysqli-result.construct.html - [similar]
Table クラス 4911
« Statement::hasMoreResults Table::__construct » PHP Manual Mysql_xdevapi Table クラス Table クラ ... ス (PECL mysql-xdevapi >= 8.0.11) はじめに INSERT/SELECT/UPDATE/DELETE ステートメントを通じて、テーブルへの ... _xdevapi\TableInsert public isView (): bool public select ( mixed $columns , mixed ...$more_columns ): mysql ... _xdevapi\TableSelect public update (): mysql_xdevapi\TableUpdate } プロ ... ::isView — テーブルがビューかどうかを調べる Table::select — テーブルから行を選択する Table::update — テーブル ...
https://man.plustar.jp/php/class.mysql-xdevapi-table.html - [similar]
Return the name of the table of the specified field 4911
« cubrid_field_seek cubrid_field_type » PHP Manual CUBRID MySQL 互換関数 Return the name of the ... e specified field. This is useful when using large select queries with JOINS. パラメータ result result comes ... alid field_offset value. -1 if SQL sentence is not SELECT. 例 例1 cubrid_field_table() example <?php $conn = ... , "demodb" ); $result = cubrid_execute ( $conn , "SELECT * FROM code" ); $col_num = cubrid_num_cols ( $resu ...
https://man.plustar.jp/php/function.cubrid-field-table.html - [similar]
Get the number of rows in the result set 4911
« cubrid_num_cols cubrid_pconnect_with_url » PHP Manual CUBRID 関数 Get the number of rows in th ... of rows from the query result. It can be used for SELECT statements. For INSERT , UPDATE , or DELETE querie ... as done in async mode. -1, if SQL statement is not SELECT. false when process is unsuccessful. 例 例1 cubrid ... emodb" , "dba" ); $req = cubrid_execute ( $conn , "SELECT * FROM code" ); $row_num = cubrid_num_rows ( $req ...
https://man.plustar.jp/php/function.cubrid-num-rows.html - [similar]
readline コールバックインターフェイスと端末を初期化し、 プロンプトを表示して結果... 4911
« readline_add_history readline_callback_handler_remove » PHP Manual Readline 関数 readline コー ... は自動的に上書きされます。 コールバック機能は stream_select() と組み合わせると 有用です。これは readline() とは ... $prompting ) { $w = NULL ; $e = NULL ; $n = stream_select ( $r = array( STDIN ), $w , $e , null ); if ( $n & ... line コールバックインターフェイスに通知する stream_select() - select() システムコールと同等の操作を、 ストリ ...
https://man.plustar.jp/php/function.readline-callback-handler-install.html - [similar]
MySQL 拡張モジュールの概要を示す例 4911
« 例 MySQL 関数 » PHP Manual 例 MySQL 拡張モジュールの概要を示す例 MySQL 拡張モジュールの概要を示 ... l_error ()); echo 'Connected successfully' ; mysql_select_db ( 'my_database' ) or die( 'Could not select dat ... abase' ); // SQL クエリを実行する $query = 'SELECT * FROM my_table' ; $result = mysql_query ( $query ...
https://man.plustar.jp/php/mysql.examples-basic.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT