mhrabbi

mssql django connection

Feb 8th, 2021 (edited)
1,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.45 KB | None | 0 0
  1. # MSSQL Database Connection Windows
  2. DATABASES = {
  3.     'default': {
  4.         'ENGINE': 'sql_server.pyodbc',
  5.         'NAME': 'mydb',  #created database name
  6.         'USER': 'user',  
  7.         'PASSWORD': 'pass',
  8.         'HOST': 'HOST\Name',
  9.         'PORT': '',
  10.  
  11.         'OPTIONS': {
  12.             'driver': 'SQL Server Native Client 11.0',
  13.         },
  14.     },
  15. }
  16.  
  17. #ubuntu
  18.  
  19. 'OPTIONS': {
  20.             'driver': 'ODBC Driver 17 for SQL Server',
  21.         },
Add Comment
Please, Sign In to add comment