Click or drag to resize
SqlDatabaseSetupGetDatabaseStatus Method
Retrieves the status of a database.

Namespace: PDTec.IceNet.Sdk.Database.Sql
Assembly: PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntax
C#
public void GetDatabaseStatus(
	string databaseName,
	out bool isIceNetDatabase,
	out string databaseVersion,
	out bool isMatching,
	out bool isUpgradeable
)

Parameters

databaseName
Type: SystemString
The database name.
isIceNetDatabase
Type: SystemBoolean
true if the database contains an ice.NET schema, false otherwise.
databaseVersion
Type: SystemString
The actual database schema version.
isMatching
Type: SystemBoolean
true if the database version matches the builtin version, false otherwise.
isUpgradeable
Type: SystemBoolean
true if the database version can be upgraded to the builtin version, false otherwise.
See Also