DropDatabase()
This method drops a database.
func (c *Client) DropDatabase(ctx context.Context, option DropDatabaseOption, callOptions ...grpc.CallOption) error
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
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 |
---|---|---|
| Name of the database to drop. |
|
Return
Null
Example
err = cli.DropDatabase(ctx, milvusclient.NewDropDatabaseOption(dbName))
if err != nil {
// handle err
}