用vb调用ado控件连接数据库 之前在本地调试,用 sSQLconn = "Provider=SQLOLEDB.1;User ID=sa;password=helloqq;Initial Catalog=ProjectDT;Data Source=sanu" Adodc1.UserName = "sa" Adodc1.Password = "helloqq" Adodc1.RecordSource = "select * from EMS_User where Suser ='" & Trim(Text_User.Text) & "'" Adodc1.Refresh 就是连接本地数据库进行用户校验的 运行后完全正常
后来因为数据库需要共享,就在网上租了个空间,把数据库上传到网络上了,然后 sSQLconn = "Provider=SQLOLEDB.1;User ID=wwwliftsmartcom7;password=helloqq;Initial Catalog=db_www_liftsmart_com;Data Source=hk818.pc51.com,1433;" Adodc1.UserName = "wwwliftsmartcom7" Adodc1.Password = "helloqq" Adodc1.RecordSource = "select * from EMS_User where Suser ='" & Trim(Text_User.Text) & "'" Adodc1.Refresh 就出现错误提示"用户'sa' 登陆失败" 请问各位亲这个怎么破
你的用户名不是wwwliftsmartcom7,怎么会出sa登录失败,你哪个地方的登录用户名没改过来吧,自己检查一下 可能你把用户名密码啥的写到adodc的属性里去了,不行就先把ADODC删掉再添加进来,当然也可能是别的某个控件的属性里面
|