- Allen Ai
- PowerBuilder
- Friday, 29 July 2022 06:16 AM UTC
Hi:
I finished my application then deployed OK,the execution file could run normally at my computer,but will display message "Microsoft OLE DB Driver for SQL Server (MSOLEDBSQL) is not installed" when it started at other computers,would you can give me some solutions(about DB,I used SQL Server 2019),Thanks
PS. I alredy installed MSOLEDBSQL into other computers that prepare to run my application
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
powerbuilder script as following:
SQLCA.DBMS = "MSOLEDBSQL SQL Server"
SQLCA.LogPass = "Login@22907106!qaz"
SQLCA.ServerName = "192.168.1.62"
SQLCA.LogId = "sa"
SQLCA.AutoCommit = False
SQLCA.DBParm = "Database='CKPLAS'"
connect;
if sqlca.sqlcode <> 0 then
MessageBox ("Sorry! Cannot Connect To Database", sqlca.sqlerrtext)
halt close
return
end if
open(w_main)
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.