From 752585ad80d9146f911396406ffecb6f87d3a038 Mon Sep 17 00:00:00 2001
From: Philipp Rieber
Date: Mon, 16 Dec 2013 06:37:35 +0100
Subject: [PATCH] [Cookbook][Security] Use uppercase SQL keywords in query
---
cookbook/security/entity_provider.rst | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/cookbook/security/entity_provider.rst b/cookbook/security/entity_provider.rst
index 4901510d418..0823b56b84b 100644
--- a/cookbook/security/entity_provider.rst
+++ b/cookbook/security/entity_provider.rst
@@ -200,7 +200,7 @@ user records and encode their password, see :ref:`book-security-encoding-user-pa
.. code-block:: bash
- $ mysql> select * from acme_users;
+ $ mysql> SELECT * FROM acme_users;
+----+----------+------+------------------------------------------+--------------------+-----------+
| id | username | salt | password | email | is_active |
+----+----------+------+------------------------------------------+--------------------+-----------+
@@ -649,14 +649,14 @@ this:
.. code-block:: bash
- $ mysql> select * from acme_role;
+ $ mysql> SELECT * FROM acme_role;
+----+-------+------------+
| id | name | role |
+----+-------+------------+
| 1 | admin | ROLE_ADMIN |
+----+-------+------------+
- $ mysql> select * from user_role;
+ $ mysql> SELECT * FROM user_role;
+---------+---------+
| user_id | role_id |
+---------+---------+