1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 14:46:56 +02:00

Updated e107 Coding Standard (markdown)

Moc
2013-04-07 05:31:01 -07:00
parent d44d5ffed4
commit 1ffc8c38ec

@@ -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`)