From 40c0d6dae3efee740db60c6824ecbdffb012c5f6 Mon Sep 17 00:00:00 2001 From: Aaron Stone Date: Sat, 7 Apr 2018 21:45:55 -0700 Subject: [PATCH] README be sure to read about the known limitations of prepared statements --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index eee59a3f9..a48ac0377 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,9 @@ Pass your arguments to the execute method in the same number and order as the question marks in the statement. Query options can be passed as keyword arguments to the execute method. +Be sure to read about the known limitations of prepared statements at +https://dev.mysql.com/doc/refman/5.6/en/c-api-prepared-statement-problems.html + ``` ruby statement = @client.prepare("SELECT * FROM users WHERE login_count = ?") result1 = statement.execute(1)