1
vote
2answers
33 views
Django: several tables for one model.
I have a model "Messages" which i use to store messages throughout the site. These are messages in discussions, private messages and probably chat. They are all stored in 1 table. I wonder if it will …
0
votes
2answers
47 views
Getting error when INSERT into MySQL.
_mysql_exceptions.Warning: Incorrect string value: '\xE7\xB9\x81\xE9\xAB\x94...' for column 'html' at row 1
def getSource(theurl, moved = 0):
if moved == 1:
theurl = …
0
votes
2answers
39 views
Django, Import tables as models
I would like to know if it's possible to use django over existing db tables that defines the models.
Instead of defining models in order to create db tables
0
votes
1answer
40 views
Interacting with external DB via Django
I'm working on a Django app that interacts with an existing database (think ERP/transaction type data) to perform analysis. There will be minimal/no updating of the existing database mainly reading …
2
votes
3answers
76 views
What’s the best way to create a ‘history’ type model in django?
I'd like to create a feature for my Django app similar to Django admin's 'Recent Actions', in order to store history information on my other models.
For example say I have two models called Book and …
1
vote
2answers
49 views
Django modify DATABASE_HOST at runtime
I am trying to switch between 2 mysql servers at runtime. I do not need to maintain both connections alive all the time.
This is what I am doing
from django.conf import settings
from django.db …
1
vote
5answers
70 views
Django: Ordering objects by their children’s attributes
Consider the models:
class Author(models.Model):
name = models.CharField(max_length=200, unique=True)
class Book(models.Model):
pub_date = models.DateTimeField()
author = …
1
vote
2answers
58 views
Django db reset without loading fixtures
Is there an easy way to reset a django database (i.e. drop all data/tables, create new tables and create indexes) without loading fixture data afterwords? What I want to have is just an empty database …
0
votes
1answer
44 views
Should I normalize the intermediary model in django?
Say I have four pair-wise M2M related models: A, B, C, D. I have created an intermediary model ABCD to establish relationships between them. If there are many duplicate column pairs in the database, …
0
votes
2answers
67 views
Foreign key needs a value from the key’s table to match a column in another table.
Pardon the excessive amount of code, but I'm not sure if I can explain my question otherwise
I have a Django project that I am working on which has the following:
class Project(models.Model):
name …
0
votes
3answers
118 views
Django database scalability
Hi ALL:
We have a new django powered project which have a potential heavy-traffic characteristic(means a heavy db interaction). So we need to consider the database scalability in advance. With some …
2
votes
1answer
85 views
Django SAAS projects
Hi Djangonauts,
I am almost done developing a Django project (with a few pluggable apps).
I want to offer this project as a SaaS (something like 37signals.com).
i.e: customer1.product1.com , …
0
votes
2answers
148 views
psycopg2 disconnects from server
I've been tackling this for a while. I setup a completely new machine. I've installed a fresh copy of postgresql and all my other dependencies. Basically, I get these database disconnections at random …
0
votes
2answers
88 views
URLs stored in database for Django site
Hi guys,
I've produced a few Django sites but up until now I have been mapping individual views and URLs in urls.py.
Now I've tried to create a small custom CMS but I'm having trouble with the URLs. …
0
votes
1answer
29 views
Complex ordering in Django
I have a Django model for Cat which has a foreign key Dog. The Dog model has a date key timestamp. I want to order the cats, using Cat.objects.order_by, according to the timestamps of their respective …
