Extension for Visual Studio - The Office 365 ODBC Driver is a powerful tool that allows you to connect with live data from Office 365, directly from any applications that support ODBC connectivity. Access Office 365 data like you would a database - read, write, & update Outlook Mail, Contact, Calendar, etc. I would like implement the new feature into pyodbc module or new module for postgres 10/11 useful for later versions of django. Adjustments only in base.py (line 70ff): data_types = { 'IdentityAutoField': 'integer', 'IdentityBigAutoField': 'bigint', and schema.py, def column_sql (line 178ff): from sqlalchemy import create_engine Table, Column, MetaData from sqlalchemy.orm import mapper, create_session from sqlalchemy.ext.declarative import declarative_base from pandas.io.sql import SQLTable, SQLDatabase def bulk_upload(table, schema, name): e = create_engine('mssql+pyodbc://MYDB') s = create_session(bind=e) m = MetaData(bind=e,reflect=True,schema=schema) Base = declarative_base(bind=e,metadata=m) t = Table(name,m) m.remove(t) t.drop(checkfirst=True) sqld = SQLDatabase(e, schema ...