django-database refers to database backends that Django supports out of the box

learn more… | top users | synonyms

0
votes
1answer
37 views

Django Database querying differences

I am going through the creation of the Polls app again, in the Django Docs. I wanted to ask again about one particular thing they do in the django database. The code is shown below: >>> from ...
1
vote
2answers
49 views

Is there any more elegant way to add a value sensitive unique together constraint in Django Model?

Here is the problem: I have a model like this: class UserBook(models.Model): user = models.ForeignKey(User) book = models.ForeignKey(Book) is_active = models.BooleanField(default=False) ...
2
votes
2answers
37 views

Django lookup tables and fields

Can I look around in a database with Django? I mean outputting a list of all tables, all fields in tables and all objects in a specific table? I know how to build models and lookup objects, but can I ...
-1
votes
0answers
20 views

create a secondary table for a model fulfilling some pre-requisite conditions

I have many fields in my model and I want to create a secondary table from the primary one where certain pre-requisite conditions are true (for ex shortlisted_item = 'True'), so that when a user puts ...
1
vote
1answer
28 views

Django MPTT Giving DatabaseError When Saving

I have installed MPTT for Django, put it in "installed apps," set up my files, and synced my database. My model shows in admin, but when I click save after trying to add a category I get the following ...
0
votes
0answers
43 views

Django - How to organize Interview model object

I am trying to set up an Interview object in my application. An Interview has Interviewer Interviewee Job Type Questions and Answers I am stumped on how to handle the questions and answers. ...
0
votes
0answers
22 views

Indjango raw SQL, is it possible to include named params instead of positional params?

I would like to use raw SQL queries with parametrized queries. I know I can do this with positional params like (my real need is to use this in a framework and is not quite as trivial as this ...
1
vote
4answers
41 views

Accessing data from Django model

Let's say I have a model defined as such class BlogPost(Models.Model): """ Defines a blog model """ blog = models.TextField() blog_id = models.AutoField(primary_key=True) author = ...
1
vote
2answers
38 views

Django count num rows database

I have database created by Django model,Where status and id and username are the fields of database table Messages,now i need to count number of rows which holds status value= 0 for a particular ...
0
votes
1answer
69 views

Django: objects.raw() unable to fetch results despite SQL working in MySQL directly

I've written a function for Django which allows a user to enter a word or phrase, and fetch all the instances in a specified model where that instance has all those words appear in any order across a ...
0
votes
1answer
35 views

How to Store Django Logs in a database?

I want to store my application logs (info and not error logs) in database so that further I can use it to display on web. Please suggest me a good approach.
7
votes
1answer
236 views

Multiple fields to the same DB column

We are trying to speed up our app with prefetch_related. It can follow the GenericForeignKey relations, and it can go deeper with __ but unfortunately it will fail if related model do not have such ...
0
votes
2answers
78 views

Django Unique Bulk Inserts

I need to be able to quickly bulk insert large amounts of records quickly, while still ensuring uniqueness in the database. The new records to be inserted have already been parsed, and are unique. I'm ...
2
votes
1answer
106 views

Prevent Django from querying for ForeignKey options for every form in ModelFormSet

I'm building a csv import form for my Django application and want to display the to-be-imported rows in a ModelFormSet for validational purposes. Therefore I added a view to the relevant ModelAdmin ...
0
votes
0answers
28 views

Is there a way to override unique_together constraint on proxy models in Django?

I'm using a third-party module in my Django app, and have created a proxy model (https://docs.djangoproject.com/en/1.4/topics/db/models/#proxy-models) so I can alter its default behaviour for my app. ...
1
vote
1answer
65 views

Django & Soft Deletion: Implementation architecture

Definitions SOFT DELETE - does not remove an object from the database, but appears to do so HARD DELETE - removes the object completely from the database Question What is the best way to ...
0
votes
0answers
30 views

How to tell if Django Database is GIS capable

I am wondering if there is an easy way of detecting if the Django database used by a certain application is GIS capable? (and all the required softwares have been installed) One way of doing this is ...
0
votes
1answer
70 views

Add Indexes (db_index=True)

I'm reading a book about Django Coding Style and one they discuss here is db_index=True. Ever since of using Django, I'm never use this function because I don't know what's this function can do. Here ...
0
votes
0answers
29 views

Django: Set db connections manually for each request

Is it possible to set db connection manually for each request? Here is the senerio: There are two dbs (lets say:db-1 and db-2) in my application. I need to use db-1 for some views and db-2 for ...
0
votes
4answers
111 views

git merge conflicts with our database file (multiple developers)

A buddy and I are developing a Django app, and are using git (GitHub). As we work, we make fake accounts on our site, login, and upload content to the database, etc..for testing purposes. Here's the ...
0
votes
4answers
49 views

How to retrieve the real SQL from the Django logger?

I am trying to analyse the SQL performance of our Django (1.3) web application. I have added a custom log handler which attaches to django.db.backends and set DEBUG = True, this allows me to see all ...
0
votes
2answers
169 views

Django : Call a method only once when the django starts up

I want to initialize some variables (from the database) when Django starts. I am able to get the data from the database but the problem is how should I call the initialize method . And this should ...
0
votes
1answer
46 views

django-models database collations problems: declare a field that supports unicode?

I encountered this problem. When I cannot assign a unicode string to models.CharField . DatabaseError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) ...
4
votes
4answers
190 views

Django: dynamic database file

In my Django project I have a dependency for a third party application that produces SQLite cache files in various directories with a known schema. I'd like to use Django models to access those ...
0
votes
2answers
42 views

Modify the django models

I just tested it myself. I had Django models, and there have already been instances of the models in the database. Then I added a dummy integer field to a model and ran manage.py syncdb. Checked the ...
0
votes
1answer
47 views

Django: How to avoid reassigning ForeignKey on every save?

I want to save the A object and B object. A has a foreignkey to B. B has a OneToOneField to A. Is there a way I can get around having to reassign the variables between each save (or perhaps there's a ...
0
votes
2answers
75 views

Update of only specific fields in a models.Model

I have a class Survey(models.Model): created_by = models.ForeignKey(User) question = models.CharField(max_length=150) active = models.NullBooleanField() def __unicode__(self): ...
0
votes
1answer
111 views

How to synchronize Local database with a remote database using Django?

I just want concurrency in the local and remote database. The changes made to local database should be reflected to a remote database automatically. In short explain me how to concurrently update ...
0
votes
1answer
226 views

django loaddata DeserializationError: [u“'127' value must be either None, True or False.”]

I keep getting the following traceback when trying to load my database. I went on my production server and did a ./manage.py dumpdata appname data.json and then locally tried to run ./manage.py ...
2
votes
1answer
65 views

django database delete specific number of entries

How to delete specific number of entries from the database? I did something like this EntriesToDelete=Statusmessages.objects.filter(time__lt=date)[:30000] EntriesToDelete.delete() But I get an ...
0
votes
1answer
338 views

Unable to get repr for <class 'django.db.models.query.QuerySet'>

Debug show me that: comments = Comment.get_for_intention(id) is: {QuerySet} Unable to get repr for class 'django.db.models.query.QuerySet' Comment model: class Comment(models.Model): ...
0
votes
0answers
51 views

Django save model instances outside of transaction;

Python 2.7.3, Django 1.4.2, postgresql 9.1. I have i method (auto-controlled by transaction middleware). In this method i create some models and logs for those actions what creating a models (logs are ...
1
vote
0answers
44 views

Incosistency in Django multiple databases

I have set up Django multiple-database configs. I have one default database for writing and two slave databases for reading. I'm using mySql. Using Django shell, I write to the database and using the ...
0
votes
1answer
72 views

How to get oracle NUMBER with syncdb

I have some legacy oracle database against which I run inspectdb command. One column in the DB has type NUMBER (without precision and scale) and what I got from django is: entity_id = ...
2
votes
1answer
60 views

Issues with feeding data into database when using for loop

In my template I have used for loop for some fields <div class="register_div"> <p>Title:</p> <p>{{ form.title }}</p> </div> <div ...
0
votes
1answer
97 views

Django update table using data from another table

enter code hereI have 2 tables products and catagories connected by foreign key. I need to update field products.new_cost using field catagories.price_markup as following: UPDATE products p INNER ...
1
vote
2answers
648 views

Postgresql Psycopg2

I am a total programming n00b and just starting to learn django. I've been able to get things done with SQLite, but I have been at a complete standstill with PostgreSQL... I've been looking through ...
0
votes
1answer
182 views

mysql alter table stuck in preparing state

I recently tried to change a column in my database with a south migration for my django project from a CharField to a IntegerField I did a python manage.py schemamigration appname --auto i then ...
0
votes
1answer
59 views

Duplicate/Post django form on a non django website

I have a django site that has a donate form on it. This site handles only the internal donations by the organization. They have a public facing site that is not django driven. They want to have the ...
0
votes
1answer
59 views

How Extract Data from django admin site?

I have a django admin page but i don't have the database file on my computer. How can i extract all datas from the admin page in a databse file (e.g. MyDB.sqlite) on my hard disk ?
0
votes
1answer
50 views

simple reverse in query in django

I am trying to get country where some specific post exists, so that I can show only those countries. To do so. I have following code. Models: class Country(models.Model): ...
0
votes
1answer
101 views

How to update db with phpmyadmin when I add ForeignKey in django?

I have django model: #models.py class m1(models.Model): some_word = models.CharField() I've made db with 'manage.py syncdb' command and then added a ForeignKey field to a model #models.py ...
0
votes
2answers
44 views

Is there a way to print source code info and sql query in django logs?

I am logging db information to a file, but what I would really like to do is see the code that produces each query, or at least the file/line number. Is there a way to do this? Using ...
5
votes
1answer
511 views

“Returning to that page might cause any action you took to be repeated” - Django

I have a form on my website, that creates an entry in database. So every time when I refresh a page I got this message first: The page that you're looking for used information that you entered. ...
1
vote
1answer
230 views

Django modelform save method: ERROR: syntax error at or near “args”

I'm trying to save my model form. Django reurns InternalError: current transaction is aborted, commands ignored until end of transaction block This is a problem in executing INSERT sql-query which is ...
1
vote
1answer
672 views

Django DynamoDB Database backend

Is it possible to set up an AWS DynamoDB as the database backed for a Django server? If so, how would I go about doing this? thanks!
1
vote
1answer
731 views

django.db.utils.IntegrityError: (1062, “Duplicate entry '22-add_' for key 'content_type_id'”)

I am using django multiple DB router concepts, having multiple sites with different db's. Base database user will login with all other sub sites. When i try syncdb in base site its worked ...
2
votes
1answer
157 views

Relational Database for genetic variation

I am trying to represent to genetic variation data in a database for my institution. We have discovered genetic variants, which have associated with them reference alleles, mutant alleles, chromosome, ...
3
votes
1answer
231 views

Avoid RETURN postgresql statment in django1.4 and postgresql 8.1 related to bug #10467

A few days ago I write a project in django1.4 using the admin capabilities with the intention to make a CRUD for debug data migrated from a legacy system to a new system (the migration wasn't entirely ...
2
votes
2answers
118 views

Storing User Information Django

For Users on a website, what is the best way to store information in Django with databases. The website I'm working on has the following sections: A sort of chat room where users can post comments. ...

1 2 3