Tagged Questions
1
vote
1answer
43 views
sqlalchemy bulk update performance problems
I need to increment values in a column periodically with data I receive in a file. The table has > 400000 rows. So far, all my attempts result in very poor performance.
I have written an experiment ...
0
votes
1answer
29 views
should SQLAlchemy session.begin_nested() be committed with transaction.commit() when using pyramid_tm?
I'm developing a pyramid application and currently in the process of moving from sqlite to postgresql. I've found postgresql more restrictive transaction management is giving me a bad time.
I am ...
0
votes
2answers
20 views
sqlalchemy does not enforce foreign key constraing
I am trying to play with the sql alchemy ORM based db definition.
I have defined my tables as follows
class Customer(Base):
__tablename__ = 'customer'
id = Column(Integer, ...
1
vote
0answers
31 views
Where are the python-native objects for SQL-Alchemy?
In an ORM I would expect to be able to do this:
session.add(Lake("hello",Polygon([(0,0),(1,0),(1,1)])))
lake = session.get(Lake).first()
assert isinstance(lake.geometry, Polygon)
assert ...
0
votes
1answer
21 views
py2exe [ImportError: No module named sqlalchemy]
I installed sqlalchemy-0.8.1 in my win7 via 'setup.py install'
and "import sqlalchemy" works well
But when I want to pack my files with py2exe, error occurs
ImportError: No module named sqlalchemy
...
-2
votes
0answers
16 views
postgresql.CIDR and sqlalchemy [closed]
SELECT net FROM nets WHERE net >> '10.0.0.0/8'
How to convert this sql-code to sqlalchemy? 'net' has type CIDR in postgres. Is it possible?
0
votes
1answer
21 views
Retrieve distinct backref instances from SQLAlchemy query
Given the following models:
class Foo(db.model):
id = db.Column(db.Integer, primary_key=True)
bar_id = db.Column(
"bar_id",
db.Integer(),
db.ForeignKey("bar.id"))
...
1
vote
1answer
46 views
Populate a WTForms form object with a datetime.date
I'm cooking up a crud interface for an object representing a bill, as in the water bill, the electric bill, etc.
I'm using sqlalchemy to handle the data, wtforms to handle the forms, and flask to ...
0
votes
1answer
22 views
SQLAlchemy MySQL STRAIGHT_JOIN
My code currently executes queries just fine in the SQLAlchemy ORM layer like so:
session().query(model_a).join(
(model_b, something == somethingelse)
).join(
(model_c, something == ...
0
votes
0answers
17 views
Select name by id in another table
I have the tables Articles(id, name(text), category(int), text(text)) and Categories(id, name(text))
query
db_session.query(Articles).all()
How I can with ORM select All from Articles with replacing ...
0
votes
0answers
19 views
How to have more than one tables backref a table with the same property name
So I wanted to achieve, which when described in plain words, would be something like:
The parent model class is able to return all the instances of models where it is ForeignKeyed, under a single ...
0
votes
1answer
14 views
SQLalchemy hierarchical hybrid-transformation
BASED on http://docs.sqlalchemy.org/ru/latest/orm/extensions/hybrid.html#hybrid-transformers
Hello fellow sqlalchemy coders!
I have a data of the form:
from sqlalchemy import Column, Integer, ...
4
votes
1answer
23 views
SQLAlchemy : is there any good automated way to rename columns
I'm using SQLAlchemy ORM for a few days and i'm looking for a way to get tablename prefix in the results of Session.query().
For instance :
myId = 4
...
data = ...
2
votes
2answers
20 views
sqlalchemy: How do I enforce date range on column?
Here is how my column looks
financial_day_of_month = Column('financial_day_of_month', Integer,
nullable=False, default=1)
I want to enforce that min=1 and max=31 ...
0
votes
1answer
17 views
Flask-SQLAlchemy TimeoutError
My backend configuration is :
Ubuntu 12.04
Python 2.7
Flask 0.9
Flask-SQLAlchemy
Postgres 9.2
I've got this error message:
TimeoutError: QueuePool limit of size 5 overflow 10 reached, ...
0
votes
0answers
34 views
Many-to-many relations from table to itself in SQLAlchemy
I'm using SQLAlchemy to represent a relationship between authors. I'd like to have authors related to other authors (coauthorshp), with extra data in the relation, such that with an author a I can ...
0
votes
0answers
32 views
Celery task hangs when chaining to a group
I'm trying to write a celery workflow that syncs a set of contacts from a remote system to the local database. I would like to split the results of the remote system api call into several batches, so ...
0
votes
1answer
25 views
Doing threading with sqlalchemy properly?
I have a multi threaded application where the treads work on some objects fetched using sqlalchemy. The objects are put in a thread queue which the threads poll from.
In the main thread I am doing ...
0
votes
0answers
16 views
SQLAlchemy Declarative Bi-Directional Association: append and value set at once
GENERAL QUESTION
Is it possible to append an association and set a value(s) to be stored in association table in one command?
CODE
To do so, I'm working on one of more interesting examples of ...
-1
votes
1answer
31 views
Python and Oracle Views
Can someone give me brief information about how to "connect" to an Oracle view from Python?
I looked around but couldn't anything. I'm new to Oracle DB. I will not use it I will only connect it with ...
3
votes
2answers
37 views
How to locate a function in a Python module tree?
I'm using SQLAlchemy and am trying to import the function group_by into the interpreter, but I can't seem to find it. Is there an easy way to search the module tree to see where this function lives?
...
0
votes
2answers
48 views
Flask how to calculate tags count
I developing simple blog with tagging support. Actually I would like to add tags cloud functionality and I need to get count of each tag used in blog.
My Blog and Tag models looks like:
class ...
0
votes
0answers
43 views
Sqlalchemy based alternatve to Django [closed]
Hi I have been using Django to a reasonably advanced level over the last two years. I think it is great for most things, but I notice that the ORM is somewhat limited for some of the tasks I want to ...
1
vote
1answer
18 views
SqlAlchemy: How to use the result of a selected subquery inside the where clause
I wish to get a list of articles along with the count of the comments for each article
My query looks like this -
comments_subq = ...
0
votes
1answer
24 views
Python: CherryPy and Win32 API in multithreading?
In order to add more tools to my Python arsenal, I've started work on a pet project - a personal time management app, Thyme.
Currently, the app consists of two processes: Every 500ms, a separate ...
0
votes
0answers
20 views
Twisted web, SQLAlchemy and exception handling
I'm using twisted web to build a web service application.
I use SQLAlchemy to interact with the database.
As far as I know it would make to sense to create a session a the beginning of a request, and ...
0
votes
1answer
24 views
AttributeError while querying: Neither 'InstrumentedAttribute' object nor 'Comparator' has an attribute
The following code:
Base = declarative_base()
engine = create_engine(r"sqlite:///" + r"d:\foo.db",
listeners=[ForeignKeysListener()])
Session = sessionmaker(bind = engine)
ses ...
0
votes
1answer
19 views
Sqlalchemy returns “stale” rows?
I have a table (MySQL) with a row in it.
I can read it fine with:
self._session.query(Automatic).\
filter(Automatic.do_when <= time()).\
limit(limit).\
...
-2
votes
0answers
21 views
SQLAlchemy and MSSQL/MYSQL [closed]
I'm new to using SQL Alchemy, and I'm just wondering if there is a tutorial how to setup MYSQL and MSSQL. I already visited the site of SQL Alchemy and they just use SQL Lite. A sample connection with ...
2
votes
2answers
37 views
Get single value from PostgreSQL row object using SQLAlchemy
I am using Python with SQLAlchemy (and GeoAlchemy in my particular case), and I have a query that results in a single column of row objects. I wish to extract particular values from these row objects, ...
0
votes
0answers
18 views
Combine Query and COUNT(*) on ORM SQLAlchemy
I have query on sql
SELECT id, name, (SELECT COUNT(*) FROM keywords WHERE
keywords_categories_id = kt.id) AS count_keywords FROM
keywords_categories kt
That, i want do this query on ORM ...
0
votes
1answer
21 views
Automatically Build Database Table based on a Class with SQLAlchemy
I'm really new to SQLAlchemy, and I love it. Right now I'm doing a lot of things manually and I want to do things more 'pythonically' and dynamic.
So as an example, I have this short script that ...
1
vote
1answer
33 views
How to reuse / clone an sqlalchemy query
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. Apart from an occasional dynamic ...
1
vote
1answer
30 views
How to monitor/log sqlalchemy scoped sessions?
I am working on a legacy application that uses SqlAlchemy and whose architecture is...well...suboptimal.
I recently discovered there is a lot of (unneeded) mysql connections openned by the ...
0
votes
1answer
26 views
Why SQLAlchemy Session.filter().update/delete raise read-only exception when using RoutingSession?
The following is my config, slave is read-only:
engines = {
'master': create_engine( ...
3
votes
1answer
56 views
Write-once read-only field
We need to implement a write-once (on object create) read-only field with SQLAlchemy/Elixir.
A quick-and-dirty solution:
class User(Entity):
# some fields ...
_created = ...
0
votes
1answer
34 views
Python/SQLAlchemy not updating instances with list of tuples
I've been learning to use SQLAlchemy and am trying to get it to load data already in the database, change values of the objects by adding a tuple to a list, then save/update them in the database.
For ...
0
votes
1answer
21 views
SQLAlchemy - How to Filter Properties of Related Classes During Query Without Class Reference?
I struggled with the title for this question so let me just lay out the code:
File A:
class SomeClass(Base):
__tablename__ = 'some_classes'
id = Column(Integer, primary_key=True)
...
1
vote
1answer
36 views
SQLAlchemy creating two databases in one file with two different models
I want to initialize two databases with total different models in my database.py file.
database.py
engine1 = create_engine(uri1)
engine2 = create_engine(uri2)
session1 = ...
0
votes
1answer
28 views
Enthought Traits with SQLAlchemy
The question is obvious: is it possible to use both ets Traits and SQLAlchemy for the same class? If no, what an alternative approach could you suggest?
4
votes
1answer
309 views
How to make SQLAlchemy in Tornado to be async?
How to make SQLAlchemy in Tornado to be async ?
I found example for MongoDB on async mongo example but I couldn't find anything like motor for SQLAlchemy. Does anyone know how to make SQLAlchemy ...
1
vote
1answer
39 views
Assign python Decimal objects to MySQL DECIMAL columns
I have a table "City" defined as:
CREATE TABLE `City` (
`id` int(11) NOT NULL,
`lat` decimal(9,6) default NULL,
`long` decimal(9,6) default NULL,
`lm_index` int(11) default NULL,
...
2
votes
4answers
108 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
2answers
70 views
Warning: Data truncated for column 'src_address' at row 1
from pox.core import core
import pox.openflow.libopenflow_01 as of
import re
import datetime
import time
from sqlalchemy import create_engine, ForeignKey
from sqlalchemy import Column, Date, Integer, ...
0
votes
1answer
21 views
InvalidRequestError: VARCHAR requires a length on dialect mysql
I am trying to create a remote database using mysql on an Ubuntu machine running 12.04.
It has a root user with remote login enabled and no password.I have started the server.
output of
sudo ...
1
vote
1answer
49 views
OperationalError: (OperationalError) (2003, “Can't connect to MySQL server on '192.168.129.139' (111)”) None None
I am trying to create a remote database using mysql on an Ubuntu machine running 12.04.
It has a root user with remote login enabled and no password.I have started the server.
output of
sudo ...
0
votes
1answer
22 views
SQLAlchemy not producing proper SQL statement for multi column UniqueConstraints
Below are the two different attempts I have made in trying to achieve a multi-column unique constraint in sqlalchemy, both of which seems to have failed since a proper SQL statement is not being ...
0
votes
1answer
12 views
Add prefix_with clause to insert of a particular class
How can I customize the prefix_with of each model class in SQLAlchemy such that each one can have a different insert statement?
I actually want the OR IGNORE clause added to some of the classes.
PS: ...
1
vote
2answers
35 views
sqlalchemy OperationalError: (OperationalError) (1045, "Access denied for user
I am trying to create a remote database using mysql on an Ubuntu machine running 12.04.
It has a root user with remote login enabled.I have started the server.
output of
sudo netstat -tap | grep ...
0
votes
1answer
44 views
How do I write a query to get sqlalchemy objects from relationship?
I am learning python and using the framework pyramid with sqlalchemy as the orm. I can not figure out how relationships work. I have 2 tables, offices and users. the foreign key is on the users table ...



