Subject | RE: [IBO] Statement parameters in the ExecuteDML |
---|---|
Author | Jason Wharton |
Post date | 2004-11-17T22:48:06Z |
> Just want to know, how i writes in statement string, the parameters...Using ? will always work.
>
> ":parN" or "?"
Using : depends on what your ParamChar property is set to. It defaults to :
so if you never mess with it you can actually use both.
Keep in mind, the only character the server recognizes on the raw statements
set to it is ? without any parameter names. The server only looks for a
question mark and does nothing to respect any parameter names.
IBO is insulating you from the primitiveness of the server in this area.
Jason Wharton