请问,为什么 调试运行 和 实际运行时,结果不一样?谢谢!
我在VB6中用以下代码连接 Access2010 数据库文件:CnnStr = "Provider=Microsoft.ACE.OLEDB.12.0" & _
";Data Source=" & AcsFile & "" & _
";User ID='" & UserID & "'" & _
";Jet OLEDB:Database password=" & Password & "" & _
";Persist Security Info=False"
Cnn.Open CnnStr
在VB6的调试状态下运行时,可以正常连接
但生成后运行时,就连接不上了,Errdescripion为“密码错误”,请问这是怎么回事?
谢谢!