pb中连接SQL SERVER的链接服务器,请问transaction的属性怎么设?

SQLCA.Database = "" //这里 “数据库的名字”SQLCA.ServerName = "" //这里 “数据库服务器的名字”
2026年09月26日 10:37
有1个网友回答
网友(1):

// Profile
SQLCA.DBMS = "MSS Microsoft SQL Server"
SQLCA.Database = ""
SQLCA.LogPass = ""//密码
SQLCA.ServerName = "."//地址
SQLCA.LogId = "sa"//登陆名
SQLCA.AutoCommit = False//是否自动提交
SQLCA.DBParm = ""
connect using sqlca;//连接数据库