Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for record (0.15 sec)

  1. docs/zh/docs/tutorial/sql-databases.md

        ```
    
    ## 执行项目
    
    您可以复制这些代码并按原样使用它。
    
    !!! info
    
        事实上,这里的代码只是大多数测试代码的一部分。
    
    你可以用 Uvicorn 运行它:
    
    
    <div class="termy">
    
    ```console
    $ uvicorn sql_app.main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 27K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/sql-databases.md

    ## ✅ ⚫️
    
    👆 💪 📁 👉 📟 &amp; ⚙️ ⚫️.
    
    !!! info
    
        👐, 📟 🎦 📥 🍕 💯. 🌅 📟 👉 🩺.
    
    ⤴️ 👆 💪 🏃 ⚫️ ⏮️ Uvicorn:
    
    
    <div class="termy">
    
    ```console
    $ uvicorn sql_app.main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  3. docs/en/docs/tutorial/sql-databases.md

    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    When accessing the attribute `items` in a `User`, as in `my_user.items`, it will have a list of `Item` SQLAlchemy models (from the `items` table) that have a foreign key pointing to this record in the `users` table.
    
    When you access `my_user.items`, SQLAlchemy will actually go and fetch the items from the database in the `items` table and populate them here.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 29.6K bytes
    - Viewed (0)
Back to top