gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 03:09:52 24 4
gpt4 key购买 nike

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

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

这可能吗?如何实现?

谢谢

最佳答案

是的,这是可能的。引用 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();
}

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

希望这有帮助。

关于.net - 以编程方式在桌面上创建 MS SQL Compact 数据库文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1929021/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com