Skip to content

Commit b1748bc

Browse files
Merge branch 'dev' of github.com:microsoft/mssql-django into dev
2 parents 52509eb + 9e30d69 commit b1748bc

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

README.md

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,16 @@ We hope you enjoy using the MSSQL-Django 3rd party backend.
2626

2727
## Installation
2828

29-
1. Install pyodbc and Django
29+
1. Install pyodbc 3.0 (or newer) and Django 2.2 (or newer)
3030

31-
2. Install django-mssql-backend ::
31+
2. Install mssql-django ::
3232

33-
pip install django-mssql-backend
33+
pip install mssql-django
3434

35-
3. Now you can point the ``ENGINE`` setting in the settings file used by
36-
your Django application or project to the ``'mssql'``
37-
module path ::
35+
3. Set the ``ENGINE`` setting in the settings.py file used by
36+
your Django application or project to ``'mssql'``
3837

39-
'ENGINE': 'mssql'
40-
41-
## Regex Support
42-
43-
django-mssql-backend supports regex using a CLR .dll file. To install it, run ::
44-
45-
python manage.py install_regex_clr {database_name}
38+
``'ENGINE': 'mssql'``
4639

4740
## Configuration
4841

@@ -223,9 +216,14 @@ Here is an example of the database settings:
223216
## Limitations
224217

225218
The following features are currently not supported:
226-
219+
- mssql-django does not support SQL-based regex commands
227220
- Altering a model field from or to AutoField at migration
228221

222+
## Future Plans
223+
224+
The following features and additions are planned:
225+
- install instructions for CLR .dll file to add SQL-based regex command support to SQL Server or Azure SQL DB
226+
229227
## Contributing
230228

231229
This project welcomes contributions and suggestions. Most contributions require you to agree to a
@@ -250,4 +248,4 @@ This project may contain trademarks or logos for projects, products, or services
250248
trademarks or logos is subject to and must follow
251249
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
252250
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
253-
Any use of third-party trademarks or logos are subject to those third-party's policies.
251+
Any use of third-party trademarks or logos are subject to those third-party's policies.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name='mssql-django',
22-
version='2.8.1',
22+
version='1.0.a1',
2323
description='Django backend for Microsoft SQL Server',
2424
long_description=open('README.md').read(),
2525
author='Microsoft',

0 commit comments

Comments
 (0)