Fonction LocalDBGetInstanceInfo
S'applique à : SQL Server
Retourne des informations pour l'instance de base de données locale SQL Server Express (LocalDB) spécifiée, entre autres si elle existe, la version de LocalDB qu'elle utilise, si elle s'exécute, et ainsi de suite.
Les informations sont retournées dans un struct nommé LocalDBInstanceInfo, qui a la définition suivante.
typedef struct _LocalDBInstanceInfo
{
// Contains the size of the LocalDBInstanceInfo struct
DWORD cbLocalDBInstanceInfoSize;
// Holds the instance name
TLocalDBInstanceNamewszInstanceName;
// TRUE if the instance files exist on disk, FALSE otherwise
BOOL bExists;
// TRUE if the instance configuration registry is corrupted, FALSE otherwise
BOOLbConfigurationCorrupted;
// TRUE if the instance is running at the moment, FALSE otherwise
BOOL bIsRunning;
// Holds the LocalDB version for the instance in the format: major.minor.build.revision
DWORD dwMajor;
DWORD dwMinor;
DWORD dwBuild;
DWORD dwRevision;
// Holds the date and time when the instance was started for the last time
FILETIME ftLastStartUTC;
// Holds the name of the TDS named pipe to connect to the instance
WCHARwszConnection;
// TRUE if the instance is shared, FALSE otherwise
BOOLbIsShared;
// Holds the shared name for the instance (if the instance is shared)
TLocalDBInstanceNamewszSharedInstanceName;
// Holds the SID of the instance owner (if the instance is shared)
WCHARwszOwnerSID;
// TRUE if the instance is Automatic, FALSE otherwise
BOOLbIsAutomatic;
} LocalDBInstanceInfo;
Fichier d’en-tête : msoledbsql.h
Syntaxe
HRESULT LocalDBGetInstanceInfo(
PCWSTR wszInstanceName,
PLocalDBInstanceInfo pInstanceInfo,
DWORD dwInstanceInfoSize
);
Paramètres
wszInstanceName
[Entrée] Nom de l'instance.
pInstanceInfo
[Sortie] La mémoire tampon pour stocker des informations sur l'instance de LocalDB.
dwInstanceInfoSize
[Entrée] Contient la taille de la mémoire tampon InstanceInfo .
Retours
S_OK
La fonction a réussi.
LOCALDB_ERROR_NOT_INSTALLED
SQL Server Express LocalDB n'est pas installé sur l'ordinateur.
LOCALDB_ERROR_INVALID_PARAMETER
Un ou plusieurs paramètres d'entrée spécifiés ne sont pas valides.
LOCALDB_ERROR_INVALID_INSTANCE_NAME
Le nom d'instance spécifié n'est pas valide.
LOCALDB_ERROR_UNKNOWN_INSTANCE
L'instance n'existe pas.
LOCALDB_ERROR_INSTANCE_FOLDER_PATH_TOO_LONG
Le chemin d'accès où l'instance doit être stockée est plus long que MAX_PATH.
LOCALDB_ERROR_CANNOT_ACCESS_INSTANCE_FOLDER
Un dossier d'instance n'est pas accessible.
LOCALDB_ERROR_CANNOT_ACCESS_INSTANCE_REGISTRY
Un Registre d'instance n'est pas accessible.
LOCALDB_ERROR_INSTANCE_CONFIGURATION_CORRUPT
Une configuration d'instance est endommagée.
LOCALDB_ERROR_INTERNAL_ERROR
Une erreur inattendue s’est produite. Pour plus d'informations, consultez le journal des événements.
Détails
La justification de l’introduction de l’argument de taille de struct (lpInstanceInfoSize) consiste à permettre à l’API de retourner différentes versions de LocalDBInstanceInfostruct, ce qui permet efficacement la compatibilité descendante et descendante.
Si l’argument de taille de struct (lpInstanceInfoSize) correspond à la taille d’une version connue du localDBInstanceInfostruct, cette version du struct est retournée. Sinon, LOCALDB_ERROR_INVALID_PARAMETER est retourné.
Un exemple classique d’utilisation de l’API LocalDBGetInstanceInfo ressemble à ceci :
LocalDBInstanceInfo ii;
LocalDBInstanceInfo(L"Test", &ii, sizeof(LocalDBInstanceInfo));
Pour un exemple de code qui utilise l'API LocalDB, consultez SQL Server Express LocalDB Reference.
Voir aussi
En-tête et informations de version de la base de données locale SQL Server Express