Метод Application.GetServerInfo
Returns the SQL Server version number of the SQL Server product installed on the target server.
Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (в Microsoft.SqlServer.ManagedDTS.dll)
Синтаксис
'Декларация
Public Sub GetServerInfo ( _
server As String, _
<OutAttribute> ByRef serverVersion As String _
)
'Применение
Dim instance As Application
Dim server As String
Dim serverVersion As String
instance.GetServerInfo(server, serverVersion)
public void GetServerInfo(
string server,
out string serverVersion
)
public:
void GetServerInfo(
String^ server,
[OutAttribute] String^% serverVersion
)
member GetServerInfo :
server:string *
serverVersion:string byref -> unit
public function GetServerInfo(
server : String,
serverVersion : String
)
Параметры
- server
Тип: System.String
The name of the server hardware to check for the SQL Server product version.
- serverVersion
Тип: System.String%
The version number of the SQL Server product, defined as an out parameter.
Замечания
The default value of this property is 9.
Примеры
The following example retrieves the SQL Server version number from the specified server.
static void Main(string[] args)
{
Application app = new Application();
String outParam;
app.GetServerInfo("yourserver", out outParam);
Console.WriteLine("Server version? " + outParam);
}
Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim outParam As String
app.GetServerInfo("yourserver", out outParam)
Console.WriteLine("Server version? " + outParam)
End Sub