Results of 41 - 50 of about 274 for row (0.015 sec.)
- 結果セットから次の行を取得する 6017
- « PDOStatement::execute PDOStatement::fetchAll » PHP Manual PDOStatement 結果セットから次の行を取
...
print( "PDO::FETCH_ASSOC: " ); print( "Return next row as an array indexed by column name\n" ); $result = ...
print( "PDO::FETCH_BOTH: " ); print( "Return next row as an array indexed by both column name and number ...
print( "PDO::FETCH_LAZY: " ); print( "Return next row as an anonymous object with column names as proper ...
; print( "PDO::FETCH_OBJ: " ); print( "Return next row as an anonymous object with column names as proper ...
-
https://man.plustar.jp/php/pdostatement.fetch.html
- [similar]
- Replaces a record in a database 5959
- « dbase_pack Firebird/InterBase » PHP Manual dBase 関数 Replaces a record in a database dbase_re
...
/tmp/test.dbf' , 2 ); if ( $db ) { // gets the old row $row = dbase_get_record_with_names ( $db , 1 ); // ...
remove the 'deleted' entry unset( $row [ 'deleted' ]); // Update the date field with the ...
current timestamp $row [ 'date' ] = date ( 'Ymd' ); // convert the row to ...
an indexed array $row = array_values ( $row ); // Replace the record dba ...
-
https://man.plustar.jp/php/function.dbase-replace-record.html
- [similar]
- 連想配列、添字配列、またはその両方として結果の行を取得する 5900
- « mysql_escape_string mysql_fetch_assoc » PHP Manual MySQL 関数 連想配列、添字配列、またはその両
...
みが取得され、 MYSQL_NUM を利用すると ( mysql_fetch_row() の動作と同様に)数値添字のみが 取得されます。 結 ...
query ( "SELECT id, name FROM mytable" ); while ( $row = mysql_fetch_array ( $result , MYSQL_NUM )) { pri ...
ntf ( "ID: %s Name: %s" , $row [ 0 ], $row [ 1 ]); } mysql_free_result ( $result ...
query ( "SELECT id, name FROM mytable" ); while ( $row = mysql_fetch_array ( $result , MYSQL_ASSOC )) { p ...
-
https://man.plustar.jp/php/function.mysql-fetch-array.html
- [similar]
- 指定されたデータベース接続のユーザー名を変更する 5900
- « mysqli::begin_transaction mysqli::character_set_name » PHP Manual mysqli 指定されたデータベース
...
ult = $mysqli -> query ( "SELECT DATABASE()" )) { $row = $result -> fetch_row (); printf ( "デフォルトデー ...
タベース: %s\n" , $row [ 0 ]); $result -> close (); } if ( $result = $mys ...
qli -> query ( "SELECT @a" )) { $row = $result -> fetch_row (); if ( $row [ 0 ] === NUL ...
= mysqli_query ( $link , "SELECT DATABASE()" )) { $row = mysqli_fetch_row ( $result ); printf ( "デフォル ...
-
https://man.plustar.jp/php/mysqli.change-user.html
- [similar]
- Oracle Database の暗黙の結果セットを持つ親ステートメント・リソースから次の子ステ... 5871
- « oci_free_statement oci_lob_copy » PHP Manual OCI8 関数 Oracle Database の暗黙の結果セットを持つ
...
tch_object() 、 oci_fetch_assoc() または oci_fetch_row() です。 子ステートメントは、それらの親ステートメン ...
FOR SELECT city, postal_code FROM locations WHERE ROWNUM < 4 ORDER BY city; DBMS_SQL.RETURN_RESULT(c1); ...
OPEN c1 FOR SELECT country_id FROM locations WHERE ROWNUM < 4 ORDER BY city; DBMS_SQL.RETURN_RESULT(c1); ...
の結果セット:</h2>\n" ; echo "<table>\n" ; while (( $row = oci_fetch_array ( $stid_c , OCI_ASSOC + OCI_RETU ...
-
https://man.plustar.jp/php/function.oci-get-implicit-resultset.html
- [similar]
- 行を配列として返す 5871
- « sqlsrv_execute sqlsrv_fetch_object » PHP Manual SQLSRV 関数 行を配列として返す sqlsrv_fetch_ar
...
array ( resource $stmt , int $fetchType = ? , int $row = ? , int $offset = ? ): array クエリ結果から列デー ...
に使ってはいけません(連想配列のキーが重複するため)。 row スクロール可能なカーソルを用いた結果セットから、取 ...
fetchType を指定しなくてはなりません。 offset 引数rowに SQLSRV_SCROLL_ABSOLUTE または SQLSRV_SCROLL_RELAT ...
e( print_r ( sqlsrv_errors (), true ) ); } while( $row = sqlsrv_fetch_array ( $stmt , SQLSRV_FETCH_ASSOC ...
-
https://man.plustar.jp/php/function.sqlsrv-fetch-array.html
- [similar]
- Prepare a SQL statement for execution 5793
- « cubrid_pconnect cubrid_put » PHP Manual CUBRID 関数 Prepare a SQL statement for execution cubr
...
ind ( $req , 2 , 2000 ); cubrid_execute ( $req ); $row_num = cubrid_num_rows ( $req ); printf ( "There ar ...
2004 olympic but not in 2000. For example:\n\n" , $row_num ); printf ( "%-15s %s\n" , "Event_code" , "Eve ...
" ); printf ( "----------------------------\n" ); $row = cubrid_fetch_assoc ( $req ); printf ( "%-15d %s\ ...
n" , $row [ "event_code" ], $row [ "name" ]); $row = cubrid_ ...
-
https://man.plustar.jp/php/function.cubrid-prepare.html
- [similar]
- 内部的な結果ポインタを移動する 5793
- « mysql_create_db mysql_db_name » PHP Manual MySQL 関数 内部的な結果ポインタを移動する mysql_dat
...
ABS 説明 mysql_data_seek ( resource $result , int $row_number ): bool mysql_data_seek() は、指定した結果 ...
)が指す MySQL 結果の内部ポインタが指定した行番号 (row_number)を指すように移動します。 この後、たとえば ...
した場合には、 ここで指定した行の内容が返されます。 row_number は 0 から始まります。 row_number は 0 から ...
mysql_num_rows() - 1 までの範囲にあるべきです。 しかし、もし結果 ...
-
https://man.plustar.jp/php/function.mysql-data-seek.html
- [similar]
- 連想配列として結果の行を取得する 5705
- « mysql_fetch_array mysql_fetch_field » PHP Manual MySQL 関数 連想配列として結果の行を取得する m
...
前を有する他のカラムにアクセスするには、 mysql_fetch_row() を使用して数値添字を返すか、 エイリアス名を追加す ...
rom DB: " . mysql_error (); exit; } if ( mysql_num_rows ( $result ) == 0 ) { echo "No rows found, nothing ...
xiting" ; exit; } // データ行が存在する間、それを $row に連想配列形式でセットする // 注: 結果が 1 行である ...
ープを利用しなくてもよい // 注: ループ内で extract($row); を実行すれば、 // $userid, $fullname, そして $us ...
-
https://man.plustar.jp/php/function.mysql-fetch-assoc.html
- [similar]
- SQL 文を直接実行する 5686
- « db2_escape_string db2_execute » PHP Manual IBM DB2 関数 SQL 文を直接実行する db2_exec (PECL ib
...
l , array( 'cursor' => DB2_SCROLLABLE )); while ( $row = db2_fetch_array ( $stmt )) { print " $row [ 0 ] ...
' ' ; $stmt = db2_exec ( $conn , $query ); while( $row = db2_fetch_object ( $stmt )){ printf ( " $row -> ...
CID $row -> NAME $row -> PHONE \n" ); } db2_close ( $conn ) ...
' ' ; $stmt = db2_exec ( $conn , $query ); while( $row = db2_fetch_object ( $stmt )){ printf ( " $row -> ...
-
https://man.plustar.jp/php/function.db2-exec.html
- [similar]