Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 WPF 应用程序动态创建一个 SQL 紧凑型数据库(以及进一步的表)。我已经安装了 SQL compact 4.0 和 Visual Studio 2012。
有人有一些示例代码吗?
您可以使用 SqlCeEngine.CreateDatabase 方法以编程方式创建数据库文件,然后使用 SqlCeCommand.ExecuteNonQuery 执行“CREATE TABLE”语句等。