SqlCeCommand 构造函数 (String, SqlCeConnection)

初始化具有查询文本和 SqlCeConnectionSqlCeCommand 类的一个新实例。

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

语法

声明
Public Sub New ( _
    commandText As String, _
    connection As SqlCeConnection _
)
用法
Dim commandText As String
Dim connection As SqlCeConnection

Dim instance As New SqlCeCommand(commandText, _
    connection)
public SqlCeCommand(
    string commandText,
    SqlCeConnection connection
)
public:
SqlCeCommand(
    String^ commandText, 
    SqlCeConnection^ connection
)
new : 
        commandText:string * 
        connection:SqlCeConnection -> SqlCeCommand
public function SqlCeCommand(
    commandText : String, 
    connection : SqlCeConnection
)

参数

注释

下表显示 SqlCeCommand 实例的初始属性值。

属性

初始值

CommandText

cmdText

CommandType

Text

Connection

一个新的 SqlCeConnection,它是 connection 参数的值。

您可以通过设置相关属性来更改这些参数中的任何一个参数的值。

示例

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

conn.Open()
Dim cmd As New SqlCeCommand("INSERT INTO foo (col1) VALUES (1)", conn)
cmd.ExecuteNonQuery()
conn.Close()
conn.Open();
SqlCeCommand cmd = new SqlCeCommand("INSERT INTO foo (col1) VALUES (1)", conn);
cmd.ExecuteNonQuery();
conn.Close();

请参阅

参考

SqlCeCommand 类

SqlCeCommand 重载

System.Data.SqlServerCe 命名空间