SQL Server Compact Edition - 创建数据库表

发布于 2024-08-15 07:21:15 字数 277 浏览 4 评论 0原文

我使用下面的代码创建了一个 SQL Server CE 数据库表,这是正确的:

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

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

I got it right to create a SQL Server CE database table using the code below:

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

But how do I create my database tables and insert data? I've got the SQL created statements stored in the application Resource location.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何止钟意 2024-08-22 07:21:15

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

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

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

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

It should be as easy as loading the SQL statements and executing them.

If you don't know how to load resources, or execute the SQL statements, update your question and indicate which language you're using, so we can give you code examples.

EDIT: Nevermind, I see you're using C#...

SqlCeConnection conn = new SqlCeConnection(en.LocalConnectionString);
SqlCeCommand cmd = new SqlCeCommand(sql, conn);
cmd.ExecuteNonQuery();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文