Tagged Questions
0
votes
1answer
19 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( ...
0
votes
2answers
51 views
sqlalchemy: Why create a sessionmaker before assign it to a Session object?
Why I always need to do that in 2 steps in SqlAlchemy?
import sqlalchemy as sa
import sqlalchemy.orm as orm
engine = sa.create_engine(<dbPath>, echo=True)
Session = ...
0
votes
1answer
25 views
SQLAlchemy session after exception
In SQLAlchemy, after an exception, the session needs to be set again because of the rollback. Should I therefor always set the session between calls?
user = User('username', 'Full Name', 'password', ...
0
votes
1answer
40 views
SQLAlchemy Session error
I have a problem with the session in SQLAlchemy, when i Add a row in the DB it's OK, but if i want to add another row without closing my app, It doesn't Add
This is the function in my Model:
def ...
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
1answer
77 views
Avoiding boilerplate session handling code in sqlalchemy functions
I have a python application which has lots of small database access functions, using sqlalchemy. I'm trying to avoid having lots of boilerplate session handling code around these functions.
I have ...
1
vote
1answer
29 views
How can I prevent specific classes from being updated/deleted in SQLAlchemy?
Let's say I have classes Dog(), Walrus(), Boot().
I want to make it so you cannot update Walrus objects ever although you can delete them and you can never delete Boot objects.
So if do:
dog1 = ...
0
votes
2answers
79 views
Session management with sqlalchemy and pyro
I'm actually using SQLAlchemy with MySQL and Pyro to make a server program. Many clients connect to this server to make requests. The programs only provides the information from the database MySQL ...
1
vote
2answers
92 views
How to create two mutually dependent objects in SQLAlchemy?
I have two Python classes Note and Link mapping to PostgresQL tables. Note has a foreign-key reference to Link, while Link points back to the node through a piece of JSON text. Links point to other ...
0
votes
1answer
62 views
how does SQLAlchemy InvalidRequestError('Transaction XXX is not on the active transaction list) happen?
Recently I've got a SQLAlchemy InvalidRequestError.
The error log shows:
InvalidRequestError: Transaction <sqlalchemy.orm.session.SessionTransaction object at
0x106830dd0> is not on the active ...
0
votes
1answer
267 views
SQLAlchemy session: how to keep it alive?
I have a session object that gets passed around a whole lot and at some point the following lines of code are called (this is unavoidable):
import transaction
transaction.commit()
This renders the ...
1
vote
2answers
70 views
How do I go about storing session objects?
I have a few a few model classes such as a user class which is passed a dictionary, and wraps it providing various methods, some of which communicate with the database when a value needs to be ...
1
vote
1answer
104 views
Refreshing detached entity in sqlalchemy
I need to attach an object to session in such a way that it will not differ from one persisted in db. (Easier to explain it with code):
...
1
vote
0answers
129 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)
...
0
votes
0answers
51 views
How to separate 'write' 'transactions' from other 'select 'queries in RoutingSession of Sqlalchemy using MySQL master/slave
I want to put sql 'write' and 'transactions'(include 'select','write') operation in Master, and other 'select' in Slave. My Operations include following:
session.query(SomeTable).filter(...).all()
...
0
votes
1answer
93 views
“get_bind” method was called twice in sqlalchemy when using RoutingSession
I am using master/slave of sqlalchemy, by RoutingSession like
engines = {
'master':create_engine("sqlite:///master.db"),
'other':create_engine("sqlite:///other.db"),
...
4
votes
1answer
2k views
SQLAlchemy proper session handling in multi-thread applications
I have trouble understanding how to properly open and close database sessions efficiently, as I understood by the sqlalchemy documentation, if I use scoped_session to construct my Session object, and ...
2
votes
0answers
941 views
Why Beaker library is so popular in python web development? [closed]
I am working of webapp using Flask and sqlalchemy. For managing user session on server side I searched a lot and only one name came everywhere Beaker. But there was no mention why is it echoed almost ...
0
votes
1answer
206 views
Python database Session (meta.Session)
I have a ton of code that is editing a database, but what I want to do is load all of the data I need to edit or add into a session, return a webpage and once the user has looked over the data, then ...
1
vote
1answer
525 views
SQLAlchemy session handling in delayed Celery tasks
I am using a relational database via SQLAlchemy. I want to spawn a job that deals with databases using Celery. There is a code:
from sqlalchemy.orm.session import Session
from celery.task import task
...
1
vote
1answer
426 views
Why commit not give changes if we use session.begin_nested of SQLAlchemy?
I have table in mysql and engine is InnoDB.
System Configuration
mysql --version
mysql Ver 14.14 Distrib 5.1.58, for redhat-linux-gnu (x86_64) using readline 5.1
python --version
Python 2.7
file: ...
5
votes
2answers
3k views
Session differences in Pylons and Pyramid
As a Pylons user I'm trying to switch to Pyramid now trying to understand differences.
In Pylons I was used to define Session in myproj.model.meta as:
Session = scoped_session(sessionmaker())
then ...
11
votes
2answers
2k views
What's the recommended scoped_session usage pattern in a multithreaded sqlalchemy webapp?
I'm writing an application with python and sqlalchemy-0.7. It starts by initializing the sqlalchemy orm (using declarative) and then it starts a multithreaded web server - I'm currently using web.py ...
3
votes
5answers
677 views
Why does this SQLAlchemy example commit changes to the DB?
This example illustrates a mystery I encountered in an application I am building. The application needs to support an option allowing the user to exercise the code without actually committing changes ...
13
votes
1answer
3k views
Sql Alchemy connecion time Out
I am using sqlalchemy with MySQL, and executing query with sql expression. When executing a number of query then it time out. I found an answer but it is not clear to me. Please, any one can help me?
...
2
votes
1answer
382 views
SQLAlchemy: who is in charge of the “session”? ( and how to unit-test with sessions )
I need some guidance on how to use session objects with SQLAlchemy, and how to organize Unit Tests of my mapped objects.
What I would like to able to do is something like this:
thing = BigThing() # ...
0
votes
2answers
1k views
SQLAlchemy: session.add
I'm trying to add two new object using session.add(object) twice..but the first object disappear on session.commit()...why it happens?