tidb-golang-gorm-quickstart

command module
v0.0.0-...-333bb67 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 25, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

README

How to Connect to TiDB Using GORM

Go

English | 中文

This is an example project by PingCAP for connecting to TiDB using the GORM.

TiDB is a MySQL-compatible database. GORM is a popular open-source Golang ORM framework, and GORM supports TiDB's features like AUTO_RANDOM. TiDB is also the default supported database for GORM.

Prerequisites

Getting Started

1. Clone the Example Code Repository to Your Local Machine
git clone https://github.com/tidb-samples/tidb-golang-gorm-quickstart.git
cd tidb-golang-gorm-quickstart
2. Configure Connection Information
(Option 1) TiDB Serverless
  1. In the TiDB Cloud console, open the Clusters page, select your TiDB Serverless cluster, go to the Overview page, and click the Connect button in the upper right corner.

  2. Ensure that the configuration in the window matches your runtime environment.

    • Endpoint Type is Public
    • Connect With is General
    • Operating System matches your runtime environment

    If you are running in Windows Subsystem for Linux (WSL), switch to the corresponding Linux distribution.

  3. Click Generate password to generate a password.

    If you have generated a password before, you can use the original password or click Reset Password to generate a new one.

  4. Run the following command to copy and rename .env.example to .env:

    cp .env.example .env
    
  5. Copy and paste the corresponding connection string into .env. Change the example results as follows.

    TIDB_HOST='{gateway-region}.aws.tidbcloud.com'
    TIDB_PORT='4000'
    TIDB_USER='{prefix}.root'
    TIDB_PASSWORD='{password}'
    TIDB_DB_NAME='test'
    USE_SSL='true'
    

    Replace placeholders {} with values obtained from the Connect window.

    TiDB Serverless requires the use of a secure connection, so the value of USE_SSL should be set to true.

  6. Save the file.

(Option 2) TiDB Dedicated
  1. In the TiDB Cloud Web Console, select your TiDB Dedicated cluster, go to the Overview page, click the Connect button in the upper right corner. Click Allow Access from Anywhere.

    For more configuration details, refer to TiDB Dedicated Standard Connection Guide.

  2. Run the following command to copy and rename .env.example to .env:

    cp .env.example .env
    
  3. Copy and paste the corresponding connection string into .env. Change the example results as follows.

    TIDB_HOST='{host}.clusters.tidb-cloud.com'
    TIDB_PORT='4000'
    TIDB_USER='{prefix}.root'
    TIDB_PASSWORD='{password}'
    TIDB_DB_NAME='test'
    USE_SSL='false'
    

    Replace placeholders {} with values obtained from the Connect window, and configure the certificate path downloaded in previous steps.

  4. Save the file.

(Option 3) Self-Hosted TiDB
  1. Run the following command to copy and rename .env.example to .env:

    cp .env.example .env
    
  2. Copy and paste the corresponding connection string into .env. Change the example results as follows.

    TIDB_HOST='{tidb_server_host}'
    TIDB_PORT='4000'
    TIDB_USER='root'
    TIDB_PASSWORD='{password}'
    TIDB_DB_NAME='test'
    USE_SSL='false'
    

    Replace placeholders {} with values corresponding to your TiDB setup. If you are running TiDB on your local machine, the default Host address is 127.0.0.1, and the password is empty.

  3. Save the file.

3. Run the Example Code
make
4. Expected Output

Expected Output

Notes

For more usage details and information about GORM, you can refer to the official GORM documentation.

Next Steps

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL