Re: Django 1.5.1 - Mysql - Setting

2014-09-12 Thread Muhammad Ahmed
Thank you very much Collin Anderson. On Friday, 12 September 2014 21:25:42 UTC+5, Collin Anderson wrote: > > https://pip.readthedocs.org/en/latest/quickstart.html > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: Django 1.5.1 - Mysql - Setting

2014-09-12 Thread Collin Anderson
https://pip.readthedocs.org/en/latest/quickstart.html -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this

Re: Django 1.5.1 - Mysql - Setting

2014-09-12 Thread Muhammad Ahmed
Thank you very much Fred for your detailed answer. I have never used pip. I will be pleased if you kindly provide a reference / tutorial link to understand pip. Or the direct link to adapter. I am using Win7 x86. Thanks indeed for your help. On Thursday, 11 September 2014 21:34:25 UTC+5

Re: Django 1.5.1 - Mysql - Setting

2014-09-11 Thread Fred Stluka
Ahmed, For connecting Django to MySQL, I use MySQL-python, installed via pip as: pip install MySQL-python My settings file contains: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME' : 'name of our database', 'USER' : 'username

Django 1.5.1 - Mysql - Setting

2014-09-11 Thread Muhammad Ahmed
Hi, I have been trying to launch my Django Model using a tutorial. but unfortunately the tutorial is about Django 1.1. Kindly guide me that what configuration (in setting.py) will be required if I use Python27 / Django 1.5.1 with Mysql. please also guide towards the appropriate "MySql Adopto