検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 274 for row (0.024 sec.)
バッファクエリと非バッファクエリ 4527
« コンセプト 文字セット » PHP Manual コンセプト バッファクエリと非バッファクエリ バッファクエリと ... , MYSQLI_USE_RESULT ); if ( $uresult ) { while ( $row = $uresult -> fetch_assoc ()) { echo $row [ 'Name' ... LECT Name FROM City" ); if ( $uresult ) { while ( $row = $uresult -> fetch ( PDO :: FETCH_ASSOC )) { echo ... $row [ 'Name' ] . PHP_EOL ; } } ?> 関連キーワード: バッ ...
https://man.plustar.jp/php/mysqlinfo.concepts.buffering.html - [similar]
Memory management 4527
« メモ MySQL Native Driver プラグインAPI » PHP Manual Mysqlnd Memory management Memory managemen ... odel, the memory footprint of the PHP process may grow beyond the PHP memory limit. But also PHP scripts ... esult sets. Unbuffered result sets are transferred row-by-row from MySQL to the client as the client iter ... An observer will see the total memory consumption grow until the result set is released. Use the statisti ... erations happened. A PHP script reading many small rows of a buffered result set using a code snippet equ ...
https://man.plustar.jp/php/mysqlnd.memory.html - [similar]
プレースホルダを指定せずに、SQL ステートメントを準備して実行する 4527
« PDO::prepare PDO::quote » PHP Manual PDO プレースホルダを指定せずに、SQL ステートメントを準備し ... R BY name' ; foreach ( $conn -> query ( $sql ) as $row ) { print $row [ 'name' ] . "\t" ; print $row [ 'c ... olor' ] . "\t" ; print $row [ 'calories' ] . "\n" ; } ?> 上の例の出力は以下とな ... ります。 apple red 150 banana yellow 250 kiwi brown 75 lemon yellow 25 orange orange 300 pear green 1 ...
https://man.plustar.jp/php/pdo.query.html - [similar]
Bind variables to a prepared statement as parameters 4498
« CUBRID 関数 cubrid_close_prepare » PHP Manual CUBRID 関数 Bind variables to a prepared stateme ... vent WHERE sports='Basketball' and gender='M'" ); $row = cubrid_fetch_array ( $result , CUBRID_ASSOC ); $ ... event_code = $row [ "code" ]; cubrid_close_request ( $result ); $gam ... 0 ], "number" ); cubrid_execute ( $athlete_req ); $row = cubrid_fetch_assoc ( $athlete_req ); printf ( "% ... s\n" , $row [ "name" ]); } cubrid_close_request ( $game_req ); ...
https://man.plustar.jp/php/function.cubrid-bind.html - [similar]
Move the cursor in the result 4498
« cubrid_lock_write cubrid_next_result » PHP Manual CUBRID 関数 Move the cursor in the result cu ... , 1 , CUBRID_CURSOR_LAST ); $result = cubrid_fetch_row ( $req ); var_dump ( $result ); cubrid_move_cursor ... 1 , CUBRID_CURSOR_FIRST ); $result = cubrid_fetch_row ( $req ); var_dump ( $result ); cubrid_move_cursor ... , CUBRID_CURSOR_CURRENT ); $result = cubrid_fetch_row ( $req ); var_dump ( $result ); cubrid_close_reque ...
https://man.plustar.jp/php/function.cubrid-move-cursor.html - [similar]
mysql_list_dbs のコール結果からデータベース名を取得する 4498
« mysql_data_seek mysql_db_query » PHP Manual MySQL 関数 mysql_list_dbs のコール結果からデータベ ... ASE() 説明 mysql_db_name ( resource $result , int $row , mixed $field = NULL ): string mysql_list_dbs() を ... sql_list_dbs() をコールして 得られた結果ポインタ。 row 結果セット内のインデックス。 field フィールド名。 ... ysql_list_dbs ( $link ); $i = 0 ; $cnt = mysql_num_rows ( $db_list ); while ( $i < $cnt ) { echo mysql_db ... , dbs , コール , 取得 , 推奨 , 注意 , フィールド , row , result ...
https://man.plustar.jp/php/function.mysql-db-name.html - [similar]
クエリを実行する 4498
« pg_query_params pg_result_error_field » PHP Manual PostgreSQL 関数 クエリを実行する pg_query ( ... ) { echo "An error occurred.\n" ; exit; } while ( $row = pg_fetch_row ( $result )) { echo "Author: $row [ ... 0 ] E-mail: $row [ 1 ] " ; echo "<br />\n" ; } ?> 例2 pg_query() で ... fetch_object() - 行をオブジェクトとして得る pg_num_rows() - 行数を返す pg_affected_rows() - 変更されたレコ ...
https://man.plustar.jp/php/function.pg-query.html - [similar]
プリペアドステートメントから結果を mysqli_result オブジェクトとして取得する 4498
« mysqli_stmt::free_result mysqli_stmt::get_warnings » PHP Manual mysqli_stmt プリペアドステート ... ute (); $result = $stmt -> get_result (); while ( $row = $result -> fetch_array ( MYSQLI_NUM )) { foreach ... ( $row as $r ) { print " $r " ; } print "\n" ; } } 例2 手 ... esult = mysqli_stmt_get_result ( $stmt ); while ( $row = mysqli_fetch_array ( $result , MYSQLI_NUM )) { f ... oreach ( $row as $r ) { print " $r " ; } print "\n" ; } } 上の例 ...
https://man.plustar.jp/php/mysqli-stmt.get-result.html - [similar]
結果保持用メモリを開放する 4469
« mysql_field_type mysql_get_client_info » PHP Manual MySQL 関数 結果保持用メモリを開放する mysq ... る。ここでは、その後結果を利用したものと仮定する */ $row = mysql_fetch_assoc ( $result ); /* 結果を開放し、 ... 処理を進める */ mysql_free_result ( $result ); echo $row [ 'id' ]; echo $row [ 'email' ]; ?> 注意 注意 : 下 ...
https://man.plustar.jp/php/function.mysql-free-result.html - [similar]
Write to a lob object 4440
« cubrid_lob2_tell cubrid_lock_read » PHP Manual CUBRID 関数 Write to a lob object cubrid_lob2_w ... rid_execute ( $conn , "select * from test_lob" ); $row = cubrid_fetch_row ( $req , CUBRID_LOB ); $lob2 = ... $row [ 1 ]; cubrid_lob2_seek ( $lob2 , 0 , CUBRID_CURSO ...
https://man.plustar.jp/php/function.cubrid-lob2-write.html - [similar]