検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 462 for Select (0.035 sec.)
直近に実行されたステートメントで変更・削除・追加、あるいは選択された行の総数を返... 4748
« mysqli_stmt mysqli_stmt::attr_get » PHP Manual mysqli_stmt 直近に実行されたステートメントで変更 ... DELETE クエリによって変更された行の数を返します。 SELECT クエリに対しては、 mysqli_stmt_num_rows() 関数と同 ... ることを示します。 -1 は、クエリがエラーを返したか、 SELECT 文については、 mysqli_stmt_store_result() をコール ... y LIKE Country" ); $query = "INSERT INTO myCountry SELECT * FROM Country WHERE Code LIKE ?" ; /* 文を準備しま ... y LIKE Country" ); $query = "INSERT INTO myCountry SELECT * FROM Country WHERE Code LIKE ?" ; /* 文を準備しま ...
https://man.plustar.jp/php/mysqli-stmt.affected-rows.html - [similar]
直前のステートメントの操作での SQLSTATE エラーを返す 4748
« mysqli_stmt::send_long_data mysqli_stmt::store_result » PHP Manual mysqli_stmt 直前のステートメ ... ntry" ); $mysqli -> query ( "INSERT INTO myCountry SELECT * FROM Country" ); $query = "SELECT Name, Code FRO ... " ); mysqli_query ( $link , "INSERT INTO myCountry SELECT * FROM Country" ); $query = "SELECT Name, Code FRO ...
https://man.plustar.jp/php/mysqli-stmt.sqlstate.html - [similar]
複数のステートメント 4748
« ストアドプロシージャ トランザクションのサポート » PHP Manual クイックスタートガイド 複数のステ ... -> query ( "CREATE TABLE test(id INT)" ); $sql = "SELECT COUNT(*) AS _num FROM test; INSERT INTO test(id) V ... ALUES (1); SELECT COUNT(*) AS _num FROM test; " ; $mysqli -> multi_q ... しが必要です。 攻撃者は、 ; DROP DATABASE mysql や ; SELECT SLEEP(999) のようなステートメントを追加しようとする ... ord" , "database" ); $result = $mysqli -> query ( "SELECT 1; DROP TABLE mysql.user" ); if (! $result ) { ech ...
https://man.plustar.jp/php/mysqli.quickstart.multiple-statement.html - [similar]
基本的な使い方 4748
« 基本的な使用法 PostgreSQL 関数 » PHP Manual 例 基本的な使い方 基本的な使い方 以下の例には、レガ ... $db ) { assert ( is_resource ( $db )); $query = ' SELECT d.datname as "Name", u.usename as "Owner", pg_enco ... $db ) { assert ( is_resource ( $db )); $query = " SELECT c.relname as \"Name\", CASE c.relkind WHEN 'r' THE ... able ) { assert ( is_resource ( $db )); $query = " SELECT a.attname, format_type(a.atttypid, a.atttypmod), a ...
https://man.plustar.jp/php/pgsql.examples-queries.html - [similar]
定義済み定数 4748
« リソース型 SQLSRV 関数 » PHP Manual SQLSRV 定義済み定数 定義済み定数 以下の定数が定義されていま ... ge information, see » Specifying a Cursor Type and Selecting Rows . SQLSRV_CURSOR_STATIC ( int ) Indicates a ... ge information, see » Specifying a Cursor Type and Selecting Rows . SQLSRV_CURSOR_DYNAMIC ( int ) Indicates ... ge information, see » Specifying a Cursor Type and Selecting Rows . SQLSRV_CURSOR_KEYSET ( int ) Indicates a ... ge information, see » Specifying a Cursor Type and Selecting Rows . SQLSRV_CURSOR_BUFFERED ( int ) Creates a ...
https://man.plustar.jp/php/sqlsrv.constants.html - [similar]
Mysql_xdevapi 4691
« 変更履歴 はじめに » PHP Manual MySQL Mysql_xdevapi Mysql_xdevapi はじめに インストール/設定 要 ... ::isView — テーブルがビューかどうかを調べる Table::select — テーブルから行を選択する Table::update — テーブル ... lues — 挿入する行の値を追加する mysql_xdevapi\TableSelect — TableSelect クラス TableSelect::bind — select... クエリパラメータをバインドする TableSelect::__construct — TableSelect のコンストラクタ TableS ... elect::execute — select ステートメントを実行する TableSelect::groupBy — se ...
https://man.plustar.jp/php/book.mysql-xdevapi.html - [similar]
Tells libevent to avoid specific event method 4691
« EventConfig EventConfig::__construct » PHP Manual EventConfig Tells libevent to avoid specific ... = new EventConfig (); if ( $cfg -> avoidMethod ( "select" )) { echo "'select' method avoided\n" ; } ?> 参考 ...
https://man.plustar.jp/php/eventconfig.avoidmethod.html - [similar]
結果セット内の行を表す、カラムをプロパティとするオブジェクトを返す 4691
« db2_fetch_both db2_fetch_row » PHP Manual IBM DB2 関数 結果セット内の行を表す、カラムをプロパテ ... め、 オブジェクトのプロパティも同じようになります。 SELECT 文の中でスカラ関数をコールすることでカラムの値を変 ... ect() の例 次の例では、スカラ関数 RTRIM を使用した SELECT 文を発行します。 この関数は、カラムの最後の空白を取 ... および "2" を持つオブジェクトを作成するのではなく、 SELECT 文で AS 句を使用し、変更したカラムに "name" という ... connect ( $database , $user , $password ); $sql = "SELECT breed, RTRIM(name) AS name FROM animals WHERE id = ...
https://man.plustar.jp/php/function.db2-fetch-object.html - [similar]
SQL 文中で用いる文字列の特殊文字をエスケープする 4691
« mysql_query mysql_result » PHP Manual MySQL 関数 SQL 文中で用いる文字列の特殊文字をエスケープす ... ie( mysql_error ()); // クエリ $query = sprintf ( "SELECT * FROM users WHERE user='%s' AND password='%s'" , ... mysql_real_escape_string ( $lastname ); $query = "SELECT * FROM actors WHERE last_name = ' $_lastname '" ; ... /test/script.php on line 5 bool(false) string(41) "SELECT * FROM actors WHERE last_name = ''" 例3 SQL インジ ... ース上のユーザーに一致するかどうかを調べる $query = "SELECT * FROM users WHERE user=' { $_POST [ 'username' ]} ...
https://man.plustar.jp/php/function.mysql-real-escape-string.html - [similar]
文の実行で作用された行数を取得する 4691
« oci_num_fields oci_parse » PHP Manual OCI8 関数 文の実行で作用された行数を取得する oci_num_row ... $stid = oci_parse ( $conn , "create table emp2 as select * from employees" ); oci_execute ( $stid ); echo o ... ); oci_close ( $conn ); ?> 注意 注意 : この関数は、select が返す行の数は 返しません ! SELECT 文の場合、この関 ...
https://man.plustar.jp/php/function.oci-num-rows.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT