以编程方式在桌面上创建 MS SQL Compact 数据库文件

发布于 2024-08-15 23:15:51 字数 144 浏览 6 评论 0原文

是否可以在桌面上为 MS SQL Server Compact 创建 SDF 数据库文件?

我想创建一个桌面应用程序,它可以创建 SDF 数据库文件以将其复制到 Windows Mobile 设备。

这可能吗?如何实现?

谢谢

Is it possible to create an SDF database file for MS SQL Server Compact on a desktop.?

I want to craete a desktop application which can create an SDF database file for copying it to a Windows Mobile device.

Is it possible and how?

thanks

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

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

发布评论

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

评论(2

夜血缘 2024-08-22 23:15:51

是的,这是可能的。引用SqlCeEngine.CreateDatabase 上的 MSDN 页面< /a>:

if (File.Exists("Test.sdf"))
File.Delete("Test.sdf");

string connStr = "Data Source = Test.sdf; Password = <password>;";

SqlCeEngine engine = new SqlCeEngine(connStr);
engine.CreateDatabase();
engine.Dispose();
SqlCeConnection conn = null;

try 
{
   conn = new SqlCeConnection(connStr);
   conn.Open();

   SqlCeCommand cmd = conn.CreateCommand();
   cmd.CommandText = "CREATE TABLE myTable (col1 int, col2 ntext)";
   cmd.ExecuteNonQuery();
}

catch {}

finally 
{
   conn.Close();
}

此后,您只需将 Test.sdf 复制到移动设备上即可。

希望这有帮助。

Yes, this is possible. to quote from the MSDN page on SqlCeEngine.CreateDatabase:

if (File.Exists("Test.sdf"))
File.Delete("Test.sdf");

string connStr = "Data Source = Test.sdf; Password = <password>;";

SqlCeEngine engine = new SqlCeEngine(connStr);
engine.CreateDatabase();
engine.Dispose();
SqlCeConnection conn = null;

try 
{
   conn = new SqlCeConnection(connStr);
   conn.Open();

   SqlCeCommand cmd = conn.CreateCommand();
   cmd.CommandText = "CREATE TABLE myTable (col1 int, col2 ntext)";
   cmd.ExecuteNonQuery();
}

catch {}

finally 
{
   conn.Close();
}

After this, you can just copy Test.sdf onto the mobile device.

Hope this helps.

探春 2024-08-22 23:15:51

如何创建?

来自视觉工作室?打开服务器资源管理器并添加新的数据连接。选择 SQL Compact 作为数据源,为其指定文件名,然后单击“创建”。

来自代码?使用 SqlCeEngine 类。给它一个连接字符串并调用 Create。

Create how?

From Visual Studio? Open the Server Explorer and add a new Data Connection. Select SQL Compact as the data source, give it a file name and click Create.

From Code? Use the SqlCeEngine class. Give it a connection string and call Create.

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