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 |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
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 |
---|---|---|
| Name of the database to use. |
|
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
}