InstAPI.GetSvcBinPathByInstName 方法

定义

根据给定的友好实例名称来检索 SQL Server 服务的程序文件根目录。

public:
 static bool GetSvcBinPathByInstName(System::String ^ instanceName, Microsoft::SqlServer::SQL_SVCS product, System::Text::StringBuilder ^ directoryPath, System::UInt32 % bufferSize);
public static bool GetSvcBinPathByInstName(string instanceName, Microsoft.SqlServer.SQL_SVCS product, System.Text.StringBuilder directoryPath, ref uint bufferSize);
static member GetSvcBinPathByInstName : string * Microsoft.SqlServer.SQL_SVCS * System.Text.StringBuilder * uint32 -> bool
Public Shared Function GetSvcBinPathByInstName (instanceName As String, product As SQL_SVCS, directoryPath As StringBuilder, ByRef bufferSize As UInteger) As Boolean

参数

instanceName
String

一个表示实例名称的 String 值。

product
SQL_SVCS

SQL 服务。

directoryPath
StringBuilder

一个指向用于接收路径的缓冲区的指针。

bufferSize
UInt32

一个指向用于提供缓冲区长度的 DWORD 值的指针。 如果提供的缓冲区太小,则返回所需长度。

返回

如果调用成功,则为 true;否则为 false

适用于