SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.

learn more… | top users | synonyms

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
14 views

SqlAlchemy: count of distinct over multiple columns

I can't do: >>> session.query( func.count(distinct(Hit.ip_address, Hit.user_agent)).first() TypeError: distinct() takes exactly 1 argument (2 given) I can do: session.query( ...
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
24 views

What is local and remote side?

The questions below are related to database table relationships and the abstractions which SQLAlchemy provides for it. What is the difference between remote and local side? If there is remote_side ...
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 == ...
1
vote
1answer
14 views

SQLALchemy adjacency list get all parents

Here's an adjacency list example: class TreeNode(Base): __tablename__ = 'tree' id = Column(Integer, primary_key=True) parent_id = Column(Integer, ForeignKey(id)) name = ...
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, ...
0
votes
1answer
12 views

SQLAlchemy InvalidRequest on adding to relationship collection

I adding kind of 'migration' functionality to my Flask project. Initially I want to add user and roles which relates as many-to-many following way: users_to_roles_association_table = ...
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 ...
1
vote
0answers
18 views

How do I get alembic to emit custom DDL on after_create?

I've got a couple of custom DDL statements that I want to run after create table: update_function = DDL(""" ...
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
17 views

Which database to use for a very large dataset, and integrate with Elasticsearch? [closed]

I'm currently using SQLite3 for a project in Python, and it's getting to be quite large (a table with between 50m and 100m entries, which will probably have to be split up, among other things). I hear ...
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
18 views

Alembic : How to add unique constraint to existing column

I have a table 'test' having a column 'Name' with no constraints. I need to Alter this column by giving it 'unique' constraint. How should I do it? Should I use op.alter_column( '???' ) or ...
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 ...
0
votes
1answer
32 views

Flask-SQLAlchemy how to delete all rows in a single table

How do I delete all rows in a single table using Flask-SQLAlchemy? Looking for something like this: >>> users = models.User.query.all() >>> models.db.session.delete(users) # but ...
3
votes
0answers
25 views

Cross-database join in Flask-SQLAlchemy

I'm trying to do a cross-database join in Flask-SQLAlchemy: app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = '...Master...' app.config['SQLALCHEMY_BINDS'] = { 'Billing': '...Billing...' ...
0
votes
1answer
20 views

How to change OpenStack Ceilometer MySQL reporting password

Have asked this question on Ask OpenStack, but few views and no responses. I'm trying to use the SqlAlchemy (basically MySQL) driver and have found that the password the driver attempts to use is set ...
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
0answers
31 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 # -*- ...
-1
votes
0answers
22 views

Unable to install keystone while setting up openstack [closed]

I am trying to configure Openstack on my system Ubuntu 12.04 LTS, while installing keystone I am getting an error related to SQLAlchemy as follows: Preconfiguring packages ... Selecting previously ...
0
votes
0answers
35 views

sqlalchemy.exc.ProgrammingError: (ProgrammingError) relation does not exist

I'm trying Pyramid by creating the new project. I choose PostgreSQL and sqlalchemy. For now I have a table "photo" created manually and a model for it: class Photo(Base): """ The SQLAlchemy ...
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 ...

1 2 3 4 5 58