active questions tagged django+database - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T12:58:29Zhttp://stackoverflow.com/feeds/tag/django+databasehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857527/django-populating-a-database-for-test-purposes1Django - Populating a database for test purposes.cornjuliox2009-12-07T02:48:13Z2009-12-07T05:29:22Z
<p>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 part of my day yesterday trying to fill it in by hand (i.e by wrapping stuff like this my_model(title="asdfasdf", field2="laksdj"...) in a bunch of "for x in range(0,200):" loops) and gave up because it didn't work the way I expected it to. I think <a href="http://docs.djangoproject.com/en/dev/topics/serialization/#topics-serialization" rel="nofollow" title="this">this</a> is what I need to use, but don't you need to have (existing) data in the database for this to work?</p>
http://stackoverflow.com/questions/1857810/how-do-i-migrate-data-from-one-model-to-another-using-south-in-django0How do I migrate data from one model to another using South in Django?Soviut2009-12-07T04:26:36Z2009-12-07T04:26:36Z
<p>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 is in production and I need to create a data migration that will take all the Votes and transplant them into the separate app.</p>
<p>How can I get two apps to participate in a migration so that I have access to both their models? Unfortunately, the original and separate apps both have a model named Vote now, so I need to be aware of any conflicts.</p>
http://stackoverflow.com/questions/1850435/django-several-tables-for-one-model1Django: several tables for one model. barin2009-12-04T23:52:13Z2009-12-05T00:01:12Z
<p>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 be faster if i spread messages among several models and tables. 1 for chat, one for discussions and so on. </p>
<p>So should i keep all messages in 1 table/model or create several identical models/tables?</p>
http://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types1Django: How do I model a tree of heterogeneous data types? Corey2008-11-14T20:14:56Z2009-12-03T01:13:52Z
<p>I need to store a tree data structure in my database, for which I plan on using <a href="http://code.google.com/p/django-treebeard/" rel="nofollow">django-treebeard</a> or possibly <a href="http://code.google.com/p/django-mptt/" rel="nofollow">django-mptt</a>. My source of confusion is that each node could be one of three different possible types: root nodes will always be a type A entity, leaf nodes a type C entity, and anything in between will be a type B entity. I would like to know the best way to model this situation.</p>
<p><strong>update:</strong> I first tried model inheritance, and I think that this could be the best way to go. Unfortunately django-treebeard's public API isn't really designed to handle this. I ended up getting it to work with GenericForeignKey. Thank you very much for the answers.</p>
http://stackoverflow.com/questions/1808455/getting-error-when-insert-into-mysql0Getting error when INSERT into MySQL.alex2009-11-27T12:21:54Z2009-11-27T13:31:03Z
<pre><code>_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 = urllib2.urlopen(theurl).geturl()
urlReq = urllib2.Request(theurl)
urlReq.add_header('User-Agent',random.choice(agents))
urlResponse = urllib2.urlopen(urlReq)
htmlSource = urlResponse.read()
return htmlSource
new_u = Url(source_url = source_url, source_url_short = source_url_short, source_url_hash = source_url_hash, html = htmlSource)
new_u.save()
</code></pre>
<p><strong>Why is this happening?
I am basically downloading URL of a page...and then saving it to a database using Django.</strong></p>
<p>It only happens sometimes....and sometimes it works fine.</p>
<p><strong>Edit: it seems like I have to set the database to UTF-8? What is the command to do that?</strong></p>
http://stackoverflow.com/questions/1789191/django-import-tables-as-models0Django, Import tables as modelsmnml2009-11-24T10:28:24Z2009-11-24T13:32:06Z
<p>I would like to know if it's possible to use django over existing db tables that defines the models.</p>
<p>Instead of defining models in order to create db tables</p>
http://stackoverflow.com/questions/1778295/interacting-with-external-db-via-django0Interacting with external DB via DjangoTerry J2009-11-22T09:47:22Z2009-11-22T10:51:16Z
<p>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 data in. Its just a simple small setup so no replication etc. issues to think about re. updating.</p>
<p>The analysis would result in new records created within the Django Model.</p>
<p>Currently the existing DB runs on PostgreSQL.</p>
<p>I am aware of Alex Gaynor's GSOC multidb code which, from what I gather is ticket #1142 which has no patch yet to trunk. </p>
<p>So from what I gather there are three options I can see:</p>
<p>1) Point Django db to the same db as the ERP and let it create the tables it needs within it (all the ERP tables have a prefix so there would be no collision) however this strikes me as hackey and a recipe for disaster.</p>
<p>2) Create a new db for Django and automatically copy over the required tables. Better but I cant update, thought I can probably live with this.</p>
<p>3) Try out the multidb patch.</p>
<p>Are there other better ideas out there? I'm leaning towards at least trying out the multidb patch but I'm a little worried about stability and forwards compatibility. </p>
http://stackoverflow.com/questions/1752585/whats-the-best-way-to-create-a-history-type-model-in-django2What's the best way to create a 'history' type model in django?hora2009-11-17T23:23:02Z2009-11-18T16:24:50Z
<p>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.</p>
<p>For example say I have two models called Book and Author. I want to have a third model that stores information such as what action was performed on a given object in a model (add, modify, delete, etc.) by who and when.</p>
<p>Who, when and the action are easy, I'm just unsure about how to store information regarding what object the action was performed on.</p>
<p>My initial idea was to have a 'Transactions' model that would store this information, and both my Book and Author models could have a ForeignKey relation to it. However, if I delete the given book or author, then its transaction history is also deleted and I have no record that this object was indeed deleted.</p>
<p>I've been thinking of other possible solutions, but I thought I'd ask for more experienced opinions here first. How should I approach this problem and what are some reasonable solutions to it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1704746/django-modify-databasehost-at-runtime1Django modify DATABASE_HOST at runtimeLaurent Luce2009-11-09T23:53:40Z2009-11-10T01:47:34Z
<p>I am trying to switch between 2 mysql servers at runtime. I do not need to maintain both connections alive all the time.</p>
<p>This is what I am doing</p>
<pre><code>from django.conf import settings
from django.db import connection
from django.contrib.auth.models import User
connection.close()
setattr(settings, 'DATABASE_HOST', 'mysql1.com')
list1 = User.objects.all()
connection.close()
setattr(settings, 'DATABASE_HOST', 'mysql2.com')
list2 = User.objects.all()
</code></pre>
<p>I have the following settings.py:</p>
<pre><code>DATABASE_HOST = '' # localhost
DATABASE_NAME = test
...
</code></pre>
<p>The database name is the same on all servers and only the content of each tables differ.</p>
<p>I should get list1 != list2 as the users are different on both servers.</p>
<p>The issue is that I always get the list of users from the default database defined in settings.py (which is running on localhost) instead of the one from mysql 1 server and then from mysql 2 server.</p>
<p>Any idea what I am doing wrong here?</p>
<p>Laurent</p>
http://stackoverflow.com/questions/1125504/django-persistent-database-connection5Django persistent database connection.Mike TK2009-07-14T13:47:00Z2009-11-08T22:15:33Z
<p>Hi folks,</p>
<p>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 bottleneck is that a django don't have persistent database connection and reconnects on each requests (that takes near 5ms).
While doing a benchmark I got that with persistent connection I can handle near 500 r/s while without I get only 50 r/s.</p>
<p>Anyone have any advice? How to modify django to use persistent connection? Or speed up connection from python to DB</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1692322/django-ordering-objects-by-their-childrens-attributes1Django: Ordering objects by their children's attributesAdi2009-11-07T07:32:21Z2009-11-07T19:18:11Z
<p>Consider the models:</p>
<pre><code>class Author(models.Model):
name = models.CharField(max_length=200, unique=True)
class Book(models.Model):
pub_date = models.DateTimeField()
author = models.ForeignKey(Author)
</code></pre>
<p>Now suppose I want to order all the books by, say, their pub_date. I would use <code>order_by('pub_date')</code>. But what if I want a list of all authors ordered according to who most recently published books?</p>
<p>It's really very simple when you think about it. It's essentially:</p>
<ul>
<li>The author on top is the one who most recently published a book</li>
<li>The next one is the one who published books not as new as the first,</li>
<li>So on etc.</li>
</ul>
<p>I could probably hack something together, but since this could grow big, I need to know that I'm doing it right.</p>
<p>Help appreciated!</p>
<p><strong>Edit:</strong> Lastly, would the option of just adding a new field to each one to show the date of the last book and just updating that the whole time be better?</p>
http://stackoverflow.com/questions/1645310/django-db-reset-without-loading-fixtures1Django db reset without loading fixturesMichael2009-10-29T17:26:17Z2009-10-29T18:09:47Z
<p>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 because all data is loaded from another source (a kind of a post-processed backup).</p>
<p>I know that this could be achieved by piping the output of the <code>manage sql...</code> commands to <code>manage dbshell</code>, but this relies on <code>manage dbshell</code>and is kind of hacky...</p>
<p>Are there any other ways to do this?</p>
<p>Edit:
<code>manage reset</code> will do it, but is there a command like <code>reset</code> that doesn't need the application names as parameters?</p>
http://stackoverflow.com/questions/1217710/django-relation-doesnt-work0Django relation doesnt work?unknown (google)2009-08-01T23:02:17Z2009-10-28T17:00:03Z
<p>I have the following in models:</p>
<pre><code> class Companies(models.Model):
ComName = models.CharField(max_length=255)
ComURL = models.CharField(max_length=1024,null=True)
class Products(models.Model):
PrName = models.CharField(max_length=255)
PrCompany = models.ForeignKey(Companies)
</code></pre>
<p>and the following in the template:</p>
<pre><code> {% if products %}
var markers = [
{% for product in products %}{"url":"{{ product.PrCompany.ComURL }}","name":"{{ product.PrName }}"},{% endfor %}
]
{% endif %}
{% endblock %}
</code></pre>
<p>but the output i get is:</p>
<pre><code>var markers = [
{"url":"None","name":"Samsung GT-S7350"},{"url":"None","name":"SonyEricsson W395"},{"url":"None","name":"Nokia E75"},
]
</code></pre>
<p>I look in the database, and each entry has a value in there, which is not empty.
Why does it say "None" ?
Something is not right in the relation?</p>
http://stackoverflow.com/questions/1455126/unique-booleanfield-value-in-django6Unique BooleanField value in Django?sampablokuper2009-09-21T15:30:52Z2009-10-27T02:09:17Z
<p>Suppose my models.py is like so:</p>
<pre><code>class Character(models.Model):
name = models.CharField(max_length=255)
is_the_chosen_one = models.BooleanField()
</code></pre>
<p>I want only one of my <code>Character</code> instances to have <code>is_the_chosen_one == True</code> and all others to have <code>is_the_chosen_one == False</code> . How can I best ensure this uniqueness constraint is respected?</p>
<p>Top marks to answers that take into account the importance of respecting the constraint at the database, model and (admin) form levels!</p>
http://stackoverflow.com/questions/1614010/should-i-normalize-the-intermediary-model-in-django0Should I normalize the intermediary model in django?Dingle2009-10-23T14:55:37Z2009-10-23T16:03:41Z
<p>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, is it
a normal practice to normalize the intermediary model into multiple models?</p>
<p>What I am concerned about are:
1. Breaking down ABCD will clutter the models.py
2. Are multiple 2-column tables better than a four column table (w/ duplicate column pairs)? </p>
http://stackoverflow.com/questions/1601586/foreign-key-needs-a-value-from-the-keys-table-to-match-a-column-in-another-table0Foreign key needs a value from the key's table to match a column in another table.Christopher W. Allen-Poole2009-10-21T15:21:24Z2009-10-22T13:02:19Z
<p>Pardon the excessive amount of code, but I'm not sure if I can explain my question otherwise</p>
<p>I have a Django project that I am working on which has the following:</p>
<pre><code>class Project(models.Model):
name = models.CharField(max_length=100, unique=True)
dir = models.CharField(max_length=300, blank=True, unique=True )
def __unicode__(self):
return self.name;
class ASClass(models.Model):
name = models.CharField(max_length=100)
project = models.ForeignKey(Project, default=1)
def __unicode__(self):
return self.name;
class Entry(models.Model):
project = models.ForeignKey(Project, default=1)
asclasses = models.ManyToManyField(ASClass)
</code></pre>
<p>Here's the question:</p>
<p>Is there a way, without overriding the save function of the model, to make it so that entries only allow classes which have the same project ID?</p>
<p><strong>******************************************************<em></strong>Begin Edit</em><strong>*****************************************************</strong><br/>
To be clear, I am not opposed to overriding save. I actually already overrode it in this case to provide for a property not listed above. I already know how to answer this question by simply extending that override, so simply saying, "You could override save" won't be helpful.</p>
<p>I'm wondering if there isn't a better way to accomplish this, if there is a Django native implementation, and if the key type already exists.</p>
<p><strong>******************************************************<em></strong>End Edit</em><strong>******************************************************</strong></p>
<p>Is there a way to do this in Postgresql as well?</p>
<p>(For good measure, here is the code to create the tables in the Postgresql)
This has created the following tables:</p>
<pre><code>CREATE TABLE blog_asclass
(
id serial NOT NULL,
"name" character varying(100) NOT NULL,
project_id integer NOT NULL,
CONSTRAINT blog_asclass_pkey PRIMARY KEY (id),
CONSTRAINT blog_asclass_project_id_fkey FOREIGN KEY (project_id)
REFERENCES blog_project (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION DEFERRABLE INITIALLY DEFERRED
)
CREATE TABLE blog_entry
(
id serial NOT NULL,
project_id integer NOT NULL,
build_date timestamp with time zone NOT NULL,
CONSTRAINT blog_entry_pkey PRIMARY KEY (id),
CONSTRAINT blog_entry_project_id_fkey FOREIGN KEY (project_id)
REFERENCES blog_project (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION DEFERRABLE INITIALLY DEFERRED
)
CREATE TABLE blog_entry_asclasses
(
id serial NOT NULL,
entry_id integer NOT NULL,
asclass_id integer NOT NULL,
CONSTRAINT blog_entry_asclasses_pkey PRIMARY KEY (id),
CONSTRAINT blog_entry_asclasses_asclass_id_fkey FOREIGN KEY (asclass_id)
REFERENCES blog_asclass (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION DEFERRABLE INITIALLY DEFERRED,
CONSTRAINT blog_entry_asclasses_entry_id_fkey FOREIGN KEY (entry_id)
REFERENCES blog_entry (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION DEFERRABLE INITIALLY DEFERRED,
CONSTRAINT blog_entry_asclasses_entry_id_key UNIQUE (entry_id, asclass_id)
)
CREATE TABLE blog_project
(
id serial NOT NULL,
"name" character varying(100) NOT NULL,
dir character varying(300) NOT NULL,
CONSTRAINT blog_project_pkey PRIMARY KEY (id),
CONSTRAINT blog_project_dir_key UNIQUE (dir),
CONSTRAINT blog_project_name_key UNIQUE (name)
)
</code></pre>
http://stackoverflow.com/questions/1587344/django-database-scalability0Django database scalabilityTower Joo2009-10-19T07:19:24Z2009-10-19T20:10:22Z
<p>Hi ALL:</p>
<p>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 researches, the following questions are still not clear to us:</p>
<ol>
<li>coarse-grained: how to specify one db table(a django model) to a specific db(maybe in another server)?</li>
<li>fine-grained: how to specify a group of table rows to a specific db(so-called sharding, also can in another db server)?</li>
<li>how to specify write and read to different db?(which will be helpful for future mysql master/slave replication)</li>
</ol>
<p>We are finding the solution with:</p>
<ol>
<li>be transparent to application program(means we don't need to have additional codes in views.py)</li>
<li>should be in ORM level(means only needs to specify in models.py)</li>
<li>compatible with the current(or future) django release(to keep a minimal change for future's upgrading of django)</li>
</ol>
<p>I'm still doing the research. And will share in this thread later if I've got some fruits.</p>
<p>Hope anyone with the experience can answer. Thanks.</p>
http://stackoverflow.com/questions/1030270/race-conditions-in-django3Race conditions in djangoFragsworth2009-06-23T01:53:37Z2009-10-19T02:18:31Z
<p>Here is a simple example of a django view with a potential race condition:</p>
<pre><code># myapp/views.py
from django.contrib.auth.models import User
from my_libs import calculate_points
def add_points(request):
user = request.user
user.points += calculate_points(user)
user.save()
</code></pre>
<p>The race condition should be fairly obvious: A user can make this request twice, and the application could potentially execute <code>user = request.user</code> simultaneously, causing one of the requests to override the other.</p>
<p>Suppose the function <code>calculate_points</code> is relatively complicated, and makes calculations based on all kinds of weird stuff that cannot be placed in a single <code>update</code> and would be difficult to put in a stored procedure.</p>
<p>So here is my question: What kind of locking mechanisms are available to django, to deal with situations similar to this?</p>
http://stackoverflow.com/questions/280075/atomic-operations-in-django11Atomic operations in Django?Tony Arkles2008-11-11T05:14:10Z2009-10-19T02:10:18Z
<p>I'm trying to implement (what I think is) a pretty simple data model for a counter:</p>
<pre><code>class VisitorDayTypeCounter(models.Model):
visitType = models.CharField(max_length=60)
visitDate = models.DateField('Visit Date')
counter = models.IntegerField()
</code></pre>
<p>When someone comes through, it will look for a row that matches the visitType and visitDate; if this row doesn't exist, it will be created with counter=0.</p>
<p>Then we increment the counter and save.</p>
<p>My concern is that this process is totally a race. Two requests could simultaneously check to see if the entity is there, and both of them could create it. Between reading the counter and saving the result, another request could come through and increment it (resulting in a lost count).</p>
<p>So far I haven't really found a good way around this, either in the Django documentation or in the tutorial (in fact, it looks like the tutorial has a race condition in the Vote part of it).</p>
<p>How do I do this safely?</p>
http://stackoverflow.com/questions/1573579/psycopg2-disconnects-from-server0psycopg2 disconnects from serverironfroggy2009-10-15T16:38:27Z2009-10-16T18:58:24Z
<p>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 times. I can perform identical requests and either it works or it doesn't. Very nondeterministic in outward appearance. Watching logs at Postgresql, it doesn't even get a connection. Now, I would expect that if it never connected I would get this problem when establishing the connection and getting the cursor, but I get it when trying to actually use the connection later. Given the traceback below, I would expect to see a connection made in the pg logs, and then disconnected for some reason later. I don't, so I wonder if there is some clue in that mismatch.</p>
<pre><code>Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/core/handlers/wsgi.py", line 242, in __call__
response = self.get_response(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/core/handlers/base.py", line 73, in get_response
response = middleware_method(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/middleware/locale.py", line 16, in process_request
language = translation.get_language_from_request(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/utils/translation/__init__.py", line 97, in get_language_from_request
return real_get_language_from_request(request)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/utils/translation/trans_real.py", line 349, in get_language_from_request
lang_code = request.session.get('django_language', None)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/contrib/sessions/backends/base.py", line 63, in get
return self._session.get(key, default)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/contrib/sessions/backends/base.py", line 172, in _get_session
self._session_cache = self.load()
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/contrib/sessions/backends/db.py", line 16, in load
expire_date__gt=datetime.datetime.now()
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/manager.py", line 120, in get
return self.get_query_set().get(*args, **kwargs)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/query.py", line 300, in get
num = len(clone)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/query.py", line 81, in __len__
self._result_cache = list(self.iterator())
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/query.py", line 238, in iterator
for row in self.query.results_iter():
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/sql/query.py", line 287, in results_iter
for rows in self.execute_sql(MULTI):
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/models/sql/query.py", line 2369, in execute_sql
cursor.execute(sql, params)
File "/usr/local/lib/python2.6/dist-packages/Django-1.1-py2.6.egg/django/db/backends/util.py", line 19, in execute
return self.cursor.execute(sql, params)
OperationalError: server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
</code></pre>
http://stackoverflow.com/questions/1575607/django-saas-projects2Django SAAS projectsunknown (google)2009-10-15T23:05:27Z2009-10-15T23:46:00Z
<p>Hi Djangonauts,</p>
<p>I am almost done developing a Django project (with a few pluggable apps).</p>
<p>I want to offer this project as a SaaS (something like 37signals.com).</p>
<p>i.e: customer1.product1.com , customer2.product2.com etc</p>
<p>product1 could be the basecamp
product2 could be highrise
and so on.</p>
<p>I want to know how the project should be structured for these products.</p>
<p>Should there be a single project under which all products will be an application.
---- OR ----
Should I be making different projects for all the products. </p>
<p>Also interms of database.. should all the products look into a single database or we should have seperate databases for each product.</p>
<p>I am looking out for the most efficient and scalable way to do this.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1563088/urls-stored-in-database-for-django-site0URLs stored in database for Django siteadam.ec2009-10-13T21:43:48Z2009-10-14T22:08:29Z
<p>Hi guys,</p>
<p>I've produced a few Django sites but up until now I have been mapping individual views and URLs in urls.py.</p>
<p>Now I've tried to create a small custom CMS but I'm having trouble with the URLs. I have a database table (SQLite3) which contains code for the pages like a column for header, one for right menu, one for content.... so on, so on. I also have a column for the URL. How do I get Django to call the information in the database table from the URL stored in the column rather than having to code a view and the URL for every page (which obviously defeats the purpose of a CMS)?</p>
<p>If someone can just point me at the right part of the docs or a site which explains this it would help a lot.</p>
<p>Thanks all.</p>
http://stackoverflow.com/questions/1550435/complex-ordering-in-django0Complex ordering in Djangocool-RR2009-10-11T11:05:45Z2009-10-11T11:32:09Z
<p>I have a Django model for <code>Cat</code> which has a foreign key <code>Dog</code>. The <code>Dog</code> model has a date key <code>timestamp</code>. I want to order the cats, using <code>Cat.objects.order_by</code>, according to the timestamps of their respective dogs. How do I do that?</p>
http://stackoverflow.com/questions/622680/bi-with-django1BI with Django?Helmut2009-03-07T23:03:21Z2009-10-03T05:08:52Z
<p>Is there a way to develop Bi (Business Intelligence) solutions with Django? Therefore it should be possible to define models with more than one Datasource.
Is anybody out there who has experienced BI with Django?
How could it work ?</p>
http://stackoverflow.com/questions/1315447/django-how-to-get-only-2-object-for-a-combination-of-fields-with-a-queryset2Django - How to get only 2 object for a combination of fields with a querysetskyl2009-08-22T07:58:04Z2009-10-02T15:23:09Z
<p>If I have</p>
<pre><code>Model.objects.all()
</code></pre>
<p>I want to get only one object for any content_object=foo, object_id=N. How can I do that? Say I am ordering by -datetime. If I can get only one object in the queryset for any content_type=foo, object_id=N ... it should be the latest.. How to specify that I only want 1 object for any combination of content_object and object_id?</p>
<pre><code>class CheckIn(models.Model):
...
owner = models.ForeignKey('auth.User')
datetime = models.DateTimeField(editable=False, auto_now=True)
...
# This is the object that should be geocoded, hopefully
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey()
class Meta:
ordering=( '-datetime', )
</code></pre>
<p>Then to take a queryset:</p>
<pre><code>checkins = CheckIn.objects.filter(
datetime__gte=datetime.datetime.now() -
datetime.timedelta(hours=24),
)
</code></pre>
<p>this can give me all of the checkins within the last 24 hours but I only want 1 object PER content_type=foo and object_id=N.</p>
http://stackoverflow.com/questions/1476609/cronjobs-in-django1Cronjobs in DjangoNate2009-09-25T10:46:35Z2009-09-25T10:49:27Z
<p>I'm writing a database application where certain parts of the database might need updates based on time, not based upon user actions.</p>
<p>For example, there may be certain values that are updated daily, and certain other values that must be updated say, four hours after the database entry is created.</p>
<p>Thus I need some way to update values regularly (a script that updates the database daily) and a way to update values at a specific time in the future (when the entry is created, you need to run an update in four hours).</p>
<p>The database will be managed through a web front end, so I'm using Django to set up the database and the administration, because Django makes designing the database a pleasure. However, I have no idea how to set up the other side, the side that updates the database at certain times.</p>
<p>How would you guys suggest doing this? Would it be sufficient to run a python script and run it with a daily cronjob, or is that not the best practice? Is this sort of thing done frequently, and do tools / methods exist to do this?</p>
<p>I have no experience with this sort of thing, and I'd like to know how it's generally done before I jump in and start reinventing the wheel.</p>
http://stackoverflow.com/questions/1056535/right-way-to-create-custom-pgsql-types-in-django1Right way to create custom pgsql types in djangoYurii Rashkovskii2009-06-29T04:17:49Z2009-09-23T15:44:57Z
<p>What is the right way to create custom pgsql types for django application so that each time database is created with syncdb, all custom types are created prior to creating any tables (so that tables can use this type)?</p>
<p>I also use django-evolution, but that's not an appropriate solution — it runs after syncdb. I can imagine doing a workaround like defining models with standard field types and then creating types and altering column types in evolutions, but that's definitely not nice and sort of obscure...</p>
<p>Any idea?</p>
http://stackoverflow.com/questions/1316589/django-queryset-get-one-object-per-fieldfoo1Django-queryset get one object per field=fooskyl2009-08-22T17:58:27Z2009-09-23T04:03:06Z
<p>I have a basic FK to user, call it owner</p>
<pre><code>class Baz(models.Model):
owner = models.ForeignKeyField(User)
....
....
</code></pre>
<p>Now, with a queryset of Baz's, is there something that I can chain that will give me only one Baz per owner?</p>
http://stackoverflow.com/questions/1429224/django-data-creation-and-commits0Django data creation and commitsChristian2009-09-15T19:37:59Z2009-09-16T14:38:01Z
<p>I'm not sure I 100% understand what the database does. If I just have some misconception, please point it out.</p>
<p>Let's say I have a function that wants to create 100 new entry in the database with has 100,000 entries.</p>
<p>It seems a lot faster when those 100 entries get create and the commit is made after the last entry is created.</p>
<p>Now, if those 100 entries get created by different users, is there a easy way to commit only after 100 entries are created?</p>
<p>Edit:
Should I maybe write some sort of buffer?</p>
http://stackoverflow.com/questions/1394126/keep-settings-in-database1keep settings in databasevinilios2009-09-08T13:45:25Z2009-09-08T13:47:45Z
<p>In a reusable application (in which i don't want to change any code) i would like to change a SETTING var that the application uses (in its forms and maybe other parts) to be dynamic (update its contents from a db table).</p>
<p>What would be the best approach to do that (a middleware maybe?) ?</p>