Thursday, March 5, 2009

Avoid double qoutation common mistake

When Developing an Application Engine and deploying a Do Select Statement for example, make sure you don't say

Select column1 from Record1 where column2 = "value"

this is incorrect

The right way is

Select column1 from Record1 where column2 = 'value'

No comments:

Post a Comment