PB连接数据库已出现could not connect to data source是什么意思?

PB连接数据库已出现could not connect to data source是什么意思?,第1张

说明你的事务配置的有问题:

// Profile sa

SQLCA.DBMS = "O10 Oracle10g (10.1.0)"

SQLCA.LogPass = "student"

SQLCA.ServerName = "orcl"

SQLCA.LogId = "student"

SQLCA.AutoCommit = False

SQLCA.DBParm = "PBCatalogOwner='student',TableCriteria=',student'"

connect

if sqlca.sqlcode= 0 then

open(w_t1)

else

halt

end if

在connect语句执行前,查看下事务对象(默认是SQLCA)的DBParm属性:

SQLCA.DBParm看下是否是如下字符串:

ConnectString='DSN=××××'

注意××××是否是你所要链接的数据库名。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6792960.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存