Problem with TMSChangeNotification component(1)

Discussion of open issues, suggestions and bugs regarding SDAC (SQL Server Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
MNosouhi
Posts: 12
Joined: Wed 13 Feb 2008 03:53

Problem with TMSChangeNotification component(1)

Post by MNosouhi » Wed 13 Feb 2008 04:50

when i use "select * from MyTable" in "SQl" peraperty of TMSQuery , TMSChangeNotification component raise a error with this message :"statemant does not support notification" ;
this only work correctly if use "select TId, TName, TDatein from dbo.MyTable" . that means i can not use "*" in sql statemant and must use "dbo." (the owner of table) befor of tablename.
how can i removed this limmits?

i use SDAC ver 4.35 and delphi7&Delphi2007 and windows xp with sql2005

Challenger
Devart Team
Posts: 925
Joined: Thu 17 Nov 2005 10:53

Post by Challenger » Wed 13 Feb 2008 07:21

These are restrictions of SQL Server. There is no way to avoid them. For full list of limits please refer to
http://msdn2.microsoft.com/library/ms181122.aspx

MNosouhi
Posts: 12
Joined: Wed 13 Feb 2008 03:53

Post by MNosouhi » Wed 13 Feb 2008 13:17

Thanks

Post Reply