SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.
93
votes
1answer
3k views
SQLAlchemy versioning cares about class import order
I was following the guide here:
http://www.sqlalchemy.org/docs/orm/examples.html?highlight=versioning#versioned-objects
and have come across an issue. I have defined my relationships like:
...
16
votes
4answers
7k views
Efficiently updating database using SQLAlchemy ORM
I'm starting a new application and looking at using an ORM -- in particular, SQLAlchemy.
Say I've got a column 'foo' in my database and I want to increment it. In straight sqlite, this is easy:
db ...
15
votes
1answer
1k views
SQLAlchemy: What's the difference between flush() and commit()?
Can anyone tell me, in plain English, what the difference is between flush() and commit() in SQLAlchemy?
I've read the docs, but am none the wiser - they seem to assume a pre-understanding that I ...
15
votes
3answers
3k views
What's the difference between filter and filter_by in SQLAlchemy?
Could anyone explain the difference between filter and filter_by functions in SQLAlchemy? I am confused and can't really see the difference. Which one should I be using?
Thanks,
Boda Cydo
14
votes
2answers
2k views
py2exe + sqlalchemy + sqlite problem
I am playing around with getting some basic stuff to work in Python before i go into full speed dev mode. Here are the specifics:
Python 2.5.4
PyQt4 4.4.3
SqlAlchemy 0.5.2
py2exe 0.6.9
setuptools ...
13
votes
2answers
3k views
SQLAlchemy ORDER BY DESCENDING?
How can I use ORDER BY descending in a SQLAlchemy query like the following?
This query works, but returns them in ascending order:
query = (model.Session.query(model.Entry)
...
13
votes
1answer
2k views
Bulk insert with sqlAlchemy ORM
Is there any way to get sqlalchemy to do a bulk insert rather than inserting each individual object. i.e.,
doing:
INSERT INTO `foo` (`bar`) VALUES (1), (2), (3)
rather than:
INSERT INTO `foo` ...
13
votes
4answers
6k views
SQLAlchemy and django, is it production ready?
Has anyone used SQLAlchemy in addition to Django's ORM?
I'd like to use Django's ORM for object manipulation and SQLalchemy for complex queries (like those that require left outer joins).
Is it ...
12
votes
2answers
2k views
Twisted + SQLAlchemy and the best way to do it
So I'm writing yet another Twisted based daemon. It'll have an xmlrpc interface as usual so I can easily communicate with it and have other processes interchange data with it as needed.
This daemon ...
12
votes
6answers
5k views
SQLAlchemy is convoluted?
This may seems rather argumentative, but I just went through SQLAlchemy's ORM tutorial and ended up with the following code:
from sqlalchemy import create_engine
from sqlalchemy import Table, Column, ...
12
votes
2answers
2k views
SQLAlchemy - Dictionary of tags
I have question regarding the SQLAlchemy. How can I add into my mapped class the dictionary-like attribute, which maps the string keys into string values and which will be stored in the database (in ...
11
votes
2answers
375 views
What is the best way pre filter user access for sqlalchemy queries?
I have been looking at the sqlalchemy recipes on their wiki, but don't know which one is best to implement what I am trying to do.
Every row on in my tables have an user_id associated with it. Right ...
11
votes
2answers
1k views
method of iterating over sqlalchemy model's defined columns?
I've been trying to figure out how to iterate over the list of columns defined in a SqlAlchemy model. I want it for writing some serialization and copy methods to a couple of models. I can't just ...
11
votes
3answers
1k views
How can I profile a SQLAlchemy powered application?
Does anyone have experience profiling a Python/SQLAlchemy app? And what are the best way to find bottlenecks and design flaws?
We have a Python application where the database layer is handled by ...
11
votes
7answers
3k views
Is Pylons enterprise-ready?
I am a developer who is looking for an Enterprise-ready web application framework for Python. My main concern is long-term support, extensive feature set and reliability.
I have been experimenting ...
11
votes
2answers
2k views
Any reasons not to use SQLObject over SQLAlchemy?
I don't expect to need much more than basic CRUD type functionality. I know that SQLAlchemy is more flexible, but the syntax etc of sqlobject just seem to be a bit easier to get up and going with.
11
votes
5answers
6k views
Mysql connection pooling question: is it worth it?
I recall hearing that the connection process in mysql was designed to be very fast compared to other RDBMSes, and that therefore using a library that provides connection pooling (SQLAlchemy) won't ...
10
votes
2answers
710 views
sqlachemy: cascade delete
I must be missing something trivial with SQLAlchemy's cascade options because I cannot get a simple cascade delete to operate correctly -- if a parent element is a deleted, the children persist, with ...
10
votes
2answers
818 views
Does SQLAlchemy have an equivalent of Django's get_or_create?
I want to get an object from the database if it already exists (based on provided parameters) or create it if it does not.
Django's get_or_create does this. Is there an equivalent shortcut in ...
10
votes
3answers
2k views
SQLAlchemy Obtain Primary Key With Autoincrement Before Commit
When I have created a table with an auto-incrementing primary key, is there a way to obtain what the primary key would be (that is, do something like reserve the primary key) without actually ...
10
votes
4answers
1k views
How can I use UUIDs in SQLAlchemy?
Is there a way to define a column (primary key) as uuid in sqlalchemy if using postgresql?
9
votes
1answer
297 views
how to enforce sqlite select for update transaction behavior in sqlalchemy
Yesterday I was working with some sqlalchemy stuff that needed a "select ... for update" concept to avoid a race condition. Adding .with_lockmode('update') to the query works a treat on InnoDB and ...
9
votes
6answers
839 views
Database on the fly with scripting languages
I have a set of .csv files that I want to process. It would be far easier to process it with SQL queries. I wonder if there is some way to load a .csv file and use SQL language to look into it with a ...
9
votes
3answers
1k views
Should I create mapper objects or use the declarative syntax in SQLAlchemy?
There are two (three, but I'm not counting Elixir, as its not "official") ways to define a persisting object with SQLAlchemy:
Explicit syntax for mapper objects
from sqlalchemy import Table, Column, ...
9
votes
2answers
1k views
SQLAlchemy Inheritance
I'm a bit confused about inheritance under sqlalchemy, to the point where I'm not even sure what type of inheritance (single table, joined table, concrete) I should be using here. I've got a base ...
9
votes
6answers
2k views
Is there anything similar to SQLAlchemy?
I've recently started to fell in love with SQLAlchemy. You can write clean and fast SQL statements without having to write one line of SQL. There is no need to write most of the meta configuration you ...
9
votes
9answers
2k views
What am I missing about SqlAlchemy?
So I wanted to introduce a friend to the wonderful world of python ORM libraries, which I still know little about.
Our databases are extremely fragmented and at times under normalized (for ...
9
votes
4answers
3k views
Does SQLAlchemy support caching?
Does SQLAlchemy support some kind of caching so if i have lots of time the same query it would return the response from cache instead of querying the database until i clear the cache for that query ...
8
votes
1answer
165 views
+50
How to integrate SQLAlchemy and a subclassed Numpy.ndarray smoothly and in a pythonic way?
I would like to store numpy-arrays with annotations (like name) via SQLAlchemy within a relational database. To do so,
I seperate the numpy array from its data via an data transfere object ...
8
votes
1answer
418 views
SqlAlchemy: get object instance state
This: Intro to object states lists the four permutations of presence-in-DB/presence-in-session:
transient, pending, persistent & detached
Is there any way of querying a given object to return ...
8
votes
4answers
406 views
What are some strategies for maintaining a common database schema with a team of developers and no DBA?
I'm curious about how others have approached the problem of maintaining and synchronizing database changes across many (10+) developers without a DBA? What I mean, basically, is that if someone wants ...
8
votes
2answers
2k views
I need a sample of python unit testing sqlalchemy model with nose
Can someone show me how to write unit tests for sqlalchemy model I created using nose.
I just need one simple example.
Thanks.
7
votes
3answers
683 views
How do I get a raw, compiled SQL query from a SQLAlchemy expression?
I have a SQLAlchemy query object and want to get the text of the compiled SQL statement, with all its parameters bound (e.g. no %s or other variables waiting to be bound by the statement compiler or ...
7
votes
4answers
706 views
How to efficiently manage frequent schema changes using sqlalchemy?
I'm programming a web application using sqlalchemy. Everything was smooth during the first phase of development when the site was not in production. I could easily change the database schema by simply ...
7
votes
1answer
220 views
trouble getting pylint to find inherited methods in pylons/SA models
I have a Pylons app that I'm using SqlAlchemy declarative models for. In order to make the code a bit cleaner I add a .query onto the SA Base and inherit all my models from that.
So in my ...
7
votes
2answers
431 views
Help with copy and deepcopy in Python
I think I tried to ask for far too much in my previous question so apologies for that. Let me lay out my situation in as simple a manner as I can this time.
Basically, I've got a bunch of ...
7
votes
3answers
467 views
Discovering referers to SQLAlchemy object
I have a lot of model classes with ralations between them with a CRUD interface to edit. The problem is that some objects can't be deleted since there are other objects refering to them. Sometimes I ...
7
votes
1answer
1k views
How to return the count of related entities in sqlalchemy query
I'm new to sqlalchemy, and while the documentation seems fairly thorough, I couldn't find a way to do quite what I want.
Say I have two tables: forum and post. Each forum has a parent forum, and any ...
7
votes
5answers
2k views
sqlalchemy flush() and get inserted id?
I want to do something like this:
f = Foo(bar='x')
session.add(f)
session.flush()
# do additional queries using f.id before commit()
print f.id # should be not None
session.commit()
But f.id is ...
7
votes
1answer
761 views
Sqlalchemy - Difference between query and query.all in for loops
I would like to ask whats the difference between
for row in session.Query(Model1):
pass
and
for row in session.Query(Model1).all():
pass
is the first somehow an iterator bombarding your ...
7
votes
5answers
2k views
Getting random row through SQLAlchemy
How do I select a(or some) random row(s) from a table using SQLAlchemy?
6
votes
2answers
86 views
Is there an SQLAlchemy equivalent of django-evolution?
All I want is to have a workflow somewhat similar to:
Add django_evolution to the INSTALLED_APPS for your project
Run ./manage.py syncdb
Make modifications to the model files in your project
Run ...
6
votes
1answer
196 views
How to do an upsert with SqlAlchemy?
I have a record that I want to exist in the database if it is not there, and if it is there already (primary key exists) I want the fields to be updated to the current state. This is often called an ...
6
votes
1answer
294 views
SQLAlchemy circular dependency - how to solve it?
I have two tables, News and Files:
# unrelated columns removed
class News(db.Model):
id = db.Column(db.Integer, primary_key=True)
file_id_logo = db.Column(db.Integer, ...
6
votes
1answer
373 views
Unique validator in WTForms with SQLAlchemy models
I defined some WTForms forms in an application that uses SQLALchemy to manage database operations.
That exemple form is managing Categories:
class CategoryForm(Form):
name = TextField(u'name', ...
6
votes
3answers
607 views
Python: interact with complex data warehouse
We've worked hard to work up a full dimensional database model of our problem, and now it's time to start coding. Our previous projects have used hand-crafted queries constructed by string ...
6
votes
0answers
158 views
QuerySelectField works on one server, breaks on another with same code
I'm in the process of setting up a test installation of my current Python/Django project. Everything works great on my dev server, but we recently set up a new VM for the test and eventual production ...
6
votes
1answer
460 views
Unique constraint using data in multiple tables (SQL / SQLAlchemy)
A top class called Parametric is used to create objects which can have parameters associated with them:
class Parametric(object):
def __init__(self, name):
self.name = name
self.pars = []
class ...
6
votes
1answer
1k views
SQLAlchemy DetachedInstanceError with regular attribute (not a relation)
I just started using SQLAlchemy and get a DetachedInstanceError and can't find much information on this anywhere. I am using the instance outside a session, so it is natural that SQLAlchemy is unable ...
6
votes
2answers
1k views
Handle mysql restart in SQLAlchemy
My Pylons app uses local MySQL server via SQLAlchemy and python-MySQLdb. When the server is restarted, open pooled connections are apparently closed, but the application doesn't know about this and ...