What should the Django DATABASE settings be in settings.py when you are using Apache2, Python, and Django on Ubuntu 12.04 and MSSQL on another server? -


what should django database settings in settings.py when using apache2, python, , django on ubuntu 12.04 accessing ms sql database on server? settings are:

engine: 'sql_server.pyodbc', 'name': 'databasename', 'user': 'databaseusername', 'password':'databaseuserpwd', 'host':'serverid\sql2008_r2', 'port':'postnumber',  'options': {'driver': 'freetds', 'host_is_server':true, ''extra_params':"tds_version-8.0"} 


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -