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

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...' ...
3
votes
0answers
397 views

Executing an Oracle stored procedure returning a REF CURSOR using SqlAlchemy

I have a stored procedure that I have defined in Oracle. In that procedure I need to return a recordset. To do this, I am using the SYS_REFCURSOR, which works great inside of Oracle (and with ...
2
votes
0answers
117 views

How to insert relational data (many to many) in SQL Alchemy by means of API queries in Python

EDIT: I have made a short question because I think this one is too long, sorry First of all, I am a newcomer to databases, programming languages and so on... so sorry if this question is not so ...
2
votes
0answers
115 views

Python library for data conversion

I'm writing a RESTful service using Pyramid. My data is stored as SQLAlchemy models. I need to convert it to elementary data structures (such as dicts, lists, ints, etc.) so that I can further render ...
2
votes
0answers
196 views

database query combining distinct and cast functions

I have a SQLAlchemy declarative class with a datetime field in it, like: class Logon(Base): id = Column(Integer, primary_key=True) timestamp = Column(types.DateTime) event_type = ...
2
votes
0answers
130 views

Adding output converter to pyodbc connection in SQLAlchemy

using: Python 2.7.3 SQLAlchemy 0.7.8 PyODBC 3.0.3 I have implemented my own Dialect for the EXASolution DB using PyODBC as the underlying db driver. I need to make use of PyODBC's output_converter ...
2
votes
0answers
201 views

SQLAlchemy trying to access a table in the wrong database

We use CherryPy and SQLAlchemy to build our web app and everything was fine until we tested with 2 concurrent users - then things started to go wrong! Not very good for a web app so I'd be very ...
2
votes
0answers
191 views

integrating sqlalchemy in webapp2

I'm developing an app using webapp2 outside google appengine, I want to integrate sqlalchemy and found an example on http://webpy.org/cookbook/sqlalchemy so I used the models.py from the example and ...
2
votes
0answers
184 views

sqlalchemy many to many between 3 tables

I have three tables linked together: users, statuses, items I have a fourth table that defines the relation between the three entities, that is: a user has a specific item in a specific status, at ...
2
votes
0answers
338 views

How can I map and unmap objects under SQLAlchemy?

Is it possible to map and unmap mapper relationships for a specific class under SQLA without having to call clear_mappers()? The latter would be very silly and I suspect would perform really poorly. ...
2
votes
0answers
221 views

How do you dynamically adjust the recursion depth for eager loading in the SQLAlchemy ORM?

I have a two-table hierarchical setup where table A references table B, which then references back to a different record in table A, and so on... but only up to a given recursion depth. I have this ...
2
votes
0answers
890 views

Cascading a delete to a many-to-many association table?

I have a problem with cascading a delete. I have two tables, and they are mapped many-to-many: class File(object): pass file_table = Table('file', metadata, Column('id', Integer, ...
1
vote
0answers
29 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 ...
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(""" ...
1
vote
0answers
26 views

Avoid retrieving object to delete in many to many rel SQLAlchemy

Is there a way to avoid retrieving an object to delete in many-to-many relationship? assign = Table('manytomany', Base.metadata, Column('pid', String(...), ForeignKey('parent.pid')), ...
1
vote
0answers
62 views

SQLAlchemy audit logging; how to handle deletes?

I'm using a modified version of the versioning code example that comes with SQLAlchemy to record a user id and date on changes. However, I also want to modify it so deletes are done by marking a ...
1
vote
0answers
32 views

how to update an instance to database in sqlalchemy

I want to update an instance which is in database, session.merge() does not work, then, which function should be used and how to code?
1
vote
0answers
40 views

sqlalchemy backref without name but cascade

We have a User class for people registered to the system. And we have a load of classes (and plugins add more) belonging to a user. So if a user is deleted, his things should be deleted. So here is, ...
1
vote
0answers
38 views

SqlAlchemy - when I iterate on a query, do I get a list or a iterator?

I'm starting to learn how to use SQLAlchemy and I'm running into some efficiency problems. I created an object mapping an existing big table on our Oracle database: engine = ...
1
vote
0answers
48 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 ...
1
vote
0answers
80 views

Scrapy crawler not seeing any items being scraped.

I am interested to pull out some urls from my database to be crawled first during my next re-crawl. I have written a custom middleware for this, but due to a bug with JOBDIR, I am unable to achieve ...
1
vote
0answers
29 views

Managing DB and Session operations BEFORE login

When a user comes to our webset/webapp, we would like the user to be able to go around the site and do things as normal (currently the site consists of almost exclusively CRUD operations). That way ...
1
vote
0answers
33 views

query to hierarchical mapper

I have two models, related with many-to-many, one of them is hierarchical model: #hierarchical model class Tag(Base): __tablename__ = "tags" id = Column(Integer, primary_key=True) name = ...
1
vote
0answers
76 views

Single SQLAlchemy mapped object resulting in many different instances in memory

I know that title was convoluted, so I'll try to give a simplified example of what I'm trying to do. Please bear with me for a bit. I'm working on an option values calculation and portfolio risk ...
1
vote
0answers
37 views

How to avoid the use of a complicated metaclass with sqlalchemy declarative

I've just noticed that in a stackoverflow reply sqlalchemy's creator Mike Bayer (zzzeek) said that "Custom metaclasses aren't needed with Declarative for simple use cases, and pretty much not at all ...
1
vote
0answers
128 views

sqlalchemy transaction does not rollback

For my integration test, I custom wrote the base class from unittest.TestCase. def initialize_sql(engine, dbsession): dbsession.configure(bind=engine) Base.metadata.bind = engine ...
1
vote
0answers
114 views

Python SQLAlchemy memory leak on Linux

I wrote a script that iterates through a large database table. (~150K rows.) To avoid using too much memory I'm using this windowed_query method. My script goes something like this: query = ...
1
vote
0answers
69 views

Strange overhead from python function call

I have some strange overhead coming from nowhere. I'm running a python script and making some SQL queries using SQLAlchemy. Here is my problem: def _create_connection(name): connection = ...
1
vote
0answers
33 views

SqlAlchemy makes strange implicit queries

I have relation in my user model photos = relationship('UserPhoto', backref='user', lazy='joined') After I get all entries with users = query.all() SA makes query with LEFT OUTER JOIN to ...
1
vote
0answers
29 views

How to make labels print on SQLAlchemy

Trying to get use_labels=True to work on this query below...but the library keeps spitting errors....i'm doing this complicated join and need to see the labels on the columns to try and grab the data. ...
1
vote
0answers
96 views

SQLAlchemy: How to use an instance in SQLAlchemy after session.close()?

I am having problems using an instance in SQLAlchemy after session.close(). This is the code: session = sqlalchemy.orm.sessionmaker(bind=engine) object = session.query(Entity).filter(Entity.id == ...
1
vote
0answers
89 views

Sqlalchemy-migrate create column with default values

I'm using SQLAlchemy-migrate 0.6.1 to handle versioning of my mysql database. The link points to the documentation. But they seem to have removed the docs for 0.6.1. I'm trying to add a new column ...
1
vote
0answers
78 views

SQLAlchemy Django: How can I import external Table declarations into the same Metadata?

I am using Django in combination with SQLAlchemy. I have the problem of putting all the Table declarations into the same Metadata. I have several modules in different packages with table declarations ...
1
vote
0answers
157 views

Generating fixture data with Python's fixture module

I'm working with the fixture module for the first time, trying to get a better set of fixture data so I can make our functional tests more complete. I'm finding the fixture module a bit clunky, and ...
1
vote
0answers
80 views

how to create 'view migration' script using alembic tool

Does somebody know how to use create_view function to create a view using alembic upgrade function? for example, we have: CREATE VIEW myview AS SELECT column_name(s) FROM table_name WHERE condition ...
1
vote
0answers
17 views

Returning multiplied property leading to recursion

I have the following case: class MyClass (object): @property def _value(self): return self.value * 5 mapper(MyClass, myTableMetadata, properties = { "value": synonym("_value", ...
1
vote
0answers
20 views

SQlachemy setup models of tables that are on different databases

I have two table (ta, tb) that ta is on database DA and tb is on database DB . If I would use raw sql I would like to do a query like: SELECT `da`.`ta`.x, `db`.`tb`.y FROM `da`.`ta`.x, `db`.`tb`.y ...
1
vote
0answers
130 views

sqlalchemy multi-session commit fails silently, how to change INSERT to UPDATE

I have a Event model, where external_id is set to be unique. session1 = create_session() session2 = create_session() e1 = Event(external_id=1, headline='session1') session1.add(e1) ...
1
vote
0answers
97 views

SQLAlchemy Metadata / excension helper class

Ok, so I am trying to write code that let's one extend classes to have "properties" or metadata key value pairs. For example in my app I want to use it for obj.color = 'test" But it gives me a ...
1
vote
0answers
337 views

Return last inserted ID sqlalchemy sqlite

I'm trying to get the last inserted row id from an sqlalchemy insert with sqlite. It appears this should be easy but I haven't managed to figure it out yet and didn't find anything in my searches so ...
1
vote
0answers
183 views

Turn off sqlalchemy warnings in nosetests

I'm trying to suppress all sqlalchemy warnings while running my test suite with nosetests. I read Turn off a warning in sqlalchemy ...
1
vote
0answers
132 views

Database sync on three different platforms

I currently have a web based application using cherryPy, PostgreSQL & SQLalchemy. I've been using it for years but am looking at developing an iOS app with a database on the device for locations ...
1
vote
0answers
68 views

SQLAlchemy-migrate on a new Table with a relationship?

Let's say I have created this new SQLAlchemy class: class C(Base): id = Column(Int, primary_key=True) tags = relationship("B") I want to create this table for SQLAlchemy-migrate. However, I ...
1
vote
0answers
191 views

json serialization of sqlalchemy association proxies

I serialize SQLAlchemy mapped objects with json.dumps. And I'd like that my objects' association proxy properties also get correctly serialized. They do not get correctly serialized by default, so I ...
1
vote
0answers
254 views

How to fix “mapped entity is required” error?

I'm using SQLAlchemy 0.6 with Python 2.6 medical-app/ facility/ recalls.py common/ __init__.py patient.py common.py settings.py So the ...
1
vote
0answers
43 views

sqlaclhemy - mapping a column to separate table

I have model with a list in it. The list contains id values. These ids need to be stored in separate table and no model is defined for this table in the xsd. The class models are generated using ...
1
vote
0answers
182 views

sqlalchemy: bindparam and exec proc not working in text

i am getting this error below when trying to bindparam with exec proc statement. if i replace the exec proc statement with select statement, the command works. am i missing something here ? ...
1
vote
0answers
203 views

How to optimize updating a record when using SQLAlchemy and Flask

I'm using SQLAlchemy with Flask and the Flask-SQLAlchemy extension. What I'm confused about is how to optimize the updating of a record. As a proof of concept I wrote the following endpoints: ...
1
vote
0answers
75 views

Add imported classes to metadata

All, I'm importing a group of classes for sqlalchemy from a separate file. They define the tables on my DB (inheriting from declarative_base()), and were originally located in the same file as my ...
1
vote
0answers
115 views

xml configuration for sqlalchemy

Is there a way to take out the python sqlalchemy mappings from the model classes? Till now I was using Declarative mapping where the class will extend Declarative base. But now I want to map some ...

1 2 3 4 5 11