0
votes
2answers
46 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
38 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
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 …
0
votes
1answer
39 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 …
1
vote
5answers
68 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
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
2answers
57 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
3answers
116 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 …
0
votes
2answers
66 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
2answers
147 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
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
86 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. …
5
votes
4answers
594 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 …
6
votes
2answers
113 views
Unique BooleanField value in Django?
Suppose my models.py is like so:
class Character(models.Model):
name = models.CharField(max_length=255)
is_the_chosen_one = models.BooleanField()
I want only one of my Character instances …
2
votes
1answer
83 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 , …
