On 9/13/06, Hawkeye <[EMAIL PROTECTED]> wrote:
>
> Nevermind...
>
> Looks like Django defaults to the default MySQL table type (MyISAM),
> which doesn't support transactions.
>
> My fault completely.

You can change the default table type in your MySQL server
configuration (/etc/mysql/my.cnf). You should probably also consider
changing your default character set (Django seems to prefer UTF-8).

[mysqld]
character-set-server            = utf8
default-character-set           = utf8
default-table-type          = innodb

You can also set the default character set on your database after you
create it but before creating tables.
-- 
This message has been scanned for memes and
dangerous content by MindScanner, and is
believed to be unclean.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to