From 1ffc8c38ec3c3aed45dd10a1d5fcb37c1d7134d0 Mon Sep 17 00:00:00 2001 From: Moc Date: Sun, 7 Apr 2013 05:31:01 -0700 Subject: [PATCH] Updated e107 Coding Standard (markdown) --- e107-Coding-Standard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107-Coding-Standard.md b/e107-Coding-Standard.md index 54f5194..3f5019d 100644 --- a/e107-Coding-Standard.md +++ b/e107-Coding-Standard.md @@ -263,7 +263,7 @@ Update Example (few fields): $sql->update("user","user_email = 'user@email.com' WHERE user_id = 1 LIMIT 1"); -Note the _FIELD_DEFS and _NOTNULL arrays for assisting with producing valid data. These are auto-generated for any db_Insert() or db_Update() that passes array data which does not include them. If the automatic generation produces the wrong conversions, there is a mechanism to override the default. +Note the _FIELD_DEFS and _NOTNULL arrays for assisting with producing valid data. These are auto-generated for any insert() or update() that passes array data which does not include them. If the automatic generation produces the wrong conversions, there is a mechanism to override the default. Use backticks around table names and field names. (eg.`#user`)