pb 数据库连接问题
database transaction information not available我用的数据库是SQL 2005
其中application的open事件是这样写的:
SQLCA.DBMS = "SNC SQL Native Client(OLE DB)"
SQLCA.ServerName = "127.0.0.1"
SQLCA.LogId = "sa"
SQLCA.AutoCommit = False
SQLCA.DBParm = "Database='students',TrustedConnection=1"
connect using sqlca;
if sqlca.sqlcode<0 then
messagebox("连接错误","返回")
return
end if
open(w_objectdata)
在窗口的open事件中代码为:
dw_1.settransobject(sqlca)
dw_1.retrieve()
数据库服务器在本地计算机,已打开
为什么会出现这个错误,该如何解决?求高手解答