検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 555 for query (0.012 sec.)
ストレージの暗号化 3929
« データベースへの接続 SQLインジェクション » PHP Manual データベースのセキュリティ ストレージの暗 ... ールド <?php // ハッシュされたパスワードを格納する $query = sprintf ( "INSERT INTO users(name,pwd) VALUES('% ... sh ( $password , PASSWORD_DEFAULT )); $result = pg_query ( $connection , $query ); // パスワードが正しいかど ... うか問い合わせる $query = sprintf ( "SELECT pwd FROM users WHERE name='%s' ... _string ( $username )); $row = pg_fetch_assoc ( pg_query ( $connection , $query )); if ( $row && password_v ...
https://man.plustar.jp/php/security.database.storage.html - [similar]
The MongoDB\Driver\ReadConcern class 3906
« MongoDB\Driver\ReadPreference::unserialize MongoDB\Driver\ReadConcern::bsonSerialize » PHP Man ... en afterClusterTime and level are unspecified. The query returns the instance's most recent data. Provides ... wait to ensure consistency guarantees. However, a query with "available" read concern may return orphan do ... data. MongoDB\Driver\ReadConcern::LINEARIZABLE The query returns data that reflects all successful writes i ... guarantees only apply if read operations specify a query filter that uniquely identifies a single document. ...
https://man.plustar.jp/php/class.mongodb-driver-readconcern.html - [similar]
結果における行の数を得る 3906
« mysql_num_fields mysql_pconnect » PHP Manual MySQL 関数 結果における行の数を得る mysql_num_row ... esult 評価された結果 リソース 。この結果は、 mysql_query() のコールにより得られたものです。 戻り値 成功した ... _select_db ( "database" , $link ); $result = mysql_query ( "SELECT * FROM table1" , $link ); $num_rows = my ... num_rows Rows\n" ; ?> 注意 注意 : mysql_unbuffered_query() を使用した場合、 結果セットのすべての行を取得する ... l_select_db() - MySQL データベースを選択する mysql_query() - MySQL クエリを送信する 関連キーワード: rows , ...
https://man.plustar.jp/php/function.mysql-num-rows.html - [similar]
指定したパラメータでプリペアドステートメントを作成するリクエストを 送信し、その... 3906
« pg_port pg_put_line » PHP Manual PostgreSQL 関数 指定したパラメータでプリペアドステートメントを ... ction $connection = ? , string $stmtname , string $query ): PgSql\Result | false pg_prepare() は、 pg_execu ... は stmtname という名前の プリペアドステートメントを query 文字列から作成します。 この文字列には 1 つの SQL コ ... 場合にはエラーとなります。パラメータを使用する際は、 query 内で $1、$2 のような形式で参照されます。 pg_prepar ... 以前に定義された 無名ステートメントを上書きします。 query パラメータ化した SQL 文。ひとつの文のみである必要が ...
https://man.plustar.jp/php/function.pg-prepare.html - [similar]
直近に実行されたステートメントで変更・削除・追加、あるいは選択された行の総数を返... 3906
« mysqli_stmt mysqli_stmt::attr_get » PHP Manual mysqli_stmt 直近に実行されたステートメントで変更 ... orld" ); /* 一時テーブルを作成します */ $mysqli -> query ( "CREATE TEMPORARY TABLE myCountry LIKE Country" ... ); $query = "INSERT INTO myCountry SELECT * FROM Country WHE ... /* 文を準備します */ $stmt = $mysqli -> prepare ( $query ); /* プレースホルダに変数をバインドします */ $cod ... , "world" ); /* 一時テーブルを作成します */ mysqli_query ( $link , "CREATE TEMPORARY TABLE myCountry LIKE C ...
https://man.plustar.jp/php/mysqli-stmt.affected-rows.html - [similar]
実行する SQL 文を準備する 3906
« SQLite3::openBlob SQLite3::query » PHP Manual SQLite3 実行する SQL 文を準備する SQLite3::prepa ... 文を準備する 説明 public SQLite3::prepare ( string $query ): SQLite3Stmt | false 実行する SQL 文を準備し、 S ... QLite3Stmt オブジェクトを返します。 パラメータ query 準備したい SQL クエリ。 戻り値 成功した場合に SQLi ... ーワード: 準備 , 実行 , 文 , prepare , パラメータ , query , オブジェクト , 変数 , public , string ...
https://man.plustar.jp/php/sqlite3.prepare.html - [similar]
RRDGraph クラス 3883
« RRDCreator::save RRDGraph::__construct » PHP Manual RRD RRDGraph クラス RRDGraph クラス (PECL ... raph instance RRDGraph::save — Saves the result of query into image RRDGraph::saveVerbose — Saves the RRD d ... atabase query into image and returns the verbose information abo ... , array , save , construct , RRD , graph , into , query ...
https://man.plustar.jp/php/class.rrdgraph.html - [similar]
結果セットを解放する 3883
« ibase_free_query ibase_gen_id » PHP Manual Firebird/InterBase 関数 結果セットを解放する ibase_ ... トを解放します。 パラメータ result_identifier ibase_query() あるいは ibase_execute() で作成した結果セット。 ... キーワード: セット , 解放 , ibase , result , free , query , identifier , gen , 関数 , resource ...
https://man.plustar.jp/php/function.ibase-free-result.html - [similar]
MySQLデータベースを破棄(削除)する 3883
« mysql_db_query mysql_errno » PHP Manual MySQL 関数 MySQLデータベースを破棄(削除)する mysql_dro ... うとします。 この関数は非推奨です。かわりに、 mysql_query() を用いて DROP DATABASE 文を発行する方法が推奨され ... r ()); } $sql = 'DROP DATABASE my_db' ; if ( mysql_query ( $sql , $link )) { echo "Database my_db was succe ... を使用してもいいでしょう。 mysql_dropdb() 参考 mysql_query() - MySQL クエリを送信する 関連キーワード: 削除 , ... データベース , 破棄 , 関数 , リンク , 推奨 , query , identifier , DATABASE , DROP ...
https://man.plustar.jp/php/function.mysql-drop-db.html - [similar]
MySQL 拡張モジュールの概要を示す例 3883
« 例 MySQL 関数 » PHP Manual 例 MySQL 拡張モジュールの概要を示す例 MySQL 拡張モジュールの概要を示 ... d not select database' ); // SQL クエリを実行する $query = 'SELECT * FROM my_table' ; $result = mysql_query ... ( $query ) or die( 'Query failed: ' . mysql_error ()); // H ...
https://man.plustar.jp/php/mysql.examples-basic.html - [similar]