首頁  >  文章  >  資料庫  >  MySQL中prepare與execute以及deallocate預處理語句的使用教學課程

MySQL中prepare與execute以及deallocate預處理語句的使用教學課程

黄舟
黄舟原創
2017-08-23 13:45:021886瀏覽

這篇文章主要介紹了MySQL中預處理語句prepare、execute與deallocate的使用教程,需要的朋友可以參考下

MySQL官方將prepare、execute、deallocate統稱為PREPARE STATEMENT。
我習慣稱之為【預處理語句】。

其用法十分簡單,


PREPARE stmt_name FROM preparable_stmt
EXECUTE stmt_name
  [USING @var_name [, @var_name] ...]  -
{DEALLOCATE | DROP} PREPARE stmt_name

#舉個栗子:


##

mysql> PREPARE pr1 FROM 'SELECT ?+?';
Query OK, 0 rows affected (0.01 sec)
Statement prepared
mysql> SET @a=1, @b=10 ;
Query OK, 0 rows affected (0.00 sec)
mysql> EXECUTE pr1 USING @a, @b;
+------+
| ?+? |
+------+
| 11  |
+------+
1 row in set (0.00 sec)

mysql> EXECUTE pr1 USING 1, 2;  -- 只能使用用户变量传递。
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the 
right syntax to use near '1, 2' at line 1
mysql> DEALLOCATE PREPARE pr1;
Query OK, 0 rows affected (0.00 sec)

使用PAREPARE STATEMENT可以減少每次執行SQL的語法分析,

例如用於執行帶有WHERE條件的SELECT和DELETE,或者UPDATE,或者INSERT,只需要每次修改變數值即可。
同樣可以防止SQL注入,參數值可以包含轉義符和定界符。

適用在應用程式中,或SQL腳本中皆可。

更多用法:

同樣PREPARE ... FROM可以直接接使用者變數:



mysql> CREATE TABLE a (a int);
Query OK, 0 rows affected (0.26 sec)
mysql> INSERT INTO a SELECT 1;
Query OK, 1 row affected (0.04 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql> INSERT INTO a SELECT 2;
Query OK, 1 row affected (0.04 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> INSERT INTO a SELECT 3;
Query OK, 1 row affected (0.04 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql> SET @select_test = CONCAT('SELECT * FROM ', @table_name);
Query OK, 0 rows affected (0.00 sec)

mysql> SET @table_name = 'a';
Query OK, 0 rows affected (0.00 sec)
mysql> PREPARE pr2 FROM @select_test;
Query OK, 0 rows affected (0.00 sec)
Statement prepared

mysql> EXECUTE pr2 ;
+------+
| a  |
+------+
| 1  |
| 2  |
| 3  |
+------+
3 rows in set (0.00 sec)

mysql> DROP PREPARE pr2;  -- 此处DROP可以替代DEALLOCATE
Query OK, 0 rows affected (0.00 sec)

每次執行完EXECUTE時,養成好習慣,須執行DEALLOCATE PREPARE … 語句,這樣可以釋放執行中使用的所有資料庫資源(如遊標)。


#不只如此,如果一個session的預處理語句過多,可能會達到max_prepared_stmt_count的上限值。

預處理語句只能在創建者的會話中可以使用,其他會話是無法使用的。


而且在任意方式(正常或非正常)退出會話時,先前定義好的預處理語句將不復存在。


如果在預存程序中使用,如果不在程序中DEALLOCATE掉,在預存程序結束之後,該預處理語句仍然會有效。

總結

以上是MySQL中prepare與execute以及deallocate預處理語句的使用教學課程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn