Results of 111 - 120 of about 274 for row (0.036 sec.)
- 挿入する行の値を追加する 4712
- « TableInsert::execute mysql_xdevapi\TableSelect » PHP Manual mysql_xdevapi\TableInsert 挿入する
...
public mysql_xdevapi\TableInsert::values ( array $row_values ): mysql_xdevapi\TableInsert 挿入する値を設 ...
定します。 パラメータ row_values 挿入するカラムの値(の配列) 戻り値 TableInse ...
TableInsert , 追加 , values , 値 , 行 , xdevapi , row , public , 配列 ...
-
https://man.plustar.jp/php/mysql-xdevapi-tableinsert.values.html
- [similar]
- データベース上でひとつ以上のクエリを実行する 4712
- « mysqli::more_results mysqli::next_result » PHP Manual mysqli データベース上でひとつ以上のクエリ
...
( $result = $mysqli -> store_result ()) { while ( $row = $result -> fetch_row ()) { printf ( "%s\n" , $ro ...
result = mysqli_store_result ( $link )) { while ( $row = mysqli_fetch_row ( $result )) { printf ( "%s\n" ...
, $row [ 0 ]); } } /* 区切り線を出力します */ if ( mysqli ...
-
https://man.plustar.jp/php/mysqli.multi-query.html
- [similar]
- 結果セットの次行から単一カラムを返す 4712
- « PDOStatement::fetchAll PDOStatement::fetchObject » PHP Manual PDOStatement 結果セットの次行から
...
(); print( "Fetch the first column from the first row in the result set:\n" ); $result = $sth -> fetchCo ...
); print( "Fetch the second column from the second row in the result set:\n" ); $result = $sth -> fetchCo ...
下となります。 Fetch the first column from the first row in the result set: name = lemon Fetch the second c ...
olumn from the second row in the result set: colour = red 参考 PDO::query() ...
-
https://man.plustar.jp/php/pdostatement.fetchcolumn.html
- [similar]
- 直近のクエリのカラムの数を返す 4693
- « mysqli::$error mysqli::get_charset » PHP Manual mysqli 直近のクエリのカラムの数を返す mysqli::
...
-> store_result (); /* 結果セットを処理します */ $row = $result -> fetch_row (); /* 結果セットを開放しま ...
re_result ( $link ); /* 結果セットを処理します */ $row = mysqli_fetch_row ( $result ); /* 結果セットを開放 ...
-
https://man.plustar.jp/php/mysqli.field-count.html
- [similar]
- どの API を使うか 4693
- « 用語説明 どのライブラリを選ぶか » PHP Manual MySQL 用 PHP ドライバの概要 どの API を使うか どの
...
ello, dear MySQL user!' AS _message FROM DUAL" ); $row = $result -> fetch_assoc (); echo htmlentities ( $ ...
ello, dear MySQL user!' AS _message FROM DUAL" ); $row = $statement -> fetch ( PDO :: FETCH_ASSOC ); echo ...
htmlentities ( $row [ '_message' ]); 機能の比較 全体的なパフォーマンス ...
-
https://man.plustar.jp/php/mysqlinfo.api.choosing.html
- [similar]
- MySQL サーバー上で利用可能なデータベースのリストを得る 4634
- « mysql_insert_id mysql_list_fields » PHP Manual MySQL 関数 MySQL サーバー上で利用可能なデータベ
...
$res = mysql_query ( "SHOW DATABASES" ); while ( $row = mysql_fetch_assoc ( $res )) { echo $row [ 'Datab ...
' ); $db_list = mysql_list_dbs ( $link ); while ( $row = mysql_fetch_object ( $db_list )) { echo $row -> ...
-
https://man.plustar.jp/php/function.mysql-list-dbs.html
- [similar]
- Retrieves the number of fields (columns) on a statement 4634
- « sqlsrv_next_result sqlsrv_num_rows » PHP Manual SQLSRV 関数 Retrieves the number of fields (co
...
( $stmt )) { // Iterate through the fields of each row. for( $i = 0 ; $i < $numFields ; $i ++) { echo sql ...
re or sqlsrv_query sqlsrv_fetch() - Makes the next row in a result set available for reading sqlsrv_get_f ...
ld() - Gets field data from the currently selected row 関連キーワード: sqlsrv , fields , num , Retrieves ...
-
https://man.plustar.jp/php/function.sqlsrv-num-fields.html
- [similar]
- プリペアドステートメント 4634
- « ステートメントの実行 ストアドプロシージャ » PHP Manual クイックスタートガイド プリペアドステー
...
-> execute (); $result = $stmt -> get_result (); $row = $result -> fetch_assoc (); printf ( "id = %s (%s ...
)\n" , $row [ 'id' ], gettype ( $row [ 'id' ])); printf ( "lab ...
el = %s (%s)\n" , $row [ 'label' ], gettype ( $row [ 'label' ])); 上の例の ...
ecute (); $result = $stmt -> get_result (); for ( $row_no = $result -> num_rows - 1 ; $row_no >= 0 ; $row ...
-
https://man.plustar.jp/php/mysqli.quickstart.prepared-statements.html
- [similar]
- SQLSRV 関数 4634
- « 定義済み定数 sqlsrv_begin_transaction » PHP Manual SQLSRV 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 ...
ield — Gets field data from the currently selected row sqlsrv_has_rows — Indicates whether the specified ...
statement has rows sqlsrv_next_result — Makes the next result of the ...
-
https://man.plustar.jp/php/ref.sqlsrv.html
- [similar]
- クライアントのエンコーディングを設定する 4605
- « pg_send_query pg_set_error_verbosity » PHP Manual PostgreSQL 関数 クライアントのエンコーディン
...
\n" ; exit; } // UTF-8 データを書き出す。 while ( $row = pg_fetch_row ( $result )) { echo "Author: $row [ ...
0 ] E-mail: $row [ 1 ] " ; echo "<br />\n" ; } ?> 参考 pg_client_en ...
-
https://man.plustar.jp/php/function.pg-set-client-encoding.html
- [similar]