Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for database (0.09 sec)

  1. docs/en/docs/how-to/testing-database.md

    # Testing a Database
    
    You can study about databases, SQL, and SQLModel in the <a href="https://sqlmodel.tiangolo.com/" class="external-link" target="_blank">SQLModel docs</a>. ๐Ÿค“
    
    There's a mini <a href="https://sqlmodel.tiangolo.com/tutorial/fastapi/" class="external-link" target="_blank">tutorial on using SQLModel with FastAPI</a>. โœจ
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 516 bytes
    - Viewed (0)
  2. docs/pt/docs/how-to/testing-database.md

    Guilherme Rameh <******@****.***> 1729253044 -0300
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Oct 18 12:04:04 UTC 2024
    - 547 bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/sql-databases.md

        By having the type as `int | None`, SQLModel will know that this column should be an `INTEGER` in the SQL database and that it should be `NULLABLE`.
    
    * `Field(index=True)` tells SQLModel that it should create a **SQL index** for this column, that would allow faster lookups in the database when reading data filtered by this column.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/sql-databases.md

    ---> 100%
    ```
    
    </div>
    
    ## โœ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ•
    
    โžก๏ธ ๐Ÿ”— ๐Ÿ“ `sql_app/database.py`.
    
    ### ๐Ÿ—„ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ•
    
    ```Python hl_lines="1-3"
    {!../../docs_src/sql_databases/sql_app/database.py!}
    ```
    
    ### โœ ๐Ÿ’ฝ ๐Ÿ“› ๐Ÿ‡ธ๐Ÿ‡ฒ
    
    ```Python hl_lines="5-6"
    {!../../docs_src/sql_databases/sql_app/database.py!}
    ```
    
    ๐Ÿ‘‰ ๐Ÿ–ผ, ๐Ÿ‘ฅ "๐Ÿ”—" ๐Ÿ—„ ๐Ÿ’ฝ (๐Ÿ“‚ ๐Ÿ“ โฎ๏ธ ๐Ÿ—„ ๐Ÿ’ฝ).
    
    ๐Ÿ“ ๐Ÿ”œ ๐Ÿ”Ž ๐ŸŽ ๐Ÿ“ ๐Ÿ“ `sql_app.db`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. internal/event/target/postgresql.go

    	Username           string    `json:"username"` // default: user running minio
    	Password           string    `json:"password"` // default: no password
    	Database           string    `json:"database"` // default: same as user
    	QueueDir           string    `json:"queueDir"`
    	QueueLimit         uint64    `json:"queueLimit"`
    	MaxOpenConnections int       `json:"maxOpenConnections"`
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/sql-databases.md

    ---> 100%
    ```
    
    </div>
    
    ## ๅˆ›ๅปบ SQLAlchemy ้ƒจไปถ
    
    ่ฎฉๆˆ‘ไปฌ่ฝฌๅˆฐๆ–‡ไปถ`sql_app/database.py`ใ€‚
    
    ### ๅฏผๅ…ฅ SQLAlchemy ้ƒจไปถ
    
    ```Python hl_lines="1-3"
    {!../../docs_src/sql_databases/sql_app/database.py!}
    ```
    
    ### ไธบ SQLAlchemy ๅฎšไน‰ๆ•ฐๆฎๅบ“ URLๅœฐๅ€
    
    ```Python hl_lines="5-6"
    {!../../docs_src/sql_databases/sql_app/database.py!}
    ```
    
    ๅœจ่ฟ™ไธชไพ‹ๅญไธญ๏ผŒๆˆ‘ไปฌๆญฃๅœจโ€œ่ฟžๆŽฅโ€ๅˆฐไธ€ไธช SQLite ๆ•ฐๆฎๅบ“๏ผˆ็”จ SQLite ๆ•ฐๆฎๅบ“ๆ‰“ๅผ€ไธ€ไธชๆ–‡ไปถ๏ผ‰ใ€‚
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. tests/tests_test.go

    	sqlserverDSN = "sqlserver://sa:LoremIpsum86@localhost:9930?database=master"
    	tidbDSN      = "root:@tcp(localhost:9940)/test?charset=utf8&parseTime=True&loc=Local"
    )
    
    func init() {
    	var err error
    	if DB, err = OpenTestConnection(&gorm.Config{}); err != nil {
    		log.Printf("failed to connect database, got error %v", err)
    		os.Exit(1)
    	} else {
    		sqlDB, err := DB.DB()
    		if err != nil {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Sep 30 03:21:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. docs/en/docs/project-generation.md

        - ๐Ÿงฐ [SQLModel](https://sqlmodel.tiangolo.com) for the Python SQL database interactions (ORM).
        - ๐Ÿ” [Pydantic](https://docs.pydantic.dev), used by FastAPI, for the data validation and settings management.
        - ๐Ÿ’พ [PostgreSQL](https://www.postgresql.org) as the SQL database.
    - ๐Ÿš€ [React](https://react.dev) for the frontend.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Oct 04 11:16:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. internal/event/target/mysql.go

    	Host               xnet.URL `json:"host"`
    	Port               string   `json:"port"`
    	User               string   `json:"user"`
    	Password           string   `json:"password"`
    	Database           string   `json:"database"`
    	QueueDir           string   `json:"queueDir"`
    	QueueLimit         uint64   `json:"queueLimit"`
    	MaxOpenConnections int      `json:"maxOpenConnections"`
    }
    
    // Validate MySQLArgs fields
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. api/go1.17.txt

    pkg database/sql, method (*NullByte) Scan(interface{}) error
    pkg database/sql, method (*NullInt16) Scan(interface{}) error
    pkg database/sql, method (NullByte) Value() (driver.Value, error)
    pkg database/sql, method (NullInt16) Value() (driver.Value, error)
    pkg database/sql, type NullByte struct
    pkg database/sql, type NullByte struct, Byte uint8
    pkg database/sql, type NullByte struct, Valid bool
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top