SqlCeCommand 构造函数 (String)
用查询文本初始化 SqlCeCommand 类的新实例。
命名空间: System.Data.SqlServerCe
程序集: System.Data.SqlServerCe(在 system.data.sqlserverce.dll 中)
语法
声明
Public Sub New ( _
commandText As String _
)
用法
Dim commandText As String
Dim instance As New SqlCeCommand(commandText)
public SqlCeCommand (
string commandText
)
public:
SqlCeCommand (
String^ commandText
)
public SqlCeCommand (
String commandText
)
public function SqlCeCommand (
commandText : String
)
不适用。
参数
- commandText
查询的文本。
备注
下表显示 SqlCeCommand 实例的初始属性值。
属性 |
初始值 |
---|---|
cmdText |
|
Text |
|
空引用(在 Visual Basic 中为 Nothing) |
示例
下面的示例创建一个 SqlCeCommand 并设置它的一些属性。
Dim queryText As String = "SELECT * FROM Categories ORDER BY [Category ID]"
Dim cmd As New SqlCeCommand(queryText)
cmd.Connection = conn
cmd.CommandType = CommandType.Text
string queryText = "SELECT * FROM Categories ORDER BY [Category ID]";
SqlCeCommand cmd = new SqlCeCommand(queryText);
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
平台
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
Windows Vista、Microsoft Windows XP SP2 和 Windows Server 2003 SP1 支持 Microsoft .NET Framework 3.0。
版本信息
.NET Framework
受以下版本支持:3.0
.NET Compact Framework
受以下版本支持:2.0、1.0