OceanBase logo

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

Product Overview
DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Resources

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS

OceanBase Cloud

OceanBase Database

Tools

Connectors and Middleware

QUICK START

OceanBase Cloud

OceanBase Database

BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Company

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

International - English
中国站 - 简体中文
日本 - 日本語
Sign In
Start on Cloud

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

Product Overview
DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS
OceanBase CloudOceanBase Database
ToolsConnectors and Middleware
QUICK START
OceanBase CloudOceanBase Database
BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

Start on Cloud
编组
All Products
    • Databases
    • iconOceanBase Database
    • iconOceanBase Cloud
    • iconOceanBase Tugraph
    • iconInteractive Tutorials
    • iconOceanBase Best Practices
    • Tools
    • iconOceanBase Cloud Platform
    • iconOceanBase Migration Service
    • iconOceanBase Developer Center
    • iconOceanBase Migration Assessment
    • iconOceanBase Admin Tool
    • iconOceanBase Loader and Dumper
    • iconOceanBase Deployer
    • iconKubernetes operator for OceanBase
    • iconOceanBase Diagnostic Tool
    • iconOceanBase Binlog Service
    • Connectors and Middleware
    • iconOceanBase Database Proxy
    • iconEmbedded SQL in C for OceanBase
    • iconOceanBase Call Interface
    • iconOceanBase Connector/C
    • iconOceanBase Connector/J
    • iconOceanBase Connector/ODBC
    • iconOceanBase Connector/NET
icon

OceanBase Database

SQL - V4.3.5

    Download PDF

    OceanBase logo

    The Unified Distributed Database for the AI Era.

    Follow Us
    Products
    OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
    Resources
    DocsBlogLive DemosTraining & CertificationTicket
    Company
    About OceanBaseTrust CenterLegalPartnerContact Us
    Follow Us

    © OceanBase 2026. All rights reserved

    Cloud Service AgreementPrivacy PolicySecurity
    Contact Us
    Document Feedback
    1. Documentation Center
    2. OceanBase Database
    3. SQL
    4. V4.3.5
    iconOceanBase Database
    SQL - V 4.3.5
    SQL
    KV
    • V 4.6.0
    • V 4.4.2
    • V 4.3.5
    • V 4.3.3
    • V 4.3.1
    • V 4.3.0
    • V 4.2.5
    • V 4.2.2
    • V 4.2.1
    • V 4.2.0
    • V 4.1.0
    • V 4.0.0
    • V 3.1.4 and earlier

    Connect to OceanBase Database by using GORM

    Last Updated:2026-05-11 02:24:09  Updated
    share
    What is on this page
    Prerequisites
    Procedure
    Step 1: (Optional) Install Go and the Go-SQL-Driver/MySQL driver
    Step 2: Obtain the connection information of OceanBase Database
    Step 3: Modify the database connection information in the gorm-oceanbase project
    Step 4: Run the go-oceanbase project
    Project code
    go.mod file
    go.sum file
    test.go code
    Full code
    References

    folded

    share

    Applicability

    GORM is applicable to OceanBase Database in MySQL mode.

    This topic describes how to use GORM and OceanBase Database to build an application that can perform basic operations such as creating tables, inserting data, and querying data.

    Download the gorm-oceanbase sample project Connect to OceanBase Database by using GORM

    Prerequisites

    Install OceanBase Database, Go, and the corresponding driver, and make sure that the environment variables are correctly configured.

    Note

    The code examples in this topic are written in IntelliJ IDEA 2021.3.2 (Community Edition). You can also use your preferred tool to view the code examples.

    • Install OceanBase Database.
    • Install Go.
    • Install the Go-SQL-Driver/MySQL driver.

    Procedure

    Note

    The steps in this topic are generated in the Windows environment. If you are using another operating system or compiler, the steps may vary.

    1. (Optional) Install Go and the driver.
    2. Obtain the connection information of OceanBase Database.
    3. Modify the database connection information in the gorm-oceanbase project.
    4. Run the gorm-oceanbase project.

    Step 1: (Optional) Install Go and the Go-SQL-Driver/MySQL driver

    If you have already installed Go and the Go-SQL-Driver/MySQL driver, you can skip this step. If not, follow the steps below.

    1. Install Go

      1. Download the Go installation package: You can download the installation package suitable for your operating system from the Go official website.

        Note

        The Go installation package used in this topic is named go1.20.6.windows-amd64.msi.

      2. Install Go: Double-click the downloaded installation package and follow the prompts to install Go.

      3. Configure the environment variables: Add the Go installation path to the system PATH environment variable.

        • In a Windows environment, you can add the Path value to C:\usr\local\go\bin in Control Panel > System and Security > System > Advanced system settings > Environment Variables > System Variables.

        • In a Linux or macOS environment, you can edit the ~/.bashrc or ~/.bash_profile file and add the following content:

          export PATH=$PATH:/usr/local/go/bin
          

        Note

        \usr\local\go\bin is the default installation directory. If you changed the installation directory when installing Go, replace it with the corresponding directory.

      4. Verify the installation: In the Shell command line, enter the following command to view the Go version information and verify whether the installation is successful:

        C:\Users\admin\> go version
        go version go1.20.6 windows/amd64
        
    2. Install the Go-SQL-Driver/MySQL driver

      Depending on the version of Go, you can choose different installation methods. When installing the Go-SQL-Driver/MySQL driver, you need to open the command-line terminal in the corresponding project directory. For more information about Go-SQL-Driver/MySQL, see Github.

      The installation command is as follows:

      C:\Users\admin\Desktop\go-oceanbase>go get -u github.com/go-sql-driver/mysql
      go: downloading github.com/go-sql-driver/mysql v1.7.1
      go: added github.com/go-sql-driver/mysql v1.7.1
      

      If you cannot install the driver by using the go get command due to version or network issues, you can use the go install command to install the go-sql-driver/mysql driver.

      1. Clone the go-sql-driver/mysql repository from GitHub to the go/src directory.

        cd /usr/local/go/src   
        git clone https://github.com/go-sql-driver/mysql.git
        

        Notice

        /usr/local/go/src needs to be replaced with the actual Go installation directory.

      2. Install the driver by using the go install command.

        go install mysql
        

        Notice

        For some versions, the default execution directory of go install may not be /src. You can determine the actual directory based on the error message generated after executing go install. For example, if the error message is cannot find package "mysql" in: /usr/local/go/src/vendor/mysql, you need to place the mysql folder in the /src/vendor directory before executing the installation command.

      3. Check whether the Go-SQL-Driver/MySQL driver is installed. If the installation fails, modify the settings based on the error message.

        go list -m github.com/go-sql-driver/mysql
        

    Step 2: Obtain the connection information of OceanBase Database

    Contact the deployment personnel or administrator of OceanBase Database to obtain the corresponding database connection information.

    obclient  -h{host} -u{user_name} -p****** -P{port} -D{schema_name}
    

    The database connection string contains the parameters required to access the database. You can use the database connection string to log in to the database and verify whether the parameters are correct.

    Note

    The URL information in this step is required in the test.go file.

    Parameter description:

    • host: the IP address for connecting to OceanBase Database. For ODP connection, it is the IP address of an ODP. For direct connection, it is the IP address of an OBServer node.
    • user_name: the tenant account. For ODP connection, the common format is username@tenant name#cluster name or cluster name:tenant name:username. For direct connection, the format is username@tenant name.
    • password: the password of the account.
    • port: the port for connecting to OceanBase Database. For ODP connection, the default port is 2883, which can be customized when ODP is deployed. For direct connection, the default port is 2881, which can be customized when OceanBase Database is deployed.
    • schema_name: the name of the schema to be accessed.

    Step 3: Modify the database connection information in the gorm-oceanbase project

    Modify the database connection information in the test.go file based on the information obtained in Step 2: Obtain the connection information of OceanBase Database. Right-click the test.go file and select Open With. You can open the file in Notepad or other editing software.

    test.go

    Here is an example:

    • The IP address of the OBServer node is 10.10.10.1.
    • The access port is 2881.
    • The name of the schema to be accessed is test.
    • The tenant account is root@mysql. root@mysql is a MySQL mode user tenant created in OceanBase Database. test is the username of the root@mysql tenant.
    • The password is ******.

    Here is the sample code:

    dsn := "root@mysql:******@tcp(10.10.10.1:2881)/test?charset=utf8mb4&parseTime=True&loc=Local"
    

    Step 4: Run the go-oceanbase project

    After you complete the code editing, open a command-line terminal in the project directory and run the following command:

    PS D:\demo\go-demo\gorm-oceanbase> go run test.go
    

    (Recommended) In Linux or macOS, you must configure a temporary environment variable before you can run the go run command.

    export PATH=$PATH:/usr/local/go/bin
    go run test.go
    

    If the following content is returned, the database connection is successful and the sample statement is correctly executed:

    PS D:\demo\go-demo\gorm-oceanbase> go run test.go
    1
    <nil>
    1
    {1 OceanBase 12 2022-06-01 08:00:00 +0800 CST}
    <nil>
    1
    {1 ob 13 2023-06-01 00:00:00 +0000 UTC}
    <nil>
    1
    1
    <nil>
    1
    time="2023-08-09T15:55:46+08:00" level=debug msg=DropTable duration=589.2031ms
    
    2023/08/09 15:55:47 D:/demo/go-demo/gorm-oceanbase/test.go:85 SLOW SQL >= 200ms
    [336.194ms] [rows:0] DROP TABLE IF EXISTS `users` CASCADE
    

    Project code

    Click gorm-oceanbase to download the project code. The file is a compressed file named gorm-oceanbase. After decompressing the file, you will find a folder named gorm-oceanbase. The directory structure is as follows:

    |-- go.mod
    |-- go.sum
    |-- test.go
    

    File description:

    • go.mod: a Go module file that defines the module dependencies and versions of the project.
    • go.sum: a new module management file added in Go V1.11 and later. It records the module dependencies and versions of the project, as well as the corresponding checksum.
    • test.go: a Go source code file that contains the sample code of the project.

    go.mod file

    The go.mod file is used to define the module name, Go version, and dependency declarations of a project.

    The go.mod file contains the following content:

    • module gorm-oceanbase: This is the module name of the project, which defines the project namespace. In Go 1.16 and later, the module name must match the name of the project's root directory.

    • go 1.20: This is the required Go version for the project.

    • require: This is the dependency declaration of the project. It specifies the third-party libraries and their version information that the project depends on. This dependency is an indirect dependency, and it is associated with another dependency go.sum.

      • github.com/go-sql-driver/mysql: The Go-SQL-Driver/MySQL driver, which is used to connect to and operate on a MySQL database.
      • github.com/jinzhu/inflection: A string conversion library, which is used to convert strings to singular, plural, camel case, and other forms.
      • github.com/jinzhu/now: A time processing library, which is used to obtain the current time, calculate the time difference, and format the time.
      • github.com/sirupsen/logrus: A log library, which is used to record log information during program execution.
      • golang.org/x/sys: A system library that provides some system-level operation functions and constants.
      • golang.org/x/text: A text processing library, which is used to process Unicode strings and format numbers.
      • gorm.io/driver/mysql: The MySQL driver of GORM, which is used to connect to and operate on a MySQL database in GORM.
      • gorm.io/gorm: The GORM ORM framework, which is used to simplify database operations.

    Sample code:

    module gorm-oceanbase
    
    go 1.20
    
    require (
     github.com/go-sql-driver/mysql v1.7.1 // indirect
     github.com/jinzhu/inflection v1.0.0 // indirect
     github.com/jinzhu/now v1.1.5 // indirect
     github.com/sirupsen/logrus v1.9.3 // indirect
     golang.org/x/sys v0.5.0 // indirect
     golang.org/x/text v0.12.0 // indirect
     gorm.io/driver/mysql v1.5.1 // indirect
     gorm.io/gorm v1.25.2 // indirect
    )
    

    go.sum file

    The go.sum file is used to define the dependency information of a project. Each dependency consists of three parts: the library name, version number, and hash value.

    The go.sum file contains the following content:

    • github.com/sirupsen/logrus: A log library, which is used to record log information during program execution.
    • golang.org/x/text: A text processing library, which is used to process Unicode strings and format numbers.
    • gorm.io/driver/mysql: The MySQL driver of GORM, which is used to connect to and operate on a MySQL database in GORM.
    • gorm.io/gorm: The GORM ORM framework, which is used to simplify database operations.

    Note

    The go.sum file may contain different dependencies based on the running environment. Please download the required dependencies based on the execution instructions.

    Sample code:

    github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
    github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
    golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
    golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
    gorm.io/driver/mysql v1.5.1 h1:WUEH5VF9obL/lTtzjmML/5e6VfFR/788coz2uaVCAZw=
    gorm.io/driver/mysql v1.5.1/go.mod h1:Jo3Xu7mMhCyj8dlrb3WoCaRd1FhsVh+yMXb1jUInf5o=
    gorm.io/gorm v1.25.2 h1:gs1o6Vsa+oVKG/a9ElL3XgyGfghFfkKA2SInQaCyMho=
    gorm.io/gorm v1.25.2/go.mod h1:L4uxeKpfBml98NYqVqwAdmV1a2nBtAec/cf3fpucW/k=
    

    test.go code

    The test.go file defines how to use the Go-SQL-Driver/MySQL driver to connect to a MySQL database and perform database operations using the APIs provided by GORM. The test.go file contains the following content:

    1. Define the main package. package main indicates that this is a package for an executable program. This package contains a main() function, which will be executed when the program runs.

    2. Define the import package.

      The import statement imports the following packages:

      • fmt: provides functions for formatted input and output. It defines a set of functions for formatting data into strings and outputting them to the console or other devices.
      • time: provides some functions and types related to time.
      • os: provides some functions and types related to the operating system.
      • gorm.io/driver/mysql: a MySQL database driver for connecting to and operating a MySQL database.
      • gorm.io/gorm: maps Go language structures to database tables and provides some query and operation methods for the database.
      • golang.org/x/text/transform: provides some basic text processing functions, such as character set conversion and Unicode processing.
      • github.com/sirupsen/logrus: provides some functions for log output and formatting.

      Code:

      import (
        "fmt"
        "time"
        "os"
        "gorm.io/driver/mysql"
        "gorm.io/gorm"
        "golang.org/x/text/transform"
        "github.com/sirupsen/logrus"
      )
      
    3. Define the User structure.

      Defines a User structure to represent the basic information of a user. It contains four fields: the unique identifier ID, the name Name, the age Age, and the birthday Birthday.

      Code:

      type User struct {
      ID       int
      Name     string
      Age      int
      Birthday time.Time
      
      }
      
    4. Define the transformString function. Defines a transformString function to convert a string to a specified encoding format. It accepts two parameters: str and encoder. The function uses the transform.String function to convert the string to the specified encoding format. If an error occurs during the conversion, the original string is returned. Finally, the function returns the converted string or the original string.

      Code:

      func transformString(str string, encoder transform.Transformer) string {
          result, _, err := transform.String(encoder, str)
          if err != nil {
              return str
          }
          return result
      }
      
    5. Define the main function.

      The main function creates users, updates user information, queries user information, and deletes users. It also uses logrus to output corresponding debug logs to the console.

      1. Initialize logrus.

        Initializes the logrus package for log output. Sets the log output format to text, the log level to Debug, and outputs to the standard output stream.

        Code:

        logrus.SetFormatter(&logrus.TextFormatter{})
        logrus.SetLevel(logrus.DebugLevel)
        logrus.SetOutput(os.Stdout)
        
      2. Connect to the database.

        Defines a string variable named dsn that contains the information required to connect to the MySQL database, including the username, password, host address, port number, database name, and character set. Calls the gorm.Open function to connect to the MySQL database, passing in the dsn variable and a gorm.Config parameter. Returns a connection object. If an error occurs during the connection, the error message is output, and the program exits.

        Code:

        dsn := "user_name:******@tcp(host:port)/schema_name?charset=utf8mb4&parseTime=True&loc=Local"
        db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
        if err != nil {
            fmt.Println(err.Error())
            return
        }
        
      3. Perform database operations.

        Uses the gorm.DB object to perform database operations, including automatic migration, inserting data, querying data, updating data, and deleting data. The specific process is as follows:

        1. Calls the db.AutoMigrate function to automatically migrate the table corresponding to the User structure. If the table does not exist, it creates the table. Uses the defer keyword and the db.Migrator().DropTable function to delay the deletion of the users table, which is deleted when the program ends.
        2. Creates a User structure instance named user and inserts it into the database.
        3. Queries the user with ID 1 and outputs the query result.
        4. Updates the information of the user with ID 1 and saves it to the database.
        5. Deletes the user with ID 1 and outputs the deletion result.

        Code:

        db.AutoMigrate(&User{})
        defer db.Migrator().DropTable("users")
        // Records the start time
        start := time.Now()
        // Creates a User structure instance named user and inserts it into the database.
        user := User{Name: "OceanBase", Age: 12, Birthday: time.Date(2022, 06, 01, 00, 00, 00, 00, time.UTC)}
        result := db.Create(&user)
        fmt.Println(user.ID)
        fmt.Println(result.Error)
        fmt.Println(result.RowsAffected)
        // Queries the user with ID 1 and outputs the query result.
        user = User{ID: 1}
        result = db.First(&user)
        fmt.Println(user)
        fmt.Println(result.Error)
        fmt.Println(result.RowsAffected)
        // Updates the information of the user with ID 1 and saves it to the database.
        user = User{ID: 1, Name: "ob", Age: 13, Birthday: time.Date(2023, 06, 01, 00, 00, 00, 00, time.UTC)}
        result = db.Save(&user)
        fmt.Println(user)
        fmt.Println(result.Error)
        fmt.Println(result.RowsAffected)
        // Deletes the user with ID 1 and outputs the deletion result.
        user = User{ID: 1}
        result = db.Delete(&user)
        fmt.Println(user.ID)
        fmt.Println(result.Error)
        fmt.Println(result.RowsAffected)
        
    6. Output logs.

      Calls the time.Since function to calculate the program runtime, calls the logrus.WithFields function to create a logger with fields, and calls the Debug function to output log information.

      Code:

      logrus.WithFields(logrus.Fields{
          "duration": time.Since(start),
          }).Debug("DropTable")
      

    Full code

    go.mod
    go.sum
    test.go
    module gorm-oceanbase
    
    go 1.20
    
    require (
     github.com/go-sql-driver/mysql v1.7.1 // indirect
     github.com/jinzhu/inflection v1.0.0 // indirect
     github.com/jinzhu/now v1.1.5 // indirect
     github.com/sirupsen/logrus v1.9.3 // indirect
     golang.org/x/sys v0.5.0 // indirect
     golang.org/x/text v0.12.0 // indirect
     gorm.io/driver/mysql v1.5.1 // indirect
     gorm.io/gorm v1.25.2 // indirect
    )
    
    github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
    github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
    golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
    golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
    gorm.io/driver/mysql v1.5.1 h1:WUEH5VF9obL/lTtzjmML/5e6VfFR/788coz2uaVCAZw=
    gorm.io/driver/mysql v1.5.1/go.mod h1:Jo3Xu7mMhCyj8dlrb3WoCaRd1FhsVh+yMXb1jUInf5o=
    gorm.io/gorm v1.25.2 h1:gs1o6Vsa+oVKG/a9ElL3XgyGfghFfkKA2SInQaCyMho=
    gorm.io/gorm v1.25.2/go.mod h1:L4uxeKpfBml98NYqVqwAdmV1a2nBtAec/cf3fpucW/k=
    
    package main
    
    import (
      "fmt"
      "time"
      "os"
      "gorm.io/driver/mysql"
      "gorm.io/gorm"
        "golang.org/x/text/transform"
        "github.com/sirupsen/logrus"
    )
    
    type User struct {
      ID       int
      Name     string
      Age      int
      Birthday time.Time
    
    }
    
    // Convert a string to the specified encoding format.
    func transformString(str string, encoder transform.Transformer) string {
        result, _, err := transform.String(encoder, str)
        if err != nil {
            return str
        }
        return result
    }
    
    func main() {
    
          // Initialize logrus.
          logrus.SetFormatter(&logrus.TextFormatter{})
          logrus.SetLevel(logrus.DebugLevel)
          logrus.SetOutput(os.Stdout)
    
      dsn := "user_name:******@tcp(host:port)/schema_name?charset=utf8mb4&parseTime=True&loc=Local"
    
      db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
      if err != nil {
        fmt.Println(err.Error())
        return
    
      }
    
      db.AutoMigrate(&User{})
      defer db.Migrator().DropTable("users")
    
      // Record the start time.
      start := time.Now()
    
      user := User{Name: "OceanBase", Age: 12, Birthday: time.Date(2022, 06, 01, 00, 00, 00, 00, time.UTC)}
      result := db.Create(&user)
      fmt.Println(user.ID)
      fmt.Println(result.Error)
      fmt.Println(result.RowsAffected)
    
      user = User{ID: 1}
      result = db.First(&user)
      fmt.Println(user)
      fmt.Println(result.Error)
      fmt.Println(result.RowsAffected)
    
      user = User{ID: 1, Name: "ob", Age: 13, Birthday: time.Date(2023, 06, 01, 00, 00, 00, 00, time.UTC)}
      result = db.Save(&user)
      fmt.Println(user)
      fmt.Println(result.Error)
      fmt.Println(result.RowsAffected)
    
      user = User{ID: 1}
      result = db.Delete(&user)
      fmt.Println(user.ID)
      fmt.Println(result.Error)
      fmt.Println(result.RowsAffected)
    
      // Output logs.
      logrus.WithFields(logrus.Fields{
          "duration": time.Since(start),
        }).Debug("DropTable")
    
    }
    

    References

    For more information about Go-SQL-Driver/MySQL, see Go-SQL-Driver/MySQL in the OceanBase Database open-source community.

    Previous topic

    Use Tortoise ORM to connect to OceanBase Database
    Last

    Next topic

    beego ORM
    Next
    What is on this page
    Prerequisites
    Procedure
    Step 1: (Optional) Install Go and the Go-SQL-Driver/MySQL driver
    Step 2: Obtain the connection information of OceanBase Database
    Step 3: Modify the database connection information in the gorm-oceanbase project
    Step 4: Run the go-oceanbase project
    Project code
    go.mod file
    go.sum file
    test.go code
    Full code
    References