全部博文(788)
分类:
2008-10-20 10:36:23
大家来帮忙啊。
设计时进行测试连接,将测试连接成功的ConnectionString拷贝出来,在FormCreate事件中赋值就行了。
SQLServer换成混合身份验证看看!
To maozefa(阿发伯)
是啊,我就是直接拷出来的啊。能测试成功。
To SmallHand(火龍)
还要重新装SQL吗???直接用build去连接是能成功的啊。
这是我在formcreat事件里添加的:
with adoconnection1 do
begin
close;
connectionstring:='Provider=SQLOLEDB.1;Password='''';Persist Security Info=False;User ID=sa;Initial Catalog=example_db;Data Source=wp';
end;
try
adoconnection1.Open();
except
showmessage('数据库连接失败!');
然后运行就出现用户'administrator'失败
如果是空密码,就把密码的内容去掉
with adoconnection1 do
begin
close;
connectionstring:='Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=example_db;Data Source=wp';
end;
SQLServer换成混合身份验证,设置sa连接密码
你双击设置不行吗,写多了就容易出错
知道了,是adoquery的问题。