Tagged Questions
1
vote
1answer
33 views
Python SqlAlchemy querying Session with Unicode value in 'filter_by' returns null
I have a (MS SQL) db table in which one of the columns, keyphrase, is of type nvarchar. I have set up my SqlAlchemy model of this table to have type String(convert_unicode=True) for this column (I ...
0
votes
1answer
9 views
SQLAlchemy hybrid_method - Passing Obvious Argument
I am working with python and sqlalchemy. I have one table named Team and another named Game. The Game table has columns "away_id" and "home_id" and the Team table has the column "team_id". I just ...
0
votes
0answers
37 views
SQLalchemy - call a query function from another file
I have following question, I want to call a function which is querying my database. So my code like that is working fine, cause I'm calling the function inside the file:
#!/usr/bin/python
# -*- ...
2
votes
4answers
144 views
Using sqlalchemy session to execute sql DRASTICALLY slows execution time
I have a rather long query (was 7 joins, now is 7 subselects because in raw sql 7 subselects was considerably faster-- I don't even know when the 7 joins would have finished if I'd let it run, but ...
0
votes
1answer
61 views
Geting results from database one by one
I'm writing small program that is querying for results from database (single table). I'm using python 3.3, sqlalchemy and postgres database.
result = db_session.query(Data).all()
progress = 0
for row ...
0
votes
2answers
92 views
How to do this in one select query?
I need to display a list of posts. For each post, I need to also show:
How many people "like" the post.
Three names of those who "like" the post (preferably friends of viewing user).
If the viewing ...
2
votes
1answer
70 views
Reverse version of sql LIKE in sqlalchemy [duplicate]
By "reverse version of like" I mean exactly like this question. The question is how to make a query like that in sqlalchemy?
I found out that to make "SELECT LIKE" query in sqlalchemy I should make ...
0
votes
1answer
112 views
SQLAlchemy Query - Python
I am a little confused on SQLAlchemy and how queries work. Let's say I have a table Team, and another table Games. I set it up so if I do Team.games it will call up all the games Team has played. ...
1
vote
0answers
55 views
Sqlalchemy primaryjoin join argument alternative
In sqlalchemy, one can specify the primaryjoin argument to the relationship construct to specify alternate join conditions.
my question is: can this be done "manually" ie. is there an alternative ...
0
votes
0answers
68 views
Unexpected behavior of _and, & with filter
I'm getting some un-anticipated results from a query i'm running on my Postgres. Its worth noting i get the same results using sqlalchemy's _and function.
StackTrace:
In [49]: question_option = ...
1
vote
1answer
67 views
Mysql - How do I identify and select only columns that are different when comparing two entries?
My table is set up as follows:
ID EVENT Value1 Value2 Value3 Value4 ... Value10
1 400 2 2 2 2 2
...
7 500 3 6 5 5 1
8 200 4 4 4 ...
0
votes
1answer
239 views
How can I search the table of a Flask SQLAlchemy many to many relationship?
I have the following models and table:
chat_members = db.Table('chat_members',
db.Column('user_id', db.Integer, db.ForeignKey('user.id')),
db.Column('chat_id', db.Integer, ...
0
votes
1answer
89 views
sqlalchemy FOR UPDATE NOWAIT
The documentation for sqlalchemy says that you can specify "FOR UPDATE NOWAIT" in PostgreSQL 8.1 upwards using Query.with_lockmode('update_nowait'). Does anyone know how to get it to add the FOR ...
0
votes
1answer
74 views
sum over a field on a query
this should be a asked-before question, I searched but I could not find any answer on that. Sorry if it is duplicated. I have a query lets say:
my_query=session.query(Item).filter(somefilter)
Now, ...
0
votes
1answer
53 views
how to query inside a class in sqlalchemy
I have a User class with a one-to-many relationship to the Item class:
class User(Base):
items=relationship(Item)
def method(self):
for item in self.items
if ...
0
votes
1answer
56 views
difference of join and jonedload in sqlalchemy
I have the following classes:
Class User(Base):
#user properties
Class Item(Base):
#item properties
Class User_Item(Base):
__tablename__='users_items'
id=Column(Integer, ...
0
votes
1answer
40 views
Double Database Queries
Some of My code:
u = User.query.filter_by(username=requested_username.lower()).first()
teamie = Team.query.filter_by(name=requested_team)
team = teamie.filter_by(user_id=u.id).first()
^what am I ...
0
votes
0answers
104 views
How can search results be live and updated using Javascript accessing a Python application?
I currently have a simple python application built on Flask and SQLAlchemy. The application is accesses a database User imported from another python file. The application has two views, one is home
...
0
votes
1answer
196 views
sqlalchemy.exc.ProgrammingError
Have been trying to figure this out for an hour - and still have no idea what the problem is.
The following code is causing the error:
team = ...
0
votes
1answer
83 views
SQLAlchemy and filtering polymorphic queries
I've the classes Node and Leaf (Node) as shown below:
class Node (db.Model):
__mapper_args__ = {'polymorphic_identity':'node', 'polymorphic_on':'type'}
id = db.Column (db.Integer, ...
0
votes
1answer
33 views
syntax to query another table using relationship in ORM?
The model is like this(in SQLAlchemy):
Class Cell(Base):
__tablename__ = "cell"
id = Column(Integer)
name = Column(String)
Class Sample(Base):
__tablename__ = "cell"
id = ...
1
vote
1answer
219 views
Interfacing with Sqlalchemy query object to extend, custom query types
I'm working on adding pagination functionality to my models. I could do this with a method in a mixin, I think I understand what pagination is in this context, but I'm looking to add queries so I can ...
0
votes
1answer
459 views
SQL Alchemy ResultProxy.rowcount should not be zero
Does anyone know how to get the row count from an SQL Alchemy query ResultProxy object without looping through the result set? The ResultProxy.rowcount attribute shows 0, I would expect it to have a ...
3
votes
4answers
122 views
How to order these SQL results in a certain way?
I'm making a sort of calendar of events app. There are 2 types of events shown on the users home page:
nearby event - those with a schedule date within the next 3 days, or within the past 1 hour.
...
0
votes
2answers
82 views
SQLAlchemy, filtering joined queries with table inheritance
First off, sorry if it turns out that what I'm trying to do is smoke crack here, I'm by no means a DB or SQLA expert. =)
I have two classes, Person and Organization, that use table inheritance to ...
2
votes
1answer
321 views
How to use regexp function in sqlite with sqlalchemy?
I'd like to use regexp query in "sqlalchemy" as well as is done in "python sqlite", code below..
Unfinished sandbox script is this:
import os
import re
import sqlite3
#
# python sqlite
#
DB_PATH = ...
0
votes
1answer
16 views
SqlAlchemy all() is not working
One of my queries in my web app is not working correctly.
session.query(GroupUserRelationship).filter(GroupUserRelationship.user_id == user.id).all()
and when I print the result, i get
...
0
votes
1answer
122 views
How to list columns name from any sql query
Using SQL Alchemy, I'd like to know if it's possible to get a list of all columns from any SQL Query.
For example, if I call this query :
SELECT * FROM users;
I would need all the results, but ...
0
votes
1answer
219 views
SQLAlchemy - Querying Multiple Tables and Combining Results
Answer no longer needed.
I have two tables as follows in my MySQL database:
**Child**
id
name
parent_id
**Parent**
id
name
What I want to do is query both tables but return unique results (no ...
1
vote
1answer
239 views
Is there an embedded database protocol which is faster than SQLite for VERY large databases? [closed]
This question was asked a little while ago, but I'm looking for something more specific: for a relational database with, say, several billion rows in several tables, what is the fastest serverless ...
0
votes
2answers
115 views
Trying to write a query to select posts either written by me, my friends, or posts which my friends like
I have 3 tables - posts, friendships, and likes -- the important fields described below.
posts: id, user_id, title
friendships: requester_id, accepter_id, is_confirmed
likes: post_id, user_id
I ...
3
votes
2answers
190 views
Is generator-like querying of a database by sqlalchemy possible?
At the moment I query my database this way:
for author in session.query(Author).filter(Author.queried==0).slice(0, 1000):
print "Processing:", author
# do stuff and commit later on
This ...
0
votes
1answer
115 views
Failed to make query with an explicit join sequence (including alias table) on SQLAlchemy
I have trouble on making a SQLAlchemy query between two tables:
ProcessedDataset
- ID
ProcDSParent
- ThisDataset (foreign key to ProcessedDataset.ID)
- ItsParent (foreign key to ...
1
vote
1answer
616 views
sql alchemy python query query.first() _and
I am modifying some code I did not write. The problem with this code is that tracking numbers have started to recycle with the carrier. So for a given tracking number there may be two sometimes 3 ...
2
votes
2answers
2k views
sqlalchemy exists for query
How to check that data in query is exists?
For example:
users_query = User.query.filter_by(email='x@x.com')
How I can check that users with that email exists?
Now i check this with
...
0
votes
1answer
91 views
sqlalchemy Evalulate Criteria based on list of tuple, searching?
I want to apply some access rule type of mechanism, for that I'm planning to use list of tuple for specifying rules for restrictions like below
['|',('name','=','root'), ('role','=','admin')] using ...
0
votes
1answer
84 views
filter_by usage problem in query building
I'm having some trouble in using SQLAlchemy filter_by:
for key in query_dict['filter']:
query = query.filter_by(key=query_dict['filter'][key])
apparently, filter_by won't accept ...
0
votes
1answer
477 views
SQLAlchemy EXISTS queryset
I use only django framework with his ORM.
And there is some code:
User.objects.filter(username='test').exists()
that return True or False.
this orm query generate SQL:
SELECT (1) AS "a" FROM ...
1
vote
2answers
2k views
sqlalchemy: get max/min/avg values from a table
I have this query:
mps = (
session.query(mps) .filter_by(idc = int(c.idc))
.filter_by(idmp = int(m.idmp))
...
1
vote
1answer
98 views
How do I sort, group a query properly that returns a tuple of an orm object and a custom column?
I am looking for a way to have a query that returns a tuple first sorted by a column, then grouped by another (in that order). Simply .sort_by().group_by() didn't appear to work. Now I tried the ...
1
vote
1answer
384 views
SQLAlchemy - only one result being returned when count() says there are more
I'm having trouble with a really large result set only returning one row.
Session.query(TestSet).join(Instance).count()
>> 4283878
...
2
votes
1answer
277 views
Using sqlalchemy.sql.functions.char_length as a filter condition
I'm using Elixir and sqla 0.6, and I'm trying to query my model:
class Document(Entity):
using_options(shortnames=True, order_by='doc_date')
doc_number = Field(Unicode(20),index=True)
...
1
vote
1answer
464 views
SQLAlchemy/Elixir - querying to check entity's membership in a many-to-many relationship list
I am trying to construct a sqlalchemy query to get the list of names of all professors who are assistants professors on MIT. Note that there can be multiple assistant professors associated with a ...
4
votes
1answer
663 views
SqlAlchemy: Check if one object is in any relationship (or_(object.relationship1.contains(otherObject), object.relationship2.contains(otherObject))
Let's say I have a class like this:
class Foo(declarativeBase):
bars1 = relationship(Bar.Bar, secondary=foos_to_bars1, collection_class=set())
bars2 = relationship(Bar.Bar, ...
1
vote
1answer
199 views
Sqlalchemy: Get some columns aliased
I have a question that I'm sure it's very quick to answer, but I haven't been able to find it googling...
I have a class Product defined with declarative SqlAlchemy:
class Product(declarativeBase):
...
1
vote
2answers
699 views
SQLAlchemy - Combine Textual query with a filter
I'm using SA 0.6.6, Python 2.66 and Postgres 8.3.
I have certain queries which require somewhat complex security check that can be handled with a WITH RECURSIVE query. What I'm trying to do is ...
4
votes
1answer
824 views
Dynamic column_property with SQLAlchemy
I've got some SA models and need some trick :
class Entry(Base):
__tablename__ = 'entry'
id = Column(Integer, primary_key=True)
title = Column(Unicode(255))
author_id = ...
0
votes
1answer
547 views
Trying to execute an 'advanced' query in SQLAlchemy but I'm stuck
The query I'm trying to execute is this one. I've pasted it below:
SELECT p.id, p.title, p.time_submitted, SUM(v.score) as num_votes
FROM posts p, votes v
WHERE v.postid = p.id
GROUP BY p.id
ORDER ...
7
votes
1answer
3k views
how to pass a not like operator in a sqlalchemy ORM query
I've got a query:
MyModel.query.filter(Mymodel.name.contains('a_string'))
I need to do the same query but with the negation (a not like operator) but didn't find any operator matching my need in ...
0
votes
2answers
376 views
Is there something equivalent to django's managers in SQLAlchemy?
I have some SQLAlchemy models (Declarative) and some queries to write like:
Mymodel.query.filter(Mymodel.myfield=='lambda')
Since I have to use the above query several times in my code I would ...