Compartir a través de


SqlCeCommand Constructor

Inicializa una nueva instancia de la clase SqlCeCommand.

Espacio de nombres:  System.Data.SqlServerCe
Ensamblado:  System.Data.SqlServerCe (en System.Data.SqlServerCe.dll)

Sintaxis

'Declaración
<SecurityCriticalAttribute> _
<SecurityTreatAsSafeAttribute> _
Public Sub New
'Uso

Dim instance As New SqlCeCommand()
[SecurityCriticalAttribute]
[SecurityTreatAsSafeAttribute]
public SqlCeCommand()
[SecurityCriticalAttribute]
[SecurityTreatAsSafeAttribute]
public:
SqlCeCommand()
[<SecurityCriticalAttribute>]
[<SecurityTreatAsSafeAttribute>]
new : unit -> SqlCeCommand
public function SqlCeCommand()

Comentarios

El constructor base inicializa todos los campos en sus valores predeterminados. En la siguiente tabla se muestran los valores iniciales de las propiedades para una instancia de SqlCeCommand.

Propiedades

Valor inicial

CommandText

cadena vacía ("")

CommandType

Text

Connection

nulo

Ejemplos

En el ejemplo siguiente se crea un objeto SqlCeCommand y se establecen algunas de sus propiedades.

Dim cmd As SqlCeCommand = conn.CreateCommand()
cmd.CommandText = "SELECT * FROM Categories ORDER BY CategoryID"
cmd.CommandType = CommandType.Text
cmd.UpdatedRowSource = UpdateRowSource.Both
SqlCeCommand cmd = conn.CreateCommand();
cmd.CommandText = "SELECT * FROM Categories ORDER BY CategoryID";
cmd.CommandType = CommandType.Text;
cmd.UpdatedRowSource = UpdateRowSource.Both;

Vea también

Referencia

SqlCeCommand Clase

Sobrecarga de SqlCeCommand

Espacio de nombres System.Data.SqlServerCe