Skip to main content

UseDatabase()

This method disconnects the currently connected database and connects to the specified one.

func (c *Client) UseDatabase(ctx context.Context, option UseDatabaseOption) error

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

UseDatabaseOption

UseDatabaseOption

This is an interface type. The useDatabaseNameOpt struct type implements this interface type.

You can use the NewUseDatabaseOption() function to get the concrete implementation.

NewUseDatabaseOption

The signature of this method is as follows:

func NewUseDatabaseOption(dbName string) *useDatabaseNameOpt

Parameter

Description

Type

dbName

Name of the database to use.

string

Return

Null

Example

dbName := `test_db`
cli, err := milvusclient.New(ctx, &milvusclient.ClientConfig{
Address: milvusAddr,
})
if err != nil {
// handle err
}

err = cli.UseDatabase(ctx, milvusclient.NewUseDatabaseOption(dbName))
if err != nil {
// handle err
}