specific server no found'

Discussion of open issues, suggestions and bugs regarding SDAC (SQL Server Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
kunwei

specific server no found'

Post by kunwei » Wed 05 Jan 2005 01:57

hi, currently I has setup 2 pc with only win2000 os only. but I found that my program can not execute on this 2 pc. but for other pc has preinstall with MSDE 2000 is ok. it prompt me "specific server no found' on this 2 pc.
What should I include/setup for this 2 pc?

My program just only has 1 TMSConnection ,1 TDataSource and 1 TMSTable.

procedure TDMMain.DataModuleCreate(Sender: TObject);
begin
MyPosKing.Connect;
TblPOSSetting.Open;
end;


procedure TDMMain.DataModuleDestroy(Sender: TObject);
begin
MyPosKing.Connected:=False;
end;

Ikar
Posts: 1693
Joined: Thu 28 Oct 2004 13:56

Re: specific server no found'

Post by Ikar » Wed 05 Jan 2005 07:31

SDAC requires OLE DB installed on workstation.

Note:
in current versions of Microsoft Windows, as Windows 2000,
OLE DB is already included as standard package. But it's
highly recommended to download latest version (newer than 2.5) of
Microsoft Data Access Components (MDAC).

Guest

Post by Guest » Wed 05 Jan 2005 09:52

thanks. I has install MDAC 2.8. It can connect to 2 out of 3 MSDE data server. but 1 of them still can not connect. base on the program on top i create. The data server can not login can be login from other pc which running the same program.

what should i do now? the version I use is the newest version which i download today as a register user

Thanks

Ikar
Posts: 1693
Joined: Thu 28 Oct 2004 13:56

Post by Ikar » Thu 06 Jan 2005 10:30

Most probably the reason of the problem is in some local settings of the server. What is SDAC version that you use? 3.50.0.10 Beta or 3.00.2.9? Have you installed a client from MS SQL Server 2005 Beta on this PC?

Post Reply