Is there an equivalent of odbc_connect in pymssql using freeTDS driver?
For example using pyodbc I can use connect within the connection string itself and then pass all required parameters:
conn_string = ("mssql+pyodbc:///?autocommit=true&odbc_connect={}".format(parameters)
Is it possible to use &connect={} within the string using pymssql & freeTDS in SQLAlchemy?