+ Can now set `temp` option to `True` to create a temporary table in SQL server. Will only exist as long as the SQL Alchemy connection is open
1.1.1
+ Can now customize specific column datatypes such as varchar(500) instead of the default varchar(255) + To do this use parameter `custom={column_name: sql_data_type}`
1.1.0
+ Commas in any value in dataframes caused a PYODBC programming error - all commas are removed from dataframes before uploading now to keep that form happening.
1.0.7
+ Fixed function to keep from making changes to original DataFrame entered in the function + Made the try/except clause that checks for an existing DataFrame only catch the specific error that rises if a DataFrame already exists.
1.0.6
* Before, NULL values were being entered as varchar in SQL server, they now are entered as proper NULL values * An error is now raised if there are duplicate column names (case insensitive)