Ok. Thanks Mike Bayer. On Sunday, May 6, 2018 at 6:39:24 PM UTC+5:30, Mike Bayer wrote: > > On Sun, May 6, 2018 at 3:28 AM, <[email protected]> wrote: > > Hi, > > > > I am new in the python (sql alchemy). I want to retrieve all database > > objects at my code level. I am able to read tables and view from engine > but > > not able to read stored procedures and functions. Is there any way to do > > that ? Please help > > > SQLAlchemy doesn't currently have methods to read the names of stored > procedures and functions, you'd need to query the database's schema > tables yourself for this, which differs based on the kind of database > you're using. > > > > > -- > > 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] <javascript:>. > > To post to this group, send email to [email protected] > <javascript:>. > > Visit this group at https://groups.google.com/group/sqlalchemy. > > For more options, visit https://groups.google.com/d/optout. >
-- 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.
