SqlCeCommand 构造函数

初始化 SqlCeCommand 类的一个新实例。

命名空间:  System.Data.SqlServerCe
程序集:  System.Data.SqlServerCe(在 System.Data.SqlServerCe.dll 中)

语法

声明
<SecurityCriticalAttribute> _
<SecurityTreatAsSafeAttribute> _
Public Sub New
用法

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

注释

基构造函数将所有字段初始化为它们的默认值。下表显示 SqlCeCommand 实例的初始属性值。

属性

初始值

CommandText

空字符串 ("")

CommandType

Text

Connection

nullnull 引用(在 Visual Basic 中为 Nothing)

示例

下面的示例创建一个 SqlCeCommand 并设置它的一些属性。

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;

请参阅

参考

SqlCeCommand 类

SqlCeCommand 重载

System.Data.SqlServerCe 命名空间