Your class definitions have to be valid Python syntax, and Python doesn't
allow for spaces in attribute names. However, the attribute name can be
different to the actual column name. Try something like this:

    hiring_manager = db.Column('Hiring Manager', db.String(120),
primary_key=True)

Hope that helps,

Simon

On Mon, Feb 22, 2016 at 4:08 PM, Nana Okyere <oky...@gmail.com> wrote:

> Update: I'm on the current version of sqlalchemy and using oracle 12c.
>
> --
> 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 sqlalchemy+unsubscr...@googlegroups.com.
> To post to this group, send email to sqlalchemy@googlegroups.com.
> Visit this group at https://groups.google.com/group/sqlalchemy.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at https://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to