Compartir a través de


ProtocolField.SqlExpression Property

Gets or sets the Transact-SQL expression that computes the protocol field value.

Espacio de nombres: Microsoft.SqlServer.Management.Nmo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintaxis

'Declaración
Public Property SqlExpression As String
public string SqlExpression { get; set; }
public:
property String^ SqlExpression {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_SqlExpression ()

/** @property */
public void set_SqlExpression (String value)
public function get SqlExpression () : String

public function set SqlExpression (value : String)

Valor de propiedad

A String, between 0 and 4000 characters in length, that specifies the Transact-SQL statement that computes the field value.

Notas

A Transact-SQL expression is a combination of identifiers, values, and operators that the Database Engine (Motor de base de datos) can evaluate to get a result. You can use any expression that can be part of a SELECT statement. The terms of the expression can be any of the following:

  • Constants.

  • Calls to functions.

  • The notification fields defined in the ADF (but not computed fields).

  • The following built-in notification fields:

    • SubscriberId

    • DeviceName

    • DeviceTypeName

    • DeviceAddress

    • SubscriberLocale

    • DeliveryChannelName

For more information, see Expresiones (motor de base de datos).

Enclose string constants in single quotation marks.

If the ProtocolField does not use a SqlExpression property it must use a FieldReference property instead.

Ejemplo

The following examples show how to define a protocol field that uses a Transact-SQL expression to generate the protocol field value:

ProtocolField smtpProtocolField1 = 
    new ProtocolField(smtpProtocol, "Subject");
smtpProtocolField1.SqlExpression = 
    "'Flight notification: '+CONVERT (NVARCHAR(30), GETDATE())";
smtpProtocol.ProtocolFields.Add(smtpProtocolField1);
Dim smtpProtocolField1 As ProtocolField = _
    New ProtocolField(smtpProtocol, "Subject")
smtpProtocolField1.SqlExpression = _
    "'Flight notification: '+CONVERT (NVARCHAR(30), GETDATE())"
smtpProtocol.ProtocolFields.Add(smtpProtocolField1)

Seguridad para subprocesos

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.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

ProtocolField Class
ProtocolField Members
Microsoft.SqlServer.Management.Nmo Namespace

Otros recursos

Protocol Element (ADF)
SqlExpression Element for Protocol/Fields/Field (ADF)