0
votes
1answer
18 views
Django: Query works fine with Sqlite3, don’t with others Database Management System
I have quite long query with 'Q()', with Sqlite3 works very well, but with postgresql or mysql I have strange error e.g. for postgresql: invalid input syntax for integer: "("
and for mySQL: Truncated …
1
vote
1answer
28 views
Django: get aggregated value of two multipied columns
Hi, I need to get aggregated value of two columns. So first multiple them together and then get theirs sum(). Code below naturallz does not work, it is just for clarification.
Is it somehow possible …
3
votes
2answers
47 views
How to properly query a ManyToManyField for all the objects in a list (or another ManyToManyField)?
I'm rather stumped about the best way to build a Django query that checks if all the elements of a ManyToMany field (or a list) are present in another ManyToMany field.
As an example, I have several …
0
votes
1answer
62 views
Django ORM: dynamic columns from reference model in resultset
Creating an app to track time off accrual. Users have days and days have types like "Vacation" or "Sick"
Models:
DayType
Name
UserDay
Date
DayType (fk to DayType)
Value (+ for accrual, - …
0
votes
2answers
51 views
What is simplest way join __contains and __in?
I am doing tag search function, user could observe a lot of tags, I get it all in one tuple, and now I would like to find all text which include at least one tag from the list.
Symbolic: …
0
votes
1answer
62 views
Django: How to access originating instance from a RelatedManager?
I would like to access the Foo instance foo within my manager method baz:
foo.bar_set.baz()
baz would normally take an argument of Foo type:
BarManager(models.Manager):
def baz(self, …
0
votes
0answers
61 views
How to create annotation on filtered data in Django ORM?
I have the following models:
class ApiUser(models.Model):
apikey = models.CharField(max_length=32, unique=True)
class ExtMethodCall(models.Model):
apiuser = models.ForeignKey(ApiUser)
…
0
votes
2answers
80 views
Django ORM - assigning a raw value to DecimalField
EDIT!!! - The casting of the value to a string seems to work fine when I create a new object, but when I try to edit an existing object, it does not allow it.
So I have a decimal field in one of my …
1
vote
3answers
177 views
Django model inheritance, filtering models
Given the following models:(don't mind the TextFields there're just for illustration)
class Base(models.Model):
field1 = models.TextField()
class Meta:
abstract=True
class Child1(Base):
…
0
votes
3answers
202 views
query for values based on date w/ Django ORM
I have a bunch of objects that have a value and a date field:
obj1 = Obj(date='2009-8-20', value=10)
obj2 = Obj(date='2009-8-21', value=15)
obj3 = Obj(date='2009-8-23', value=8)
I want this …
0
votes
2answers
190 views
Django ORM: Getting rows based on max value of a column
Hi,
I have a class Marketorders which contains information about single market orders and they are gathered in snapshots of the market (represented by class Snapshot). Each order can appear in more …
1
vote
4answers
118 views
Easiest way to write a Python program with access to Django database functionality
Hi
I have a website which fetches information from RSS feeds periodically (well, currently manually, and this is my problem). This is currently implemented as a normal Django view, which isn't very …
2
votes
2answers
126 views
Django ORM Creates Phantom Alias in SQL Join
Hello,
I am executing the following code (names changed to protect the innocent, so the model structure might seem weird):
memberships =
models.Membership.objects.filter(
…
1
vote
2answers
137 views
Django: is there a way to count SQL queries from an unit test?
I am trying to find out the number of queries executed by a utility function. I have written a unit test for this function and the function is working well. What I would like to do is track the number …
1
vote
4answers
361 views
Django RelatedManager’s .create() usage?
I have two models: Play and PlayParticipant, defined (in part) as:
class PlayParticipant(models.Model):
player = models.ForeignKey('Player')
play = models.ForeignKey('Play')
note = …
