On 1/10/06, Rich Bakos <[EMAIL PROTECTED]> wrote:

> The syntax that MS SQL expects:
> select foo from bar where foo = @fooName

Are we talking about literals or parameters?

That is, are you expecting:

select colname from tablename where colname = 'somevalue'
or
select colname from tablename where colname = @somevariableholdingavalue
?

I think the %s is intended to do string formatting, resulting in a
literal, not a parameterized query.

Reply via email to