Skip to content

This repository is used to store Golang code that appears in the PingCAP developer documentation

License

Notifications You must be signed in to change notification settings

tidb-samples/tidb-golang-dev-doc-code-snippet

Repository files navigation

TiDB Developer Documentation Golang Code Snippets

Go

English | 中文

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

This is the repository for storing Golang code snippets in the PingCAP developer documentation.

Prerequisites

Getting Started

1. Clone the Example Code Repository to Your Local Machine

git clone https://github.com/tidb-samples/tidb-golang-dev-doc-code-snippet.git
cd tidb-golang-dev-doc-code-snippet

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

  1. Navigate to the example directory you want to run. Let's assume you want to enter the batch_delete example:

    cd batch_delete
  2. Then simply run make.

Next Steps

About

This repository is used to store Golang code that appears in the PingCAP developer documentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published