I'm assuimg you do something like define a Column <http://docs.sqlalchemy.org/en/latest/core/metadata.html?highlight=column#sqlalchemy.schema.Column> . But how do you assign a literal or expression value to it? (1 or LVL+1 later) Is there a bind processor example I need? from sqlalchemy import create_engine, Column lvlOne = Column('lvl', Integer) I guess where I am also a little confused is with the *args **kwargs Being from a Java background, I'm used to seeing a more complete API, so knowing what possible *args/**kwargs are helps.. I'm struggling a bit with that.
-- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: Minimal, Complete, and Verifiable Example. See http://stackoverflow.com/help/mcve for a full description. --- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
