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)