Re: Model Saving Error

2015-02-12 Thread Ulisses Cruz
> > Thanks > The problem was solved when I used another backend from: > http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python The backend I was using was not appropriate for python 3 that I am using but when I used: mysqlclient-1.3.5-cp34-none-win32.whl it start working. -- You received t

Model Saving Error

2015-02-12 Thread Ulisses Cruz
Hello, I'm having dificulty with saving data to a MySQL database. I created a simple model: *class Music(models.Model):* * title = models.CharField(max_length=100)* * slug = models.SlugField(null=True)* * content = models.FileField(upload_to="music", null=True, blank=True)* * def __str__(self):* *