Tagged Questions

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 ...
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
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
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 ...