Trying to set up a connection from Django to a MySQL cluster. I've never
done this before, so any guidance you could provide would be excellent.

I know that DATABASE_OPTIONS can be used in the settings.py file, just not
sure if that's the right course of action or even how to write this into the
DATABASE_OPTIONS dict. I know that any query on the DB needs to specify the
engine as NDBCLUSTER like so:

mysql> CREATE TABLE x (
    ->     id int(11) NOT NULL AUTO_INCREMENT,
    ->     c char(10) DEFAULT NULL,
    ->     PRIMARY KEY (id)
    ->   ) ENGINE=NDBCLUSTER DEFAULT CHARSET=utf8;

thanks in advance!

Rich

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to