Hot answers tagged sqlalchemy
4
It seems to me like going through the whole process of creating the expression tree and then creating a query from it again is a wasted time when using sqlalchemy.
Do you have any estimates on how much time is wasted, compared to the rest of the application? Profiling here is extremely important before making your program more complex. As I will ...
2
You can use:
SELECT (ST_IsValidDetail(the_value)).* FROM the_table;
... but unfortunately PostgreSQL actually executes the ST_IsValidDetail function once for each row. As a workaround you can mangle the query a little more, materializing via a common table expression then extracting the tuples in a second pass:
WITH interim_result(v) AS (
SELECT ...
2
Try delete:
models.User.query.delete()
From the docs: Returns the number of rows deleted, excluding any cascades.
2
Probably a lot of ways but one is to use a @validates:
from sqlalchemy import *
from sqlalchemy.orm import *
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class A(Base):
__tablename__ = 'a'
id = Column(Integer, primary_key=True)
readonly1 = Column(String)
readonly2 = Column(String)
...
2
The easy way to do this is to step outside the interpreter and just search the docs.
Meanwhile, it looks to me like there is no such function to import. There are group_by methods on sqlalchemy.orm.query.Query and sqlalchemy.sql.expression.[Compound]Select[Base] objects.
But if you really want to recursively walk through all the modules in a package ...
2
Here is a real test suite to compare MySQL cursor with SQLAlchemy engine and session. Please substitute your connection information and SQL at the bottom, then run it. Let us know what the timings are.
import time
def time_thing(fn, description):
print "Running %s" % description
now = time.time()
try:
ret = fn()
return ret
...
1
Each thread should have a separate database session. You're probably creating the object that's eventually stored in db_session somewhere, perhaps like this:
db_session = Session()
Essentially, you need each thread to have its own db_session.
1
Try this:
query = db.session.query(Tag, db.count(Post.id))
query = query.filter(
(tags_to_posts_association_table.tag_id == Tag.id) & \
(tags_to_posts_association_table.post_id == Post.id)
)
query = query.group_by(Tag.id)
This generates this query:
SELECT tags.id AS tags_id, tags.title AS tags_title, count(posts.id) AS count_1
FROM tags, ...
1
I would do it this way (pseudo code, can't remember the proper alchemy syntax but you should be able to 'convert' it quiet easily)
tags = Tags.findAll()
for tag in tags:
myDict[tag] = Post.find(tags=tag).count()
And at the and you should have all tags in myDict with their count
1
I have found a way that I took from the example on the ST_IsValidDetail page. Apparently, the following syntax is valid:
SELECT gid, reason(ST_IsValidDetail(the_geom)), ST_AsText(location(ST_IsValidDetail(the_geom)))
Note the reason and location "calls" wrapped around the function call; the name of the columns in the row returned by ST_IsValidDetail are ...
1
SessionExtension will be usefull for inspecting
For example:
import traceback
from collections import defaultdict
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, scoped_session
from sqlalchemy.orm.interfaces import SessionExtension
# TODO cleanup commited sessions
class MySessionUsageInspector(SessionExtension):
def ...
Only top voted, non community-wiki answers of a minimum length are eligible
