Skip to main content

DescribeDatabase()

This method returns information about a specific database in detail.

func (c *Client) DescribeDatabase(ctx context.Context, option DescribeDatabaseOption, callOptions ...grpc.CallOption) (*entity.Database, error)

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

DescribeDatabaseOption

callOpts

Optional parameters for calling the methods.

grpc.CallOption

DescribeDatabaseOption

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

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

NewDescribeDatabaseOption

The signature of this method is as follows:

func NewDescribeDatabaseOption(dbName string) *describeDatabaseOption

Parameter

Description

Type

dbName

Name of the database to describe.

string

entity.Database

The entity.Database struct type is as follows:

type Database struct {
Name string
Properties map[string]string
}

Return

*entity.Database

Example

db, err := cli.DescribeDatabase(ctx, milvusclient.NewDescribeDatabaseOption(dbName))
if err != nil {
// handle err
}
log.Println(db)