0
votes
2answers
23 views
django tools for pushing preinstalled data to database
Hi all,
It there a tool for django to install some static data (necessary data to have application runing ) to database?
./manage.py syncdb will make the database schema i db, some tool for pushing …
0
votes
2answers
35 views
Django - Designing Model Relationships - Admin interface and Inline
heya,
I think my understanding of Django's FK and admin is a bit faulty, so I'd value any input on how to model the below case.
Firstly, we have generic Address objects. Then, we have User's, who …
1
vote
4answers
68 views
How to disable Django query cache ?
In my Django application, I repeatedly run the same query on my database (e.g. every 10 seconds).
I then create an MD5 sum over the queryset I receive and compare that to the MD5 sum I created in the …
1
vote
4answers
339 views
Search functionality for Django
I'm developing a web app using Django, and I'll need to add search functionality soon. Search will be implemented for two models, one being an extension of the auth user class and another one with the …
1
vote
1answer
48 views
How do I migrate data from one model to another using South in Django?
I created a Django app that had its own internal voting system and a model called Vote to track it. I want to refactor the voting system into its own app so I can reuse it. However, the original app …
1
vote
4answers
95 views
Django - Populating a database for test purposes.
I need to populate my database with a bunch of dummy entries (around 200+) so that I can test the admin interface I've made and I was wondering if there was a better way to do it. I spent the better …
1
vote
2answers
46 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 …
1
vote
3answers
1k views
Django: How do I model a tree of heterogeneous data types?
I need to store a tree data structure in my database, for which I plan on using django-treebeard or possibly django-mptt. My source of confusion is that each node could be one of three different …
0
votes
2answers
52 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
41 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
42 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
82 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
59 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 …
5
votes
4answers
655 views
Django persistent database connection.
Hi folks,
I'm using django with apache and mod_wsgi and PostgreSQL (all on same host), and I need to handle a lot of simple dynamic page requests (hundreds per second). I faced with problem that the …
1
vote
5answers
78 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 = …
