Does PowerBuilder 2017 support SQL Server 2017.
I am running PowerBuilder 12.6 against a local (desktop) version of SQL Server 2017, release candidate 1 using the latest version of Native Client (any of them actually). So that might be a clue to the question.
But the client now wants to officially move to the actual released version of SQL Server 2017. Don't want to give an OK if there are any known issues between PowerBuilder 2017 and SQL Server 2017.
May be an obvious question, but thought I'd better check just in case there are issues.
Thanks.
Here are the settings that I use with my SS2019 (I just replaced SS2017) in order to connect & work with that DBMS.
// Profile SS2019_Chris
SQLCA.DBMS = "SNC"
SQLCA.LogPass = <*****>
SQLCA.ServerName = "STD-CHRIS\SQLEXPRESS"
SQLCA.LogId = "Chris"
SQLCA.AutoCommit = False
SQLCA.DBParm = "Database='Chris',Provider='SQLNCLI11',AppName='PB2019',Host='STD-CHRIS',TrimSpaces=1,DelimitIdentifier=1,DateTimeFormat='yyyy-mm-dd hh:mm:ss:fff',TimeFormat='hh:mm:ss:fff',DateFormat='yyyy-mm-dd',TimeOut=5"
HTH ... Chris
thanks a lot.
Dede