SnapClientGetDatabase(String) Method

Gets the database that matches databaseName.

Definition

Namespace: SnapDB.Snap.Services
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public abstract ClientDatabaseBase? GetDatabase(
	string databaseName
)

Parameters

databaseName  String
The case-insensitive name of the database to retrieve.

Return Value

ClientDatabaseBase
A ClientDatabaseBase instance representing the requested client database.

Remarks

The GetDatabase(String) method retrieves a client database with the specified databaseName. If a database with the specified name does not exist, this method may return null or throw an exception.

See Also