├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.cfg ├── setup.py └── sqlserver_pymssql ├── __init__.py ├── base.py └── compiler.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | build 4 | dist 5 | MANIFEST 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-pymssql/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-pymssql/HEAD/README.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-pymssql/HEAD/setup.py -------------------------------------------------------------------------------- /sqlserver_pymssql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sqlserver_pymssql/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-pymssql/HEAD/sqlserver_pymssql/base.py -------------------------------------------------------------------------------- /sqlserver_pymssql/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-pymssql/HEAD/sqlserver_pymssql/compiler.py --------------------------------------------------------------------------------