Great, so I define in my code
session = None
Base = declarative_base()
class Model1(Base):
id = ....
and after user input host IP we can execute code
engine =
create_engine(“postgresql+psycopg2://scott:tiger@somehostname/test”,
poolclass=NullPool)
session = sessionmaker(bind=engine)
and last point how can set new session to Base?
--
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 http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/groups/opt_out.