I will to use the ADO protocol, mounting a connection string ADO.
Only think that should operate normally using MSSQL protocol, as the BDS2006.
Search found 3 matches
- 01.02.2010, 12:19
- Forum: MS SQL Server
- Topic: Error on connect MSSQL using Delphi 12 + ZEOS 7
- Replies: 2
- Views: 2358
- 28.01.2010, 22:01
- Forum: 6.6 - stable
- Topic: Can not connect to mysql [solved]
- Replies: 2
- Views: 440
try it var Db:TZConnection; query:TZQuery; begin Db:=TZConnection.Create(nil); Db.Protocol:='mysql'; Db.HostName:='localhost'; Db.Database:='bali'; Db.User:='root'; Db.Password:=''; query:=TZQuery.Create(nil); query.Connection := DB; query.SQL.Clear; query.SQL.Add('SELECT * from inbox limit 0,10'); ...
- 28.01.2010, 20:32
- Forum: MS SQL Server
- Topic: Error on connect MSSQL using Delphi 12 + ZEOS 7
- Replies: 2
- Views: 2358
Error on connect MSSQL using Delphi 12 + ZEOS 7
Hi! I have a problem when I try to connect from MS SQL Database using Delphi 12 + Zeos 7 Alpha, when show a message that say: "Unable to connect: SQL Server is unavailable or does not exist. Unable to connect: SQL Server does not exist or network access denied. ConnectionOpen (Connect()). "...