SQL Server Compact Edition - 创建数据库表
我使用下面的代码创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该像加载 SQL 语句并执行它们一样简单。
如果您不知道如何加载资源或执行 SQL 语句,请更新您的问题并指出您正在使用哪种语言,以便我们为您提供代码示例。
编辑:没关系,我看到你正在使用 C#...
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#...