Skip to main content

using_database()

This operation changes the database currently in use.

📘Notes

This method applies only to dedicated clusters.

Request Syntax

using_database(
db_name: str,
**kwargs,
)

PARAMETERS:

  • db_name (string) -

    [REQUIRED]

    Name of the database to use.

RETURN TYPE:

NoneType

RETURNS:

None

EXCEPTIONS:

  • MilvusException - Raised if any error occurs during this operation.

Examples

from pymilvus import MilvusClient

client = MilvusClient(uri, token) # db = "default"

client.using_database("my_db")