Tagged Questions
The django-database tag has no wiki summary.
11
votes
3answers
4k views
Django and NoSQL, any ready-to-use library?
So far Django has good integration with several RDBMS. NoSQL, schema-less and document-oriented DBMS are picking up. What's the status of integration those on-trend and fashionable DBMSes with Django? ...
5
votes
3answers
547 views
How to make Django work with unsupported MySQL drivers such as gevent-mysql or Concurrence's MySQL driver?
I'm interested in running Django on an async framework like Concurrence or gevent. Both frameworks come with its own async MySQL driver.
Problem is Django only officially supports MySQLdb. What do I ...
3
votes
0answers
21 views
installing mysql for python within virtual environment [closed]
I went through other similar questions, but none of the stuffs mentioned there, served my purpose. My OS is ubuntu 11.04, What i did was created a virtual environment first:
virtualenv mysite
once ...
3
votes
2answers
104 views
Django - legacy db and problems with 'id' field
I'd like to think I haven't been the first with this problem, but I haven't found the solution in any of my searching.
I'm integrating a MySQL database from a php app into a new Django project. ...
3
votes
4answers
93 views
Is there a way to update the database with the changes in my models? [closed]
Possible Duplicate:
update django database to reflect changes in existing models
I've used Django in the past and one of the frustrations I've had with it as an ORM tools is the inability ...
3
votes
1answer
222 views
Django - how to specify a database for a model?
Is there a way to specify that a model (or app, even) should only ever use one particular database?
I am working with a legacy database that I don't want to change. I have two databases - the ...
3
votes
5answers
856 views
Table with Million of rows
I have a project with 2 applications ( books and reader ).
Books application has a table with 4 milions of rows with this fields:
book_title = models.CharField(max_length=40)
book_description = ...
2
votes
3answers
272 views
Django - ForeignKey issue. How many DB accesses?
I am currently using Django and my model is like this.
class City(models.Model):
name = models.CharField(max_length=255, primary_key=True)
url = models.URLField()
class Paper(models.Model):
...
2
votes
2answers
106 views
How to implement django admin on an existing database where you have read-only access?
I want to use Django admin to browse and existing database but I want to be sure that me or Django are not going to do any modifications to this database.
For this reason I think I should use two ...
2
votes
1answer
208 views
How do I create a new database for an existing App using Django South and set default values?
I'm working with an OS project that uses South to migrate the database.
I'm building a new database from scratch and I want to make sure South is setup so I can easily update the database in the ...
2
votes
1answer
114 views
Models does not create tables when synched
I have some django models for my extended users profile. Problem is that this code does not create tables when syncdb is used (simply nothing happens. No validation errors). Why is that happening? ...
1
vote
1answer
94 views
Django unique_together on postgres: enforced by ORM or DB?
As I look at the sqlall for a models.py that contains unique_together statements, I don't notice anything that looks like enforcement.
In my mind, I can imagine that this knowledge might help the ...
1
vote
1answer
177 views
How to select 30 unique random values from database(MySQL) with django?
I've read this question: In Django, how do I select 100 random records from the database?
And tried to use Content.objects.all().order_by('?')[:30], but this will produce some duplicate items. So how ...
1
vote
4answers
422 views
How can I subtract or add 100 years to a datetime field in the database in Django?
How can I subtract or add 100 years to a datetime field in the database in Django?
The date is in database, I just want to directly update the field without retrieving it out to calculate and then ...
1
vote
2answers
205 views
Duplicate request threads create duplicate database entries in Django model
The problem: a signal receiver checks to see if a model entry exists for certain conditions, and if not, it creates a new entry. In some rare circumstances, the entry is being duplicated.
Within the ...
1
vote
2answers
96 views
Getting blank statement in django model charfield with mysql
I just migrated my django application from sqlite3 to mysql 5.1.41. I have a charfield in a model defined like this:
class HostData(models.Model):
Host = models.CharField(max_length=50, null=True)
...
1
vote
1answer
340 views
Django __in lowercase
I'm using django-taggit, which handles the attachment of tags to arbitrary content types.
I imported a large tag list, which contains many uppercase words, as well as lowercase words.
Now, I' trying ...
1
vote
0answers
194 views
Django 1.2 : Multiple database and Generic Content Types
I am working on one project with django 1.2.
I have 2 databases :
- First, for users, user's profile, session ...
- Second is to store data from my specifics models like post of blog, pictures, ...
1
vote
2answers
163 views
Generate a few models from existing database in Django
I know this exists
django-admin.py inspectdb > models.py
However, is there an easy way to limit it? Without manually deleting what I don't want.
I'm connecting to a database that has over one ...
1
vote
1answer
986 views
Database query across django ManyToManyField
I'd like to find how to select all objects whose ManyToMany field contains another object. I have the following models (stripped down)
class Category(models.Model):
pass
class ...
1
vote
2answers
165 views
Monitor database requests in Django, tied to line number
We've got some really strange extraneous DB hits happening in our project. Is there any way to monitor where the requests are coming from, possibly by line number? The SQL printing middleware helps, ...
1
vote
4answers
429 views
Why Django does not “really” support automatic table update?
Recently I have been trying to learn web development in Django and i am very happy about it...
But, one thing is really annoying -especially when you get the idea about 'simplicity' philosophy behind ...
0
votes
1answer
40 views
Not able to use Query set for multiple databases in django
I am able to use query set for default database.
But when I use query set for another database, throwing exception.
In my application I use two database.
sqlite and Mysql
DATABASES = {
...
0
votes
3answers
32 views
How do I properly make a Django QuerySet where some field has values in a list?
I have a bunch of Widget objects.
Now each widget has a string property called 'foo'. And I need to be able to query for Widgets that have 'foo' set to 'red', 'orange', 'green' or any arbitrary ...
0
votes
2answers
17 views
Getting error - Cannot add or update a child row: a foreign key constraint fails for a legacy database in django
I recently ported from raw php to django and had to incorporate my legacy database into it. I used the inspectdb command to construct the models out of the database and everything was working fine.
...
0
votes
1answer
69 views
Django and PostgreSQL - value too long for type character varying(512)
I am migrating from a test SQLite database to a PostgreSQL database.
I have a sample object that is inserted in the database, that worked on SQLite but is giving me an error in PostgreSQL.
Code ...
0
votes
1answer
26 views
django filter and exclude effect on performance?
I read filter and exclude from django documentation but I want to know that if I will use following code:
Entry.objects.filter(
... headline__startswith='What'
... ).exclude(
... ...
0
votes
1answer
31 views
Django models: are there reasons to make searched field with db_index?
Supose there is table UserProfile:
class UserProfile(models.Model):
name = models.CharField(max_length=30, db_index=True) # db_index 1
email = models.EmailField(unique=True, ...
0
votes
1answer
44 views
Django:Backup and restore
I have been reading about process to do backup and restore in django.
The best i could come up with was to dumpdata.
i.e. python manage.py dumpdata >foo.json
Now to restore this data we will have ...
0
votes
1answer
23 views
Django DB connection: is query object array or only reference?
Let's say I have code:
obj = MyUser.objects.get(pk=1)
name = obj.name
age = obj.age
email = obj.email
phone = obj.phone
city = obj.city
So I have obj. Is this an array with all information about ...
0
votes
1answer
13 views
Django runonce-per-db flag?
What is the Django "runonce-per-db" flag?
I see it mentioned in this thread, but cannot find any documentation for it.
0
votes
3answers
121 views
model.AutoField - form.save() creates new records (INSERT) instead of updating existing
Situation: Have an existing mysql database with some data. For this example, I only use two fields; id and subject. id is defined as Integer with the *auto_increment* option, while subject is just a ...
0
votes
1answer
38 views
Django : refresh issue on selection field
I have a choiceField called from a context_processors so it can appear in all of my site's pages. It provides the projects existing in a database. The problem is that it does not refresh correctly.
I ...
0
votes
3answers
61 views
Django - select object from DB in a tamplate
I have something like:
{% for mother in mothers_list %}
{% for father in fathers_list %}
{% Child.objects.get(mother=mother, father=father) as child %}
child.name
...
0
votes
1answer
258 views
Django Column 'id' cannot be null
I am having a weird problem with my mysql database and django.
I created an app with a model imported from an existing database with inspectdb. It was working fine until yesterday I removed the ...
0
votes
2answers
83 views
Django dump : models don't validate
When I try to dump the data of my model in Django with this instruction :
python manage.py dumpdata app> temp_data.json
It gives the following error :
Error: One or more models did not ...
0
votes
1answer
60 views
Django create several records at a time
I want to be able to create as many records as a user wants for a database table in a single form.
For example, there will be some inputs for the data required for a record and at the end of the line ...
0
votes
0answers
49 views
django dbrouter based on class
Using django db router, how can I retrieve the actual class type?
for example
def db_for_read(self, model, **hints):
print model
return None
will always print for all my classes in ...
0
votes
1answer
31 views
Complex 'AND' Django Queries
I'm trying to do the equivalent of this SQL query:
"SELECT * FROM something WHERE ((something >= something AND something <= something) AND(something >= something AND something <= ...
0
votes
0answers
62 views
Where is the ON DELETE CASCADE logic being implemented in Django? (PostgreSQL is used)
I just need a confirmation for my understanding on Django's implementation of ON DELETE CASCADE from you Django experts.
According to the official Django documentation:
When Django deletes an ...
0
votes
0answers
92 views
Django multiple and dynamic databases
I've been evaluating django and wondered if the following is possible. I've already looked at the regular multiple database docs so please don't point me to that because this use case isn't mentioned ...
0
votes
1answer
62 views
Exporting to SPSS files in Python Django?
i need to export data to SPSS file format in Python (Django), but i can't find util information in google.
Is there some way to do this? Someone has tried?
thanks in advance!
0
votes
2answers
84 views
Django easymode i18n suddenly failing?
I started getting:
OperationalError at /admin/contact_us/contact_details/
(1054, "Unknown column 'contact_us_contact_details.address_title' in 'field list'")
Request Method: GET
Request URL: ...
0
votes
1answer
100 views
Django template object return empty value
I filter a subject from database:
subject = Subject.objects.filter(id=1)
I tried to call it form template:
{{ subject.name|safe }}
It return empty value. Do I need to loop the object? It just ...
0
votes
1answer
112 views
How to configure Django to reinitialize and populate the entire database on startup?
Let's assume that you are working at the first version of a new Django application and you are keep adding changing the models.
Being a data-driven application you are mostly working to customize ...
0
votes
1answer
33 views
Filtered annotations without removing results
Consider a model and a query using annotations, for example the following example from the Django documentation:
http://docs.djangoproject.com/en/dev/topics/db/aggregation/
...
0
votes
1answer
433 views
Django South - db.alter function removing null=true blank=true fails with mysql
Having trouble with the db.alter command when changing a date field from null=True and blank=True to required by removing these two values.
When the below line is commented out, the migration runs ...
0
votes
2answers
77 views
How do you maintain user data when updating a Django site?
I have a live Django site that already has registered users. I am trying to update the site with a new version that is different from the original site -similar idea but different models.
How can I ...
0
votes
2answers
367 views
Django : looking for an implementation of an ldap db backend (or for any help on this)
Following this post (I was looking for a library allowing me to declare Django models on a ldap backend), I have decided to use ldapdb. After having played a while with this library, I figured out ...
0
votes
1answer
52 views
Getting last created user to link user profile to in django
I've hit a bit of a wall when trying to add data to a UserProfile model created to hold user info beyond what is catered for in django's built in Auth component.
My question is how do I get an ...