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
420 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
32 views

Flask-SQLAlchemy different record count for .count() and .all()

In SQLAlchemy, ModelName.query.filter_by(field_name=value).count() returns correct record count, but ModelName.query.filter_by(field_name=value).all() only returns a single record. Doing a ...
2
votes
0answers
25 views

Camelot for Desktop Application

I am developing a GUI application in Python and have already used SQLAlchemy for database interactions. I was going to use PyQt for the GUI development and then came across the framework Camelot. I ...
2
votes
0answers
84 views

SQLAlchemy A conflicting state is already present in the identity map for key

I'm using the Flask-SqlAlchemy extension around SQLAlchemy to work with a SQLite database in Python. I have a many-to-many relationship set up between "Format" and "Movie" models. I have successfully ...
2
votes
0answers
73 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 ...
2
votes
0answers
150 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
118 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
211 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
133 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
121 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 ...
2
votes
0answers
208 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
195 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
192 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
359 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
223 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
913 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
27 views

subtracting datetime values in sqlalchemy

I'm curently trying to subtract a datetime.datetime.now() from a DateTime column in one of my sqlalchemy tables: session.query(gmos.GMOSMOSRawFITS.date_obs - datetime.datetime.now()).all() it fails ...
1
vote
0answers
37 views

Inheritance in Flask / SqlAlchemy

I have a class structure that looks similar to the below. The table that sqlalchemy creates with db.create_all looks good. Jobs are added with the appropriate columns filled out (school_id for ...
1
vote
0answers
97 views

MySQL (mariaDB) Connection Error with SqlAlchemy

Hello I have a mariaDB database on a Ubuntu server running in a virtual box. With 'Sequal Pro' i can connect without any problems (with the ssh option). Port forwarding like this: HOST 127.0.0.1 3306 ...
1
vote
0answers
16 views

sqlalchemy literal text added to an insert

I'm trying to get sqlalchemy to accept some more complex behavior on an insert, and can't figure out the idiomatic way to do it. To simplify things, I was just trying to add a literal string to the ...
1
vote
0answers
56 views

SQLAlchemy session issues with celery

I have scheduled a few recurring tasks with celery beat for our web app The app itself is build using pyramid web framework. Using the zopetransaction extension to manage session In celery, I am ...
1
vote
0answers
47 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
39 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
49 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
44 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
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 ...
1
vote
0answers
84 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
34 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
79 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
41 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
150 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
131 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
71 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
34 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
30 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
116 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
101 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
85 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
133 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
107 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
369 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
192 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
136 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
69 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
271 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
186 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 2 3 4 5 12