Re: [sqlalchemy] TLS 1.2

2023-03-28 Thread Mike Bayer
this is a driver issue so you'd need to get specifics from the driver you're using, such as mysqlclient or pymysql. per https://dev.mysql.com/doc/c-api/8.0/en/c-api-encrypted-connections.html it looks like "TLS_VERSION" create_engine("mysql+mysqldb://...?ssl=true", connect_args={"ssl":

[sqlalchemy] Re: TLS 1.2

2023-03-28 Thread Jonathan Vanasco
Many users with similar experiences ultimately traced the issue to an outdated database driver. I would try updating your driver. If that does not work, please share the driver + version, and your connection string / code. On Monday, March 27, 2023 at 2:39:21 PM UTC-4 pdb...@g.clemson.edu