I get ORA-03113 all the time both using sqlalchemy raw sql and using 
Sqlalchemy to select. Can some one help me to check if they is a problem 
with my connection string or if they is some thing Missing.


def connect():
    try:
        return cx_Oracle.Connection(connstring)
    except Exception, e:
        print e


def getEngine():
    try:
        return  create_engine('oracle://', creator=connect) #, echo=True
    except Exception, e:
        print e


def createSession():
    Session = sessionmaker(bind=getEngine(), autocommit=True, 
expire_on_commit=False)
    return Session()

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