Subject | RE: [firebird-support] Using EXECUTE STATEMENT in Stored Procedures |
---|---|
Author | Svein Erling Tysvær |
Post date | 2010-01-14T07:34:08Z |
Martijn Tonies wrote:
FK_STATUS_ID IS NOT NULL AND (SRCH_LAST_NAME = ''O''''REILLY'' )
HTH,
Set
>> FK_STATUS_ID IS NOT NULL AND (SRCH_LAST_NAME = ''OREILLY'' )which means that Myles possibly could use:
>String values should be enclosed in single quotes, in Delphi, you can easily escape single quotes with two single quotes by using the
>QuotedStr function.
>
>O'Reilly then becomes:
>
>'O''Reilly'
FK_STATUS_ID IS NOT NULL AND (SRCH_LAST_NAME = ''O''''REILLY'' )
HTH,
Set