Loading Parquet into Microsoft SQL No Longer Requires Python Tuples
With mssql-python 1.13.0, load Parquet data into Microsoft SQL faster without Python tuples.
When loading Parquet data into Microsoft SQL using Python, the need to create a tuple for each row has been eliminated. The mssql-python 1.13.0 release introduces the Cursor.bulkcopy_arrow() method, allowing for efficient data transfer without the overhead of the Global Interpreter Lock (GIL), facilitating direct loading of data.