跳转到内容

參數化查詢:修订间差异

维基百科,自由的百科全书
删除的内容 添加的内容
Regionbbs留言 | 贡献
Regionbbs留言 | 贡献
第120行: 第120行:
?>
?>
</source>
</source>

本範例程式來自於 [http://msdn.microsoft.com/en-us/library/cc296201(SQL.90).aspx MSDN Lirary: SQL Server 2005 Driver for PHP]

2008年8月21日 (四) 07:00的版本

參數化查詢 (Parameterized Query) 是指在設計與資料庫連結並存取資料時,在需要填入數值或資料的地方,使用參數 (Parameter) 來給值,這個方法目前已被視為最有效可預防 SQL 隱碼攻擊 (SQL Injection) 的攻擊手法的防禦方式。

有部份的開發人員可能會認為使用參數化查詢,會讓程式更不好維護,或者在實作部份功能上會非常不便,然而,使用參數化查詢造成的額外開發成本,通常都遠低於因為 SQL Injection 漏洞被發現而遭受攻擊,所造成的重大損失。

原理

在使用參數化查詢的情況下,資料庫伺服器不會將參數的內容視為 SQL 指令的一部份來處理,而是在資料庫完成 SQL 指令的編譯後,才套用參數執行,因此就算參數中含有具破壞性的指令,也不會被資料庫所執行。

SQL 指令撰寫方法

在撰寫 SQL 指令時,利用參數來代表需要填入的數值,例如:

Microsoft SQL Server

Microsoft SQL Server 的參數格式是以 "@" 字元加上參數名稱而成,SQL Server 亦支援匿名參數 "?"。

 SELECT * FROM myTable WHERE myID = @myID
 INSERT INTO myTable (c1, c2, c3, c4) VALUES (@c1, @c2, @c3, @c4)

Microsoft Access

Microsoft Access 不支援具名參數,只支援匿名參數 "?"。

 UPDATE myTable SET c1 = ?, c2 = ?, c3 = ? WHERE c4 = ?

MySQL

MySQL 的參數格式是以 "?" 字元加上參數名稱而成。

 UPDATE myTable SET c1 = ?c1, c2 = ?c2, c3 = ?c3 WHERE c4 = ?c4

用戶端程式撰寫方法

在用戶端程式碼中撰寫使用參數的程式碼,例如:

ADO.NET

SqlCommand sqlcmd = new SqlCommand("INSERT INTO myTable (c1, c2, c3, c4) VALUES (@c1, @c2, @c3, @c4)", sqlconn);

sqlcmd.Parameters.AddWithValue("@c1", 1); // 設定參數 @c1 的值。
sqlcmd.Parameters.AddWithValue("@c2", 2); // 設定參數 @c2 的值。
sqlcmd.Parameters.AddWithValue("@c3", 3); // 設定參數 @c3 的值。
sqlcmd.Parameters.AddWithValue("@c4", 4); // 設定參數 @c4 的值。

sqlconn.Open();
sqlcmd.ExecuteNonQuery();
sqlconn.Close();

PHP

<?php
/* Connect to the local server using Windows Authentication and
specify the AdventureWorks database as the database in use. */
$serverName = "(local)";
$connectionInfo = array( "Database"=>"AdventureWorks");
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn === false )
{
     echo "Could not connect.\n";
     die( print_r( sqlsrv_errors(), true));
}

$tsql = "INSERT INTO Sales.SalesOrderDetail (SalesOrderID, 
                                             OrderQty, 
                                             ProductID, 
                                             SpecialOfferID, 
                                             UnitPrice)
         VALUES (?, ?, ?, ?, ?)";

/* Each sub array here will be a parameter array for a query.
The values in each sub array are, in order, SalesOrderID, OrderQty,
 ProductID, SpecialOfferID, UnitPrice. */
$parameters = array( array(43659, 8, 711, 1, 20.19),
                     array(43660, 6, 762, 1, 419.46),
                     array(43661, 4, 741, 1, 818.70)
                    );

/* Initialize parameter values. */
$orderId = 0;
$qty = 0;
$prodId = 0;
$specialOfferId = 0;
$price = 0.0;

/* Prepare the statement. $params is implicitly bound to $stmt. */
$stmt = sqlsrv_prepare( $conn, $tsql, array( $orderId,
                                             $qty,
                                             $prodId,
                                             $specialOfferId,
                                             $price));
if( $stmt === false )
{
     echo "Statement could not be prepared.\n";
     die( print_r( sqlsrv_errors(), true));
}

/* Execute a statement for each set of params in $parameters.
Because $params is bound to $stmt, as the values are changed, the
new values are used in the subsequent execution. */
foreach( $parameters as $params)
{
     list($orderId, $qty, $prodId, $specialOfferId, $price) = $params;
     if( sqlsrv_execute($stmt) === false )
     {
          echo "Statement could not be executed.\n";
          die( print_r( sqlsrv_errors(), true));
     }
     else
     {
          /* Verify that the row was successfully inserted. */
          echo "Rows affected: ".sqlsrv_rows_affected( $stmt )."\n";
     }
}
/* Free statement and connection resources. */
sqlsrv_free_stmt( $stmt);
sqlsrv_close( $conn);
?>

本範例程式來自於 MSDN Lirary: SQL Server 2005 Driver for PHP