SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.
2
votes
1answer
71 views
python: How can I test my database model using in-memory db?
I am developing a project in Flask and using SQLAlchemy as ORM
I have a User model as
class User(UserMixin, db.Model):
__tablename__ = 'users'
# noinspection PyShadowingBuiltins
uuid = ...
3
votes
1answer
32 views
How does sqlachemy query method work?
I am learning sqlachemy, I'm relatively new to Python.
When I read its documentation, I saw this kind of usage, for example:
query.filter(User.name == 'ed')
Wouldn't Python evaluate the ...
0
votes
0answers
60 views
Python unicode display in Django admin
I imported some unicode data from MS excel to MySQL via SQLAlchemy as follows
engine = create_engine('mysql://user:password@localhost/db_name', convert_unicode=True, echo=False)
The model is ...
1
vote
0answers
25 views
Independent SQLAlchemy models [duplicate]
When declaring models in SQLAlchemy, you create a declarative_base class from which to inherit. I'm finding this somewhat problematic when wanting to declare models in multiple places and using them ...
0
votes
1answer
48 views
Flask SQLAlchemy does not commit until App ends
I've started my session like so:
from flask.ext.sqlalchemy import SQLAlchemy
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql://mydatabase'
db = SQLAlchemy(app)
And I'm Adding entries to my database ...
0
votes
1answer
34 views
How to achieve that every record in two tables have different id?
I have two tables inherited from base table ( SQLALCHEMY models)
class Base(object):
def __tablename__(self):
return self.__name__.lower()
id = Column(Integer, primary_key=True, ...
2
votes
1answer
104 views
Setting application_name on Postgres/SQLAlchemy
Looking at the output of select * from pg_stat_activity;, I see a column called application_name, described here.
I see psql sets this value correctly (to psql...), but my application code ...
3
votes
1answer
51 views
sqlite - works with file, dies with :memory:
My script fails tests when working with SQLite base (via sqlalchemy) created in :memory: and passes tests when working with a base created with physical file.
The script is multi-threaded. I know it ...
0
votes
1answer
30 views
Django equivalent of SqlAlchemy's literal_column
Trying to port some SqlAlchemy to Django and I've got this tricky little bit:
version = Column(
BIGINT,
default=literal_column(
'UNIX_TIMESTAMP() * 1000000 + ...
0
votes
1answer
14 views
Change behavior of stacked filters to or in sqlalchemy
I'd like something like the following:
q = db.session.query(db.models.Something).filter(a==a).filter(b==b).or().filter(c==c).filter(foo==bar)
This would mean a=a and b=b or c=c and d=d.
I would ...
1
vote
1answer
57 views
Alembic: How to migrate custom type in a model?
My User model is
class User(UserMixin, db.Model):
__tablename__ = 'users'
# noinspection PyShadowingBuiltins
uuid = Column('uuid', GUID(), default=uuid.uuid4, primary_key=True,
...
0
votes
1answer
45 views
How to avoid two queries and replace with join?
I have one model (using sqlalchemy) Person. Every Person in this scenario can have only one Job or none (Job is also model). I need to retrieve array of dictionaries (every dictionary represent one ...
2
votes
1answer
110 views
'RelationshipProperty' object has no attribute 'c' error in sqlalchemy
I'm having a lot of trouble implementing SQLalchemy for a legacy MSSQL database. It is a big existing database, so I wanted to use sqlautocode to generate the files for me, because using autoload to ...
2
votes
1answer
52 views
Is it possible to rollback create_all in sqlalchemy?
According to THIS question for some DBMSs it is possible to rollback CREATE TABLE statement.
Particularry it is possible for sqlite (although it is undocumented).
So my question is, is it possible ...
1
vote
1answer
108 views
sqlalchemy.exc.ArgumentError: Can't load plugin: sqlalchemy.dialects:driver
I am trying to run alembic migration and when I run
alembic revision --autogenerate -m "Added initial tables"
It fails saying
sqlalchemy.exc.ArgumentError: Can't load plugin: ...
0
votes
0answers
14 views
Update SQAlchemy field threadsafe from multiple processes
I have a database table that describes a job that is processing on a distributed system. So the entire job is split up into many tiny parts and each part is processed on a different machine in it's ...
0
votes
1answer
64 views
insertmany into the in memory sqllite db - SQLite Date type only accepts Python date objects as input
I have a table that I am trying to insert many using a dict object.
engine = create_engine('sqlite:///:memory:', echo=True)
metadata = MetaData()
hockey= Table('hockey', metadata,
Column('team', ...
0
votes
0answers
37 views
Using expire_on_commit with autocommit in SQLAlchemy
For various reasons, I've configured my sessionmaker with autoflush=False, expire_on_commit=False, autocommit=True. Mainly, I just want autocommit behavior. The other flags are set due the warning in ...
1
vote
2answers
71 views
How can I get a SQLAlchemy ORM object's previous state after a db update?
The issue is that I can't figure out how to use SQLAlchemy to notify me when an object goes into a new state.
I'm using SQLAlchemy ORM (Declarative) to update an object:
class ...
0
votes
1answer
20 views
is it possible to unload the relationship data of sqlalchemy objects once loaded?
I am working in a library that needs to read several objects that have a one-to-many relationship with another class. The following code represents a highly simplified version of the code of my ...
0
votes
1answer
83 views
Querying one-to-many relation further linked by other tables
Sorry I can't think of a better generic title for this. I am building a photo voting app using pyramid and sqlalchemy. Full schema and orm is at the end, but the most relevant information are
photo ...
0
votes
1answer
136 views
python sqlalchemy insert multiple lines in a tuple data structure
I have been researching how to insert a list of ~500 tuples (rows) that has 7 elements (columns) into a database. I have read through various posts on stackoverflow as well as other forums. I found ...
0
votes
1answer
31 views
python: How can I test for @unittest.expectedFailure for a specific type of error?
consider this test function
@unittest.expectedFailure
def test_add_existing_user(self):
user = User('test_add_existing_user', 'welcome')
db.session.add(user)
...
1
vote
2answers
144 views
SQLAlchemy can't connect to an mssql database
Here's my simple test script. Just trying to do a basic select statement. Found the basic bits on a tutorial.
from sqlalchemy import *
db = ...
0
votes
1answer
47 views
sqlalchemy test: adding same user twice not throwing exception when unique=True
I am using Flask and my SQLAlchemy model is
class User(UserMixin, db.Model):
__tablename__ = 'users'
# noinspection PyShadowingBuiltins
uuid = Column('uuid', GUID(), default=uuid.uuid4, ...
1
vote
2answers
49 views
How to create a list of all accessible objects in Pyramid / SQLAlchemy?
I have developed a small web application using the pyramid framework and just implemented the integrated security features. I have created a ressource object, let's call it Page, and I endowed it with ...
1
vote
0answers
31 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 = ...
0
votes
1answer
56 views
SQLAlchemy Query - Python
I am a little confused on SQLAlchemy and how queries work. Let's say I have a table Team, and another table Games. I set it up so if I do Team.games it will call up all the games Team has played. ...
0
votes
1answer
71 views
Flask : retrieve data from db and store it session
I have db.model like :
class UserProfile(db.Model):
__tablename__ = 'UserProfile'
nickname = db.Column(db.String(40), primary_key=True)
wm = db.Column(db.Boolean)
def __init__(self,name):
...
0
votes
1answer
63 views
Flask + WTForms: updating a row
I try to update an existing row in the database. When I submit the form I'm directed to /item/edit/ which triggers a 404. I have similar code in a different project and that works correctly. I can't ...
0
votes
1answer
64 views
sql alchemy + pyramid, “request cache”
i'm making a website, using pyramid, sqlalchemy and chameleon...
on the view.py i send the sqlalchemy:
@view_config(route_name='entity_subpage')
def entity_subpage_view(request):
dbsession = ...
0
votes
1answer
55 views
sqlalchemy and double outerjoin
I need to do double outer join on following 2 tables A and B to get presented result
using SQLAlchemy ORM or SQL expressions.
Table B should be outer joined twice to get joined 2 result sets ...
0
votes
1answer
28 views
SQLAlchemy: Multiple foreignKeys of the same type
I have a class similar to this:
class Component(Base):
__tablename__ = 'components'
id = Column(Integer, primary_key=True)
.
.
.
.
alternate1_id = Column(Integer, ...
1
vote
1answer
42 views
How to dynamically select columns to query in SQLAlchemy?
I want to select specific values from a table, by looking at the code from SQLAlchemy session.py
def query(self, *entities, **kwargs):
"""Return a new ``Query`` object corresponding to this ...
1
vote
0answers
45 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 ...
0
votes
3answers
119 views
Using DATEADD in sqlalchemy
How can I rewrite the following sql statement with sqlalchemy in python. I have been searching for 30 mins but still couldn't find any solutions.
DATEADD(NOW(), INTERVAL 1 DAY)
or
INSERT INTO ...
1
vote
1answer
32 views
SQLAlchemy recovery after a rolback “This transaction is inactive”
I'm trying to recover after a primary key violation in an insert, by logging the duplicate user to another table. However, my code produces the error InvalidRequestError: This transaction is inactive.
...
2
votes
2answers
58 views
python sqlalchemy label usage
I know I can use the label method for alias, but I can't figure out how to use the labeled element later in the query - something like the following:
...
0
votes
2answers
77 views
Serving a page with multiple database's
What i have: multiple identical databses and a SQL-Alchemy setup.
What I need to achieve: a single "Flask" function able to query all the databses. All other functions need to access only one of the ...
0
votes
1answer
26 views
What units is the pool_recycle flag in? [SQLAlchemy]
When connecting to a engine in SQLAlchemy, you can set a pool_recycle flag to prevent MySQL disconnecting automatically after 8 hours. Does anyone know what this pool_recycle flag's unit? Is it ...
1
vote
1answer
69 views
Sqlalchemy: joinedload + limit
Given the following statement:
p = db.query(Profile).options(joinedload('*')).filter_by(id=p.id).limit(1).one()
I will get a subquery + a join, instead of a "pure" join:
SELECT [...]
FROM (SELECT ...
0
votes
1answer
46 views
Circular dependency in models with sqlalchemy
I'm creating a webapp which uses SQLAlchemy to access the database. I'm getting stuck with two models which are referencing to each other and ending up in an circular import which throws the following ...
0
votes
0answers
42 views
How to query in models_committed signal? Flask-Sqlalchemy
from flask.ext.sqlalchemy import models_committed
def on_models_committed(sender, changes):
print "Works good before next line"
SomeModel.query.all()
app = Flask(__name__)
...
0
votes
1answer
65 views
alembic and getting the last inserted value
I'm using alembic to manage my database structure.
After adding a table using id as Integer and primary key the id column will be an autoincrement-column. How do I query the data in the upgrade ...
1
vote
1answer
65 views
SQLAlchemy: How to save an object with the foreign key?
I've got these classes.
class User(object):
query = db_session.query_property()
def __init__(self, username, passhash, salt):
self.username = username
...
0
votes
0answers
50 views
Oracle dates in sqlalchemy
Running the following query in Oracle:
SELECT * FROM my_table WHERE my_table.col = TO_DATE('2013-01-01','YYYY-MM-DD')
doesn't retrieve the same results as the following query under MySql:
SELECT * ...
0
votes
0answers
45 views
Sqlalchemy Querying and filtering
So lets say i have some simple classes defined as such
class Person
birthday
class Address
state
and i want the the oldest person from each state, i think i could get it
with something ...
1
vote
1answer
55 views
python inheritance in sqlalchemy
So I'm new to this python and sqlalchemy. I need some help with inheritance or maybe a mixin (but rather inheritance).
I have some psudo code but I haven't really made any progress to get anywhere:
...
0
votes
1answer
87 views
SQLAlchemy relationship error with one-to-many rel
So I have this one-to-many relationship in SQLAlchemy (0.8):
class Parent(Base):
__tablename__ = "parents"
cid = Column(Integer(11), primary_key = True, autoincrement = False)
uid = ...
1
vote
1answer
37 views
How do I connect to multiple databases on the same SQL Server with sqlalchemy?
I can specify the default database that the connection starts out in, but is it possible to switch databases, either when creating my engine, after creating it, or (preferably) when creating ...



