Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using bracket in SQL Select from VFP
Message
 
 
To
06/06/2011 11:50:27
James Blackburn
Qualty Design Systems, Inc.
Kuna, Idaho, United States
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01513057
Message ID:
01513091
Views:
44
>>>>>>Hi,
>>>>>>
>>>>>>The following SQL Select:
>>>>>>
>>>>>>
>>>>>>select 1 from MyTable where MyField = [TEST1] and PK_FLD <> 0
>>>>>>
>>>>>>
>>>>>>works in VFP. But when sending this SQL select to SQL Server I get error:
>>>>>>
>>>>>>Invalid column 'TEST1'
>>>>>>
>>>>>>Should I replace the brackets?
>>>>>
>>>>>Yes. Strings should be enclosed in single quotes. In SQL Server only [] will mean field name, as well as double quotes.
>>>>
>>>>The reason I used the brackets is a way to deal with an apostrophe in the entry. For example, if the entry is "O'Connell" I get error. So with the bracket there is no error (in VFP). What do you do for these cases (apostrophe in entry) in SQL?
>>>
>>>You need to double the apostrophe or use parameter (preferred method).
>>
>>Say the parameter is not applicable and you only have an option of what you call "double the apostrophe." Then user enters "O'Connell", do you mean to search within the entry (before adding it to the SQL Select) and add another single apostrophe as "O''Connell"?
>
>Try this.
>
>lcWhere = "O'Connell "
>lcWhere = strtran(lcWhere ,"'","''") 
>lcSql = "Select * From mytable lcWhere where lastname = '"+lcWhere+"'" 
>
Thank you very much. This is what I will do. It is just that I didn't know about the fact that SQL does not like brackets and will have to make these changes in many places.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform