Connect Using the SAP HANA Go Interface
- How to install Go
- How to create a Go application that queries a SAP HANA Database
Prerequisites
- You have completed the first 3 tutorials in this mission.
Go is an open-source programming language developed by Google to increase productivity among programmers. For more information, see the Go Documentation.
- Step 1
The first step is to check if Go is installed, and if so, which version. To do so, enter the following command:
ShellCopygo version
If Go is installed, then it will return the currently installed version, such as 1.22.1.
For further details on supported versions, see SAP Note 3165810 - SAP HANA Client Supported Platforms.
If it is not installed, download it from Download Go, run the installer, follow the provided instructions, and ensure that Go is in your path.
On Linux, follow the instructions for the appropriate Linux version such as the Installing Go for openSUSE.
In order for the shell to recognize that Go has been installed and for any go commands in future steps to be recognized, a new shell window needs to be opened.
- Step 2
The SAP HANA Client interface for Go, like the other SAP HANA client interfaces, except for JDBC, makes use of a C library named SQLDBC. The Go driver loads the SQLDBC library named
libdbcapiHDBusingcgo. For further information on the following steps, consult Set Up Your Application to Use the Go Driver Package in the SAP HANA Client Interface Programming Reference Guide. A 64-bitgcccompiler is required.-
To check if a 64-bit
gcccompiler is installed, run the following command:ShellCopygcc --version
For Windows (if it is not installed), it can be downloaded from Download MinGW. Under WinLibs.com, you can install from winlibs.com, by scrolling to the Download section and downloading the latest release version (UCRT runtime) of the ZIP archive for Win64 to install for the x86_64 architecture, and then extracting the folder.

If command prompt isn’t showing you the installed version after running the version check command, manually add the bin folder to your path by setting it in your environment variables.
On Windows, search Edit the System Environment Variables and click on Environment Variables….

Look for the
Pathenvironment variable and double click to edit. Select Browse and manually browse through your File Explorer to find the bin folder.
On Linux, install the System GNU C compiler for your version of Linux. Note that if you are using openSUSE, minGW is included in the installation for Go through YaST.
-
Examine the Go environment by running the below command:
ShellCopygo envNotice that GOROOT is set to a location such as
C:\goor/usr/lib64/go/1.22. This is the location that the Go SDK is installed to.GOPATH is set to a location such as
C:\Users\user\goor$HOME/goand defines the root of your workspace which stores your codebase. -
Set the
CGO_LDFLAGSenvironment variable to point to the location of thelibdbcapiHDBlibrary as shown below and set theLD_LIBRARY_PATHif needed.On Windows, add a NEW variable. Set the variable name to
CGO_LDFLAGSand the variable value to the location ofdbcapilibrary:C:\SAP\hdbclient\libdbcapiHDB.dll
Ensure that the
hdbclientfolder is set in your Path environment variable. You can set this path by clicking on New and browsing for yourhdbclientfolder.
On Linux, add the following lines to the
.bash_profile.Shell (Linux or Mac)Copyexport CGO_LDFLAGS=$HOME/sap/hdbclient/libdbcapiHDB.so export LD_LIBRARY_PATH=$HOME/sap/hdbclient -
Go to the driver folder and create a go module.
Shell (Windows)Copycd C:\SAP\hdbclient\golang\src\SAP\go-hdb\driver go mod init "SAP/go-hdb/driver" go mod tidyShell (Linux or Mac)Copycd ~/sap/hdbclient/golang/src/SAP/go-hdb/driver go mod init "SAP/go-hdb/driver" go mod tidy
-
- Step 3
- In a shell, create a folder named
go, enter the newly created directory, and open a file namedgoQuery.goin an editor.Shell (Microsoft Windows)Copymkdir %HOMEPATH%\HANAClientsTutorial\go cd %HOMEPATH%\HANAClientsTutorial\go notepad goQuery.goShell (Linux or Mac)Copymkdir -p $HOME/HANAClientsTutorial/go cd $HOME/HANAClientsTutorial/go pico goQuery.go - Add the code below to
goQuery.go:Go CodeCopypackage main import ( "fmt" "database/sql" "log" _ "SAP/go-hdb/driver" ) func main() { //Option 1, retrieve the connection parameters from the hdbuserstore //host, port, user name and password come from the hdbuserstore key USER1UserKey connectString := "hdb://?key=USER1UserKey&encrypt=true&sslValidateCertificate=false" //Option 2, specify the connection parameters //connectString := "hdb://User1:Password1@999deec0-ccb7-4a5e-b317-d419e19be648.hana.prod-us10.hanacloud.ondemand.com:443?encrypt=true&sslValidateCertificate=false" //encrypt and sslValidateCertificate should be true for HANA Cloud connections //As of SAP HANA Client 2.6, connections on port 443 enable encryption by default fmt.Println("Connect String is " + connectString) db, err := sql.Open("hdb", connectString) if err != nil { log.Fatal(err) return } defer db.Close() rows, err := db.Query("SELECT NAME, ADDRESS from HOTELS.CUSTOMER") if err != nil { log.Fatal(err) } defer rows.Close() var lastName string var address string for rows.Next() { err = rows.Scan(&lastName, &address) if err != nil { log.Fatal(err) } fmt.Println(lastName + ": " + address) } err = rows.Err() if err != nil { log.Fatal(err) } }Once the
goQuery.gofile has been updated, save and close the file. -
Create another go module and modify its contents:
Shell (Windows)Copygo mod init "go/goQuery" go mod tidy notepad go.modShell (Linux or Mac)Copygo mod init "go/goQuery" go mod tidy pico go.mod -
Add the code below to
go.modunder the go version line:Make sure the path to the driver folder is correct and make any necessary changes.
Code (Windows)Copyreplace SAP/go-hdb/driver v0.1.0 => C:\SAP\hdbclient\golang\src\SAP\go-hdb\driver require SAP/go-hdb/driver v0.1.0Code (Linux or Mac)Copyreplace SAP/go-hdb/driver v0.1.0 => /home/name/sap/hdbclient/golang/src/SAP/go-hdb/driver require SAP/go-hdb/driver v0.1.0
-
Run the application:
ShellCopygo run goQuery.go
For more information on the API’s used, consult the SAP HANA connection specific properties at Go Connection Properties, Go Database/SQL Tutorial, and Package SQL.
- In a shell, create a folder named
- Step 4
Visual Studio Code provides plugins for Go and can be used to debug an application.
-
If you have not already done so, download Visual Studio Code.
-
If you have not already done so, in Visual Studio Code, choose File | Add Folder to Workspace, and then add the
HANAClientsTutorialfolder.
-
Open the file
goQuery.go.
Visual Studio Code will recognize the
gofile extension and will suggest installing the Go for Visual Studio Code extension. Click Install. -
Place a breakpoint.

-
Select Run | Start Debugging.
Notice that the program stops running at the breakpoint that was set.
Observe the variable values in the leftmost pane. Step through code.

Debugging can also be performed from the command line using Delve.
-
- Step 5
Congratulations! You have now created and debugged a Go application that connects to and queries an SAP HANA database.
Which of the following statements are true?