SQL Server Compact Edition - 创建数据库表

时间:2009-12-18 19:45:34

标签: .net compact-framework sql-server-ce

我使用以下代码创建SQL Server CE数据库表是正确的:

string connectionString = "DataSource=\"test.sdf\"; Password=\"mypassword\"";
SqlCeEngine en = new SqlCeEngine(connectionString);
en.CreateDatabase();

但是如何创建数据库表并插入数据呢?我已经将SQL创建的语句存储在应用程序资源位置。

2 个答案:

答案 0 :(得分:0)

它应该像加载SQL语句并执行它们一样简单。

如果您不知道如何加载资源或执行SQL语句,请更新您的问题并指出您正在使用的语言,以便我们为您提供代码示例。

编辑:没关系,我看到你正在使用C#...

SqlCeConnection conn = new SqlCeConnection(en.LocalConnectionString);
SqlCeCommand cmd = new SqlCeCommand(sql, conn);
cmd.ExecuteNonQuery();

答案 1 :(得分:0)

阅读this blog article怎么样?