| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
sqlsrv_prepare(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう) sqlsrv_prepare — Prepares a query for execution 説明Prepares a query for execution. This function is ideal for preparing a query that will be executed multiple times with different parameter values. パラメータ
返り値
Returns a statement resource on success and 例
例1 sqlsrv_prepare() example This example demonstrates how to prepare a statement with sqlsrv_prepare() and re-execute it multiple times (with different parameter values) using sqlsrv_execute().
<?php 注意When you prepare a statement that uses variables as parameters, the variables are bound to the statement. This means that if you update the values of the variables, the next time you execute the statement it will run with updated parameter values. For statements that you plan to execute only once, use sqlsrv_query(). 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「sqlsrv_prepare - Prepares a query for execution」をGoogle検索
|