Skip to main content

DropDatabase()

This method drops a database.

func (c *Client) DropDatabase(ctx context.Context, option DropDatabaseOption, callOptions ...grpc.CallOption) error

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

DropDatabaseOption

callOpts

Optional parameters for calling the methods.

grpc.CallOption

DropDatabaseOption

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

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

NewDropDatabaseOption

The signature of this method is as follows:

func NewDropDatabaseOption(dbName string) *dropDatabaseOption

Parameter

Description

Type

dbName

Name of the database to drop.

string

Return

Null

Example

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