On Sun, Mar 7, 2010 at 23:06, [email protected] <[email protected]> wrote:
> I am in the process of choosing my application stack and designing an > application. In the application I want to be able to store many > transactions - in fact, I want it to be able to scale beyond the 32 > bit limit. I am planning a _very_ big state machine - I don't want it > to choke at a 32 bit limit. > > It is looking like postgresql will be my database, with sqlalchemy and > possibly elixir layered on top. Elixir seems to abstract away so many > underlying details - it looks very attractive. Don't be misled here. Elixir only helps when you create your database from scratch, and it only helps by generating some database elements for you: namely, columns for ManyToOne relationships and intermediary tables for ManyToMany relationships. If you don't need/want that, you should rather use SQLAlchemey's builtin "declarative" extension. -- Gaƫtan de Menten -- You received this message because you are subscribed to the Google Groups "SQLElixir" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sqlelixir?hl=en.
