在平台构建器的目录中选择什么以将 SQL CE 包含在 Windows CE 的映像中
在平台构建器的目录中选择什么以将 SQL CE 包含在 Windows CE 的映像中。
我选择了“应用程序和服务开发”->“Sql Compact”,但它仍然给出以下错误。
未找到文件或程序集名称“system.data.sqlserverce version=3.5.0.0,文化...”或其依赖项之一
进一步挖掘时发现 进一步挖掘时发现 链接
现在的问题是如何在您的平台中添加对 SPI_GETPLATFORMNAME 的支持。
What to select in catalog in platform builder to include SQL CE in image for windows CE.
I have selected Application and Services Development->Sql Compact but it is still giving following error.
File or assembly name "system.data.sqlserverce version=3.5.0.0, culture..." or one of its dependencies, was not found
While digging further found While digging further found Link
Now the question is how to add support for SPI_GETPLATFORMNAME in your platform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于你的第二个问题:
您需要 P/Invoke 来自 Coredll.dll 的
SystemParameterInfo
。有关如何执行此操作或什至实现的示例,您可以检查:请注意,产品名称由 OEM 填写,但并非所有 OEM 都会这样做。
关于 SQLCe - 我不确定它是否包含在 PB 中。您可能需要单独安装 CAB 文件,但我再次不确定这一点。
Regarding your second question:
You need to P/Invoke
SystemParameterInfo
from Coredll.dll. For examples on how to do this or maybe even an implementation, you can check:Be aware that the product name is up to the OEM to fill in and not all OEMs do that.
Regarding the SQLCe - I am not certain that it is included with PB. You might need to install the CAB file seperately, but, again, I am not sure of this.