Difference between revisions of "Common:SQL Safety Note"

From AgileApps Support Wiki
imported>Aeric
(Created page with "{{Note|When you make a SQL query, you are not querying the platform database directly. Rather, you are querying a role-permissions restricted ''view'' of the database, so the rec…")
 
imported>Aeric
Line 1: Line 1:
{{Note|When you make a SQL query, you are not querying the platform database directly. Rather, you are querying a role-permissions restricted ''view'' of the database, so the records and fields you can see using SQL are the same as those you see when using the GUI. In addition, SQL injections are expressly disallowed, so the database view remains intact.}}
{{Note|When you make a SQL query, you are not querying the platform database directly. Rather, you are querying a role-permissions restricted ''view'' of the database, so the records and fields you can see using SQL are the same as those you see when using the GUI. In addition, the platform implements various safeguards to prevent SQL Injection attacks.}}

Revision as of 23:18, 2 December 2011

Notepad.png

Note: When you make a SQL query, you are not querying the platform database directly. Rather, you are querying a role-permissions restricted view of the database, so the records and fields you can see using SQL are the same as those you see when using the GUI. In addition, the platform implements various safeguards to prevent SQL Injection attacks.