Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-17 Thread Tameen Malik
Elio -- Have you used UTF-8 *By default, with a UTF-8 database, MySQL will use the utf8_general_ci collation. This results in all string equality comparisons being done in a case-insensitive manner. That is, "Fred" and "freD" are considered equal at the database level. If you have a unique co

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-15 Thread Ramón Carrillo
Hi, You should use exactly the same parameters from your test_sqlany.py in your DATABASES dictionary. The sqlany-django documentation states that "(eg. ENG, which is required for client versions prior to v12.0.0)". In the DATABASES dictionary, you seem to misunderstand the ENG option with PORT

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-15 Thread Tameen Malik
Elio. have you define your database in your local settings.py file? -- 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

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-15 Thread Tameen Malik
Elio. have you defined your database in your local settings.py file? -- 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.

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-15 Thread Andreas Kuhne
Hi again, Unfortunately I don't have any experience with sqlanywhere. However, I googled and came up with the following information: https://code.google.com/p/sqlany-django/wiki/GettingStarted. In your databases dict you specify 'OPTIONS': {'eng': '2638'}, I think that should be : 'OPTIONS': {'eng'

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Elio Gerson Clímaco Herrera
Thanks to Vernon and Andreas, for your answers, Yes Andreas my server is running on the same computer as my django server but I, changed my database settings like this and I, have the same error "Database server not found" DATABASES = { 'default': { 'ENGINE': 'sqlany_django', 'NAME': 'django

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Andreas Kuhne
Just a wild guess here. Checking your databases dictionary, you have set : 'HOST': 'django'. I am guessing your server is running on the same computer as your django server? In that case you should change the line to : 'HOST': 'localhost', or just delete the line entirely (default is localhost). I

Re: I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Vernon D. Cole
You would be best advised to contact whoever supports that driver. Their contact information ought to be on their github site. My guess (as a maintainer of a different 3rd party Windows database driver) is that they have not upgraded to django 1.6 yet. But that's only a wild guess. The other s

I can't connect Django with SQL Anywhere 11 Database

2014-04-14 Thread Elio Gerson Clímaco Herrera
Hi everybody... I need connect *django *with *sql anywhere 11 database*, i follow the instructions on the page "SQL Anywhere Django Driver" from github. I created the database with this command C:\>dbinit -z UCA django.db --> (database created successful) I started the Database Serv