From 0d7d6b4bd3580859aa41f9062c1063632f66beb6 Mon Sep 17 00:00:00 2001 From: Steve D Date: Wed, 15 Apr 2015 13:08:39 +1000 Subject: [PATCH] Improve SQL Format information paragraph Improve SQL Format information paragraph in the SilverStripe Coding Conventions --- docs/en/00_Getting_Started/05_Coding_Conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/00_Getting_Started/05_Coding_Conventions.md b/docs/en/00_Getting_Started/05_Coding_Conventions.md index 65b9266c4..22dc4899b 100644 --- a/docs/en/00_Getting_Started/05_Coding_Conventions.md +++ b/docs/en/00_Getting_Started/05_Coding_Conventions.md @@ -431,7 +431,7 @@ Put code into the classes in the following order (where applicable). ### SQL Format -If you have to use raw SQL, make sure your code works across databases make sure you escape your queries like below, +If you have to use raw SQL, make sure your code works across databases. Make sure you escape your queries like below, with the column or table name escaped with double quotes and values with single quotes. :::php