Tagged Questions
The elixir tag has no wiki summary.
6
votes
2answers
866 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
470 views
4
votes
2answers
283 views
Is elixir out-dated?
My sqlalchemy is 0.6.3, and elixir is 0.7.1
I created a model class which extends Entity:
from elixir import *
class User(Entity):
pass
And save the a user as:
user = User()
user.save()
It ...
4
votes
2answers
501 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
428 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
77 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
568 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
302 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
102 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
225 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
408 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
1answer
565 views
Elixir/SQLAlchemy equivalent to SQL “LIKE” statement?
I'm using the MySQLicious type schema described here for a simple tagging system.
I've read some alternative implementations of tagging schema in 4 different SO threads, and this suits my needs best.
...
1
vote
1answer
314 views
SQLAlchemy & Complex Queries
I have to implement ACL for an existing application.
So I added the a user, group and groupmembers table to the database.
I defined a ManyToMany relationship between user and group via the ...
1
vote
2answers
600 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
810 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
0answers
155 views
Multiple foreign keys to same table using Elixir
I am new to ORMs in general. I have a table (lets call it Entity) with columns --
ID
expression
type ( can be 'long_word', 'short_word' or 'sentence' )
Often, the first two types occur in a ...
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
220 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
35 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
45 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
1answer
77 views
Elixir / SQLAlchemy: Order by Count of OneToMany Relationship
I am using Elixir for ORM but I have a problem trying to Order by a Relationship.
What I am trying to do is to get a list of users sorted by the number of posts they have. I have tried ways such as
...
0
votes
2answers
62 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
0answers
55 views
Flex : IBM ILog Elixir World Map
How do we group countries and create regions? I have a WorldCountriesMercatorMap and want to select EMEA, ASIAPAC, NA regions. How can I achieve this ?
0
votes
2answers
73 views
how to create index in elixir? by using sqlalchemy or what?
I'm using elixir, and I cannot find any index creation method,
and I'm not familiar with sqlalchemy, any examples?
0
votes
0answers
73 views
How to create an 'infinite' panel size, controling the view with mouse drag on Flex 4
i am planning to create a view component, just like OrgChart (IBM Ilog Elixir), but i cant think the best way to create a panel without size limit, that you can hold mouse button/drag in an empty ...
0
votes
1answer
38 views
How can I get Nodes and Links after being edited on the DiagramEditor?
In flex, I use IBM ilog Elixir to display network topology graph.
I maintain an xml file which in turn populates nodes and links arraycollections for Diagram to display.
Now, through Diagram Editor ...
0
votes
1answer
333 views
Is there a way to get IBM Ilog Elixir 3.0 working in Flash Builder 4.5
I've installed IBM ILOG Elixir 3.0 on my Flash Builder 4.5 installation.
I'm trying to use the IBM ILOG components inside a Flex 4.5 project, but I get;
C:\Program Files (x86)\IBM\ILOG\Elixir ...
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
94 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
103 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
1answer
487 views
SQLAlchemy IntegrityError
(Hi All,
I'm having a nasty problem using SQLAlchemy with PySide(PyQt). I'm trying to pop-up a QtGui.QDialog, but when I do this SQLAlchemy throws an exception:
Traceback (most recent call last):
...
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
95 views
Loading Elixir/SQLAlchemy models in .NET?
A new requirement has come down from the top: implement 'proprietary business tech' with the awesome, resilient Elixir database I have set up. I've tried a lot of different things, such as creating an ...