When switching from TLS 1.0 to 1.2 or 1.3 you need to considder the following in Enterprise Architect.
- Make sure you installed the latest Microsoft OLE DB Driver for SQL Server
- When choosing the “Data Providers” use the “Microsoft OLE DEB Driver for SQL Server” (not the “Provider”)
- Later you need to enable “DataTypeCompatibility” because of the changes in data types
This can only be done by hand, by adding the following to the connection string:
;DataTypeCompatibility=80
After creating the DB Connection you can add this string by:
- File → Open Project
- select the DB connection and open the context menu → Edit connection string
- Add: ;DataTypeCompatibility=80 to the end of the connection string and click OK