Results of 1 - 10 of about 19 for records (0.001 sec.)
- Gets the number of records in a database 13848
- « dbase_numfields dbase_open » PHP Manual dBase 関数 Gets the number of records in a database db
... ase_numrecords (PHP 5 < 5.3.0, dbase 5, dbase 7) dbase_numrecords ... — Gets the number of records in a database 説明 dbase_numrecords ( resource $da ... tabase ): int Gets the number of records (rows) in the specified database. 注意 : Records w ... . 注意 : Record numbers are between 1 and dbase_numrecords($db) , while field numbers are between 0 and dbase ...
-
https://man.plustar.jp/php/function.dbase-numrecords.html
- [similar]
- 直近に実行されたクエリの情報を取得する 10364
- « mysqli::get_warnings mysqli::init » PHP Manual mysqli 直近に実行されたクエリの情報を取得する m
... クエリの型 結果文字列の例 INSERT INTO...SELECT... Records: 100 Duplicates: 0 Warnings: 0 INSERT INTO...VALUE ... S (...),(...),(...) Records: 3 Duplicates: 0 Warnings: 0 LOAD DATA INFILE ... ... Deleted: 0 Skipped: 0 Warnings: 0 ALTER TABLE ... Records: 3 Duplicates: 0 Warnings: 0 UPDATE ... Rows match ... close ( $link ); ?> 上の例の出力は以下となります。 Records: 150 Duplicates: 0 Warnings: 0 参考 mysqli_affecte ...
-
https://man.plustar.jp/php/mysqli.info.html
- [similar]
- はじめに 10279
- « dBase インストール/設定 » PHP Manual dBase はじめに はじめに 注意 : この拡張モジュールは » PEC
... す。 PHP 5.3.0. These functions allow you to access records stored in dBase-format (dbf) databases. 警告 We re ... files are simple sequential files of fixed length records. Records are appended to the end of the file and d ... eleted records are kept until you call dbase_pack() . Only dbf fi ... ile , As , database , support , data , databases , records , files , length ...
-
https://man.plustar.jp/php/intro.dbase.html
- [similar]
- 直近のクエリについての情報を得る 9886
- « mysql_get_server_info mysql_insert_id » PHP Manual MySQL 関数 直近のクエリについての情報を得る
... わります。 INSERT INTO ... SELECT ... String format: Records: 23 Duplicates: 0 Warnings: 0 INSERT INTO ... VALU ... ES (...),(...),(...)... String format: Records: 37 Duplicates: 0 Warnings: 0 LOAD DATA INFILE ... ... String format: Records: 42 Deleted: 0 Skipped: 0 Warnings: 0 ALTER TABLE ... String format: Records: 60 Duplicates: 0 Warnings: 0 UPDATE String format ...
-
https://man.plustar.jp/php/function.mysql-info.html
- [similar]
- 一番最近の操作で変更された行の数を得る 9562
- « MySQL 関数 mysql_client_encoding » PHP Manual MySQL 関数 一番最近の操作で変更された行の数を得る
... ( 'DELETE FROM mytable WHERE id < 10' ); printf ( "Records deleted: %d\n" , mysql_affected_rows ()); /* 決して ... query ( 'DELETE FROM mytable WHERE 0' ); printf ( "Records deleted: %d\n" , mysql_affected_rows ()); ?> 上の例 ... の出力は、 たとえば以下のようになります。 Records deleted: 10 Records deleted: 0 例2 トランザクション ... ble SET used=1 WHERE id < 10" ); printf ( "Updated records: %d\n" , mysql_affected_rows ()); mysql_query ( "C ...
-
https://man.plustar.jp/php/function.mysql-affected-rows.html
- [similar]
- 非同期クエリの結果を取得する 9152
- « pg_get_pid pg_host » PHP Manual PostgreSQL 関数 非同期クエリの結果を取得する pg_get_result (PH
... 1 = pg_num_rows ( $res1 ); echo " $res1 has $rows1 records\n\n" ; $res2 = pg_get_result ( $dbconn ); echo "Se ... 2 = pg_num_rows ( $res2 ); echo " $res2 has $rows2 records\n" ; ?> 上の例の出力は以下となります。 First call ... _get_result(): Resource id #3 Resource id #3 has 3 records Second call to pg_get_result(): Resource id #4 Res ... ource id #4 has 1 records 参考 pg_send_query() - 非同期クエリを送信する 関連 ...
-
https://man.plustar.jp/php/function.pg-get-result.html
- [similar]
- 非同期クエリを送信する 8913
- « pg_send_query_params pg_set_client_encoding » PHP Manual PostgreSQL 関数 非同期クエリを送信する
... 1 = pg_num_rows ( $res1 ); echo " $res1 has $rows1 records\n\n" ; $res2 = pg_get_result ( $dbconn ); echo "Se ... 2 = pg_num_rows ( $res2 ); echo " $res2 has $rows2 records\n" ; ?> 上の例の出力は以下となります。 First call ... _get_result(): Resource id #3 Resource id #3 has 3 records Second call to pg_get_result(): Resource id #4 Res ... ource id #4 has 1 records 参考 pg_query() - クエリを実行する pg_cancel_query ...
-
https://man.plustar.jp/php/function.pg-send-query.html
- [similar]
- dBase 関数 8588
- « 定義済み定数 dbase_add_record » PHP Manual dBase dBase 関数 dBase 関数 例 Many examples in thi
... — Gets the number of fields of a database dbase_numrecords — Gets the number of records in a database dbase_o ... 数 , from , array , create , info , header , open , records ...
-
https://man.plustar.jp/php/ref.dbase.html
- [similar]
- 入力配列から単一のカラムの値を返す 8418
- « array_chunk array_combine » PHP Manual 配列 関数 入力配列から単一のカラムの値を返す array_colu
... p // データベースから返ってきたレコードセットの例 $records = array( array( 'id' => 2135 , 'first_name' => 'Jo ... me' => 'Doe' , ) ); $first_names = array_column ( $records , 'first_name' ); print_r ( $first_names ); ?> 上の ... 得し、"id"で並べ替える例 <?php // 先ほどの例と同じ $records 配列を使います $last_names = array_column ( $recor ...
-
https://man.plustar.jp/php/function.array-column.html
- [similar]
- 非同期クエリを取り消す 7922
- « pg_affected_rows pg_client_encoding » PHP Manual PostgreSQL 関数 非同期クエリを取り消す pg_can
... 1 = pg_num_rows ( $res1 ); echo " $res1 has $rows1 records\n\n" ; // 実行中のクエリをキャンセルする。もしまだ ... _get_result(): Resource id #3 Resource id #3 has 3 records 参考 pg_send_query() - 非同期クエリを送信する pg_c ...
-
https://man.plustar.jp/php/function.pg-cancel-query.html
- [similar]