DBExpress连接SQL Server问题(50分)

  • 主题发起人 主题发起人 刘邦
  • 开始时间 开始时间

刘邦

Unregistered / Unconfirmed
GUEST, unregistred user!
请教各位大虾:用TSQLConnention连接SQL Server数据库时怎样设置HostName,DataBase属性(数据库服务器在本机)
 
DriverName=MSSQL
HostName=(local)
DataBase=master
User_Name=sa
Password=
BlobSize=-1
ErrorResourceFile=
LocaleCode=0000
MSSQL TransIsolation=ReadCommited
OS Authentication=False
 
按君所说,为什么总是出现:error mapping failed??? 改变数据库名称也没用,对了,我的数据库使系统自动验证的,没有用户
 
那么试试这个
DriverName=MSSQL
HostName=(local)
DataBase=master
User_Name=登录用户名
Password=登录密码
BlobSize=-1
ErrorResourceFile=
LocaleCode=0000
MSSQL TransIsolation=ReadCommited
OS Authentication=True
 
试过了,administrator,liubang还出现同样的错误!
 
DriverName=MSSQL
HostName=(local)
感谢:pihome,在你的提示下,我用以下设置成功连接,50分送上请查收
DataBase=master
User_Name=登录用户名
Password=登录密码
BlobSize=-1
ErrorResourceFile=
LocaleCode=0000
MSSQL TransIsolation=ReadCommited
OS Authentication=false
 
接受答案了.
 
后退
顶部