0

Based on the sqlalchemy it stated that:

Its important to note that when using the SQLAlchemy ORM, these objects are not generally accessed; instead, the Sessionobject is used as the interface to the database.

So i have basic/simple model class, and i have another class with model class inside as attr. As follow:

Class Test (object):
    Model = ModelClass ()

    Def __init__(self):
        Pass

    Def call_proc (self, proc, param):
        # how?
        Pass

Questions: How i call stored procedure from test class using session that i have in my model class?

2

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.