-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
django-sqlserver doesn't run on current version #25
Comments
I am also wondering if this project is still maintained/supported, since its last release was in 2017. I am considering |
I have used python-tds quite extensively with and without django over the last few years. It seems to do the job very well. When using django, I just use the sql query functions of python-tds directly instead of using the django integration. |
Thanks for replying to a 4-year old issue! I can use SQL where I need to but would prefer to let Django do most of the work. Unfortunately the choice to go with MS SQL Server wasn't mine, so I've been struggling a bit as a result. Aside from the 'fail-over' function, |
I have an idea to trick |
I have been using your python-tds in all of my projects that have to connect to mssql server ever since I found it. Love the fact that it is pure python.
I am just starting with django and wanted to use sqlserver as the backend driver, but it doesn't seem to work with the current version (I have django 3.1).
The error is:
ImportError: cannot import name 'six' from 'django.utils'
If I modify that file to import six directly (it is installed as a dependency for my version of django) then I get:
AttributeError: module 'six' has no attribute 'memoryview'
Is the project still being maintained? If there are no plans to update it, would you be willing to offer any guidance on how it can be done?
The text was updated successfully, but these errors were encountered: