In the example you create a manager object first, and give it a database URL before defining your models.
However, peewee allows you to create a Database object without actually associating it to a database, and connect it afterwards.
Is it possible to create a manager without specifying the database, if I want to connect to it at a later time?
In the example you create a manager object first, and give it a database URL before defining your models.
However, peewee allows you to create a Database object without actually associating it to a database, and connect it afterwards.
Is it possible to create a manager without specifying the database, if I want to connect to it at a later time?