PB9 SQL端口修改后怎么连接

// Profile taifeng_server
SQLCA.DBMS = "MSS Microsoft SQL Server"
SQLCA.Database = "testDB"
SQLCA.LogPass = "1234"
SQLCA.ServerName = "192.168.0.1"
SQLCA.LogId = "sa"
SQLCA.AutoCommit = True
SQLCA.DBParm = ""

------解决方案--------------------------------------------------------
SQLCA.ServerName = "192.168.0.1"
为:SQLCA.ServerName = "192.168.0.1,1434"

你可能感兴趣的:(sql,Microsoft)