I wrote a small Python script to use executemany(sql, *params), with fast_executemany=True. Running it produces a 'segmentation fault' error.
The fast_executemany = True uses an ODBC feature called "parameter arrays" and that feature is not supported by all ODBC drivers. Apparently, FreeTDS ODBC is one of those drivers that does not support it.
The Internet suggests Microsoft's ODBC Driver for SQL Server, but I cannot install this on my Raspberry Pi running Raspbian (32 bit).
Are there any other drivers that could help me out?