why different syntaxes in Commnad lines?

  • Thread starter Thread starter phil
  • Start date Start date
P

phil

Hi,

I saw three different syntaxes in command lines:
UpdateCommand="UPDATE [mytable] SET [name] = @name ...
UpdateCommand="Update `mytable` set `name`=? ...
UpdateCommand="UPDATE [mytable] SET [name] = ? ...

Does the three do the same?
Why those differences?
Thanks
Phil
 
Thanks

Mary Chipman said:
It depends on which data provider and data source you are using. See
http://msdn2.microsoft.com/en-us/library/bbw6zyha.aspx for more
information.

--Mary

Hi,

I saw three different syntaxes in command lines:
UpdateCommand="UPDATE [mytable] SET [name] = @name ...
UpdateCommand="Update `mytable` set `name`=? ...
UpdateCommand="UPDATE [mytable] SET [name] = ? ...

Does the three do the same?
Why those differences?
Thanks
Phil
 
Back
Top