Поделиться через


Application.GetServerInfo Method

Returns the SQL Server version number of the SQL Server product installed on the target server.

Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Синтаксис

'Декларация
Public Sub GetServerInfo ( _
    server As String, _
    <OutAttribute> ByRef serverVersion As String _
)
public void GetServerInfo (
    string server,
    out string serverVersion
)
public:
void GetServerInfo (
    String^ server, 
    [OutAttribute] String^% serverVersion
)
public void GetServerInfo (
    String server, 
    /** @attribute OutAttribute() */ /** @ref */ String serverVersion
)
JScript не поддерживает передачу аргументов типа, содержащего значение, по ссылке.

Параметры

  • server
    The name of the server hardware to check for the SQL Server product version.
  • serverVersion
    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

Sample Output:

Server version? 9.00.926.00

Синхронизация потоков

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

Application Class
Application Members
Microsoft.SqlServer.Dts.Runtime Namespace