[sqlalchemy] Re: Where is the exactly .db file if I use sqlite code in the example

2022-12-06 Thread Ryan Lee
thank you I understand 2022년 12월 7일 수요일 오전 2시 56분 57초 UTC+9에 leleg...@gmail.com님이 작성: > Ryan Lee writes: > > > https://docs.sqlalchemy.org/en/14/orm/quickstart.html#create-an-engine > > > > ``` > > engine = create_engine("sqlite://", echo=True, futur

[sqlalchemy] Where is the exactly .db file if I use sqlite code in the example

2022-12-06 Thread Ryan Lee
https://docs.sqlalchemy.org/en/14/orm/quickstart.html#create-an-engine ``` engine = create_engine("sqlite://", echo=True, future=True) ``` If I use the code in example , I cannot find the exact file , where is it ? -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www

[sqlalchemy] how can I select schema while using sqlacodegen crawling postgresql db models

2022-10-11 Thread Ryan Lee
when I prepare crawling db dto from postgresql( AWS RDS) for my flask application, I set SQLAlchemy URI like follow f'{RDS_PROTOCOL}://{RDS_USERNAME}:{RDS_PASSWORD}@{RDS_HOSTNAME}:{RDS_PORT}/{RDS_DB_NAME}' but I don't know how to define one specific schema pls let me knowTT -- SQLAlchemy