Coverage for docs_src / tutorial / automatic_id_none_refresh / tutorial001_py310.py: 100%
54 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-06 21:09 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-06 21:09 +0000
1from sqlmodel import Field, Session, SQLModel, create_engine 1ijklmnop
4class Hero(SQLModel, table=True): 1ijklmnop
5 id: int | None = Field(default=None, primary_key=True) 1ijklmnop
6 name: str 1ijklmnop
7 secret_name: str 1ijklmnop
8 age: int | None = None 1ijklmnop
11sqlite_file_name = "database.db" 1ijklmnop
12sqlite_url = f"sqlite:///{sqlite_file_name}" 1ijklmnop
14engine = create_engine(sqlite_url, echo=True) 1ijklmnop
17def create_db_and_tables(): 1ijklmnop
18 SQLModel.metadata.create_all(engine) 1abcdefgh
21def create_heroes(): 1ijklmnop
22 hero_1 = Hero(name="Deadpond", secret_name="Dive Wilson") 1abcdefgh
23 hero_2 = Hero(name="Spider-Boy", secret_name="Pedro Parqueador") 1abcdefgh
24 hero_3 = Hero(name="Rusty-Man", secret_name="Tommy Sharp", age=48) 1abcdefgh
26 print("Before interacting with the database") 1abcdefgh
27 print("Hero 1:", hero_1) 1abcdefgh
28 print("Hero 2:", hero_2) 1abcdefgh
29 print("Hero 3:", hero_3) 1abcdefgh
31 with Session(engine) as session: 1abcdefgh
32 session.add(hero_1) 1abcdefgh
33 session.add(hero_2) 1abcdefgh
34 session.add(hero_3) 1abcdefgh
36 print("After adding to the session") 1abcdefgh
37 print("Hero 1:", hero_1) 1abcdefgh
38 print("Hero 2:", hero_2) 1abcdefgh
39 print("Hero 3:", hero_3) 1abcdefgh
41 session.commit() 1abcdefgh
43 print("After committing the session") 1abcdefgh
44 print("Hero 1:", hero_1) 1abcdefgh
45 print("Hero 2:", hero_2) 1abcdefgh
46 print("Hero 3:", hero_3) 1abcdefgh
48 print("After committing the session, show IDs") 1abcdefgh
49 print("Hero 1 ID:", hero_1.id) 1abcdefgh
50 print("Hero 2 ID:", hero_2.id) 1abcdefgh
51 print("Hero 3 ID:", hero_3.id) 1abcdefgh
53 print("After committing the session, show names") 1abcdefgh
54 print("Hero 1 name:", hero_1.name) 1abcdefgh
55 print("Hero 2 name:", hero_2.name) 1abcdefgh
56 print("Hero 3 name:", hero_3.name) 1abcdefgh
58 session.refresh(hero_1) 1abcdefgh
59 session.refresh(hero_2) 1abcdefgh
60 session.refresh(hero_3) 1abcdefgh
62 print("After refreshing the heroes") 1abcdefgh
63 print("Hero 1:", hero_1) 1abcdefgh
64 print("Hero 2:", hero_2) 1abcdefgh
65 print("Hero 3:", hero_3) 1abcdefgh
67 print("After the session closes") 1abcdefgh
68 print("Hero 1:", hero_1) 1abcdefgh
69 print("Hero 2:", hero_2) 1abcdefgh
70 print("Hero 3:", hero_3) 1abcdefgh
73def main(): 1ijklmnop
74 create_db_and_tables() 1abcdefgh
75 create_heroes() 1abcdefgh
78if __name__ == "__main__": 1ijklmnop
79 main()