Tagged Questions

6
votes
2answers
868 views

Update an sqlite database schema with sqlalchemy and elixir

I've created a python application which uses elixir/sqlalchemy to store data. The second release of the software requires any files created in the previous version to be updated in order to add/delete ...
5
votes
1answer
2k views

Selecting distinct column values in SQLAlchemy/Elixir

In a little script I'm writing using SQLAlchemy and Elixir, I need to get all the distinct values for a particular column. In ordinary SQL it'd be a simple matter of SELECT DISTINCT `column` FROM ...
5
votes
2answers
795 views

Pylons with Elixir

I would like to use Pylons with Elixir, however, I am not sure what is the best way to get about doing this. There are several blog posts (cleverdevil, beachcoder, adam hoscilo) and even an entire new ...
4
votes
3answers
474 views

What are the benefits of using Elixir

... vs declarative sqlalchemy ?
4
votes
2answers
505 views

SQLAlchemy and Elixir?

I have been using django ORM, it's nice and very easy, but this time I'm doing a desktop app and I found SQLAlchemy, but I'm not sure to use it with Elixir. What do you think? is it really useful?
4
votes
5answers
2k views

Execute sql query with Elixir

I'm using Elixir in a project that connects to a postgres database. I want to run the following query on the database I'm connected to, but I'm not sure how to do it as I'm rather new to Elixir and ...
3
votes
2answers
62 views

How to iterate through every class declaration, descended from a particular base class?

I was wandering how does elixir\sqlalchemy get to know all the entity classes I've declared in my model, when I call setup_all()? I need that kind of functionality in a little project of mine, but I ...
3
votes
3answers
441 views

MySQL server has gone away - Elixir/SQLAlchemy - Disconnect handling via checkout event handler doesn't work

Update 3/4: I've done some testing and proved that using checkout event handler to check disconnects works with Elixir. Beginning to think my problem has something to do with calling session.commit() ...
2
votes
2answers
78 views

Elixir for Python 3?

I have a problem installing Elixir with Python 3 although I have installed SqlAlchemy 0.7.3 successfully? I've tried google-ing but I am loosing hope. Is there really a version of Elixir for Python 3? ...
2
votes
1answer
572 views

Should I be using SQLObject, SQLAlchemy, or SQLAlchemy + Elixir?

I've been using SQLObject for a long while, but noticed that SQLAlchemy has become a lot more popular in the last couple years: http://www.google.com/trends?q=sqlobject,+sqlalchemy Are there ...
2
votes
0answers
206 views

Feedback for Camelot

My needs : I need to develop an GUI application that is cross platform the chosen solution must be the fastest to implement it should be easy to extend The application is just a database ...
2
votes
1answer
303 views

Elixir - deleting rows in a ManyToMany intermediate table

I have two tables with a ManyToMany relation between them. Sometimes I need to refresh the database so I delete elements from both tables. However relations between deleted rows are still stored ...
1
vote
1answer
104 views

Why does Elixir/SQLAlchemy's session.bind get set to None within threads?

I'll start with some simplified test code to demonstrate the issue I'm referencing. t_model.py from elixir import * metadata.bind = 'sqlite:///test.db' session.bind = metadata.bind t_main.py ...
1
vote
2answers
65 views

How to create an Elixir class that has a ManyToMany relationship with itself

I'm having trouble thinking this through, but basically I want to create an Elixir class called Assets which can have many Assets. So, it could look something like this (but this doesn't work, ...
1
vote
1answer
59 views

How do you save models in Elixir

I've got a database created using Django models which I'm now accessing using sqlalchemy and elixir. The querying works and I can pull items out of the database perfectly happily but when I edit them ...
1
vote
1answer
78 views

Using sqlalchemy.sql.functions.char_length as a filter condition

I'm using Elixir and sqla 0.6, and I'm trying to query my model: class Document(Entity): using_options(shortnames=True, order_by='doc_date') doc_number = Field(Unicode(20),index=True) ...
1
vote
1answer
226 views

SQLAlchemy/Elixir - querying to check entity's membership in a many-to-many relationship list

I am trying to construct a sqlalchemy query to get the list of names of all professors who are assistants professors on MIT. Note that there can be multiple assistant professors associated with a ...
1
vote
1answer
174 views

Is there an equivalent of ActiveRecord's find(:include) in Elixir/SQLAlchemy?

I had been using ActiveRecord previously and it allowed to load all associations of an object using an optional :include argument to its dynamic finders. I have recently started using Elixir for a ...
1
vote
1answer
411 views

How to do atomic increment/decrement with Elixir/SQLAlchemy

I'd like to increment (or decrement) a score field in an Elixir entity: class Posting(Entity): score = Field(Integer, PassiveDefault(text('0'))) def upvote(self): self.score = self.score ...
1
vote
2answers
606 views

dump csv from sqlalchemy

For some reason, I want to dump a table from a database (sqlite3) in the form of a csv file. I'm using a python script with elixir (based on sqlalchemy) to modify the database. I was wondering if ...
1
vote
3answers
812 views

Sqlalchemy+elixir: How query with a ManyToMany relationship?

I'm using sqlalchemy with Elixir and have some troubles trying to make a query.. I have 2 entities, Customer and CustomerList, with a many to many relationship. customer_lists_customers_table = ...
1
vote
2answers
493 views

How to create a non-persistent Elixir/SQLAlchemy object?

because of legacy data which is not available in the database but some external files, I want to create a SQLAlchemy object which contains data read from the external files, but isn't written to the ...
1
vote
1answer
98 views

In Elixir or SQLAlchemy, is there a way to also store a comment for a/each field in my entities?

Our project is basically a web interface to several systems of record. We have many tables mapped, and the names of each column aren't as well named and intuitive as we'd like... The users would like ...
1
vote
1answer
221 views

Elixir not creating my tables with default values

class MyObject(Entity): name = Field(Unicode(256), default=u'default name', nullable=False) using_options(shortnames=True) using_mapper_options(save_on_init=False) def ...
1
vote
2answers
311 views

Using multiple databases with Elixir

I would like to provide database for my program that uses elixir for ORM. Right now the database file (I am using SQLite) must be hardcoded in metadata, but I would like to be able to pass this in ...
1
vote
2answers
1k views

Issues with scoped_session in sqlalchemy - how does it work?

I'm not really sure how scoped_session works, other than it seems to be a wrapper that hides several real sessions, keeping them separate for different requests. Does it do this with thread locals? ...
1
vote
1answer
1k views

Elixir (SqlAlchemy): relations between 3 tables with composite primary keys

I've 3 tables: A Company table with (company_id) primary key A Page table with (company_id, url) primary key & a foreign key back to Company An Attr table with (company_id, attr_key) primary key ...
1
vote
1answer
754 views

SQLAlchemy/Elixir validation rules?

I just found out how to validate my database input before saving it, but I'm kinda bummed to find there are no premade rules (like validate email, length, etc) that are found in some web based ...
0
votes
2answers
38 views

sqlalchemy column issue

In my plugin for Qgis I have to use two database, sqlite and mysql at the moment, for interfacing with them I use Elixir 0.7.1 and SqlAlchemy 0.7.4, as far I used only sqlite, everything was fine, ...
0
votes
1answer
46 views

Python Elixir OneToMany and ManyToOne implementation: On Inserting new record with OneToMany relationship?

How do you insert a record with one to many relationship in Python Elixir? See code below. from elixir import * class Product(Entity): using_options(shortnames=True) name = ...
0
votes
2answers
63 views

Elixir: How to create a class attribute and class property within Elixir/SqlAlchemy

Thanks in advance! I have a class: from sys import stderr from elixir import * from types import * class User(Entity): using_options(tablename="users") first_name = Field(String(50)) ...
0
votes
1answer
59 views

How to reference Python elixir object items

I am trying to swap in the key name from a request.param for an Elixir object attribute. Below, the Elixir object bk is a Book() which has an attribute PrintTitle. PrintTitle also comes in from a ...
0
votes
1answer
95 views

How do you make codes/lookup tables in Elixir?

I am looking for a/the best way to make lookup tables or use codes in a relational database made from Python's Elixir. I am not even sure my terminology here is correct. For example, I have a ...
0
votes
1answer
104 views

how to leave a computed field alone when writing to db using Elixir session.commit()

I am using Elixir to connect to MSSQL db. The db has a table with a computed column in it. However, when I update other columns in the object and commit the changes, python tells me I can't insert ...
0
votes
1answer
141 views

sqlalchemy model definition at execution

I'm writing an orm using elixir/sqlalchemy to handle moving spreadsheet-like data into sql. In general, the content of the spreadsheet-like data is unknown, and pyparsing parses (meta) data about the ...
0
votes
2answers
142 views

Problem querying from a model object

I'm trying to use Pylons with SqlAlchemy (through Elixir). Here is my testdb/model/entities.py: from elixir import * metadata.bind = "mysql://testdb:hundertwasser@localhost/testdb" ...
0
votes
1answer
134 views

query.values fails with elixir

I have a problem with the elixir declarative layer, i want to retrieve, for every instance of my model, the data of a particular column, like that : File.query.values("column") The thing is, it ...
0
votes
1answer
276 views

How to perform an “UPDATE” with elixir

I'm using elixir/flask in a small web app I wrote for my own personal aggregator. I'm trying to create a restful call to mark all items of a particular rssfeed as read. The SQL statement would look ...
0
votes
1answer
201 views

how to write udpate sql in python elixir

i'm using elixir as my orm for mysql database, and it's hard for me to write a update sql under elixir "update products set price=NULL where id>100" class Product(Entity): ...
0
votes
1answer
208 views

how to add new column on elixir

i use elixir as orm for mysql database,now i want to add new column to my schema,how could i keep orginal data in the mysql and update the schema automatically,the concept called migrate on ruby on ...
0
votes
1answer
122 views

Sharing model between Camelot and non-Camelot apps

I would like to share my data model between different Elixir/SQLAlchemy applications, one of which would be a Camelot UI and the others stuff like web interfaces and so on. They would all connect to ...
0
votes
1answer
97 views

Using Elixir, how can I get the table object of a self-referential relationship to perform inserts on?

I'm using Elixir with SQLite and I'd like to perform multiple inserts as per the docs: http://www.sqlalchemy.org/docs/05/sqlexpression.html#executing-multiple-statements However, my ManyToMany ...
0
votes
1answer
160 views

How do I create self-relationships in polymorphic inheritance in Elixir and Pylons?

I am new to programming and am following the example in the Pylons documentation on creating a Wiki. The database I want to link to the wiki was created with Elixir so I rewrote the Wiki database ...
0
votes
1answer
364 views

Elixir create_all() not creating database and tables

Hey, I'm using Elixir 0.7.1 , Sqlalchemy 0.6beta1 , MySQLdb 1.2.2. My Model file 'model.py' looks like this: from elixir import * from datetime import datetime class Author: first_name = ...
0
votes
2answers
552 views

Nested transactions with SQLAlchemy and sqlite

I'm writing an application in python using sqlalchemy (and Elixir) with sqlite as the database backend. I start a new transaction using the code session.begin_transaction(), but when I call ...
0
votes
1answer
236 views

Python SQLAlchemy/Elixer Question

I am trying to define a SQLAlchemy/Elixer model that can describe the following relationship. I have an SSP table, which has multiple Foreign Keys to the POC table. I've defined the ManyToOne ...
0
votes
1answer
339 views

Elixir reflection

I define some Entities wich works fine; for meta programming issues, i now need to reflect the field properties defined in the model. For example: class Foo(Entity): bar = OneToMany('Bar') ...
0
votes
1answer
145 views

Elixir Event Handler

I want to use the @after_insert decorator of Elixir, but i can't access the Session within the model. Since i have autocommit set to False, i can't commit any changes in the event handler. Is there ...
-1
votes
1answer
22 views

Elixir EntityCollection.remove() doesn't work

I'm trying to remove a certain Entity from the collection in a EntityCollection, which is not working, results in an exception: list.remove(x): x not in list. Code excerpt as follows: ...