winform中,使用openfileDialog而引起的“Unable to open the database file"

前端之家收集整理的这篇文章主要介绍了winform中,使用openfileDialog而引起的“Unable to open the database file"前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

环境:vs C# winform

问题:openfileDialog打开时,系统报错“Unable to open the database file"

原因:由于sqlite的路径使用相对路径,当openfileDialog触发打开事件时默认路径改变,系统在当前openfileDialog打开的路径上找不到数据库而报错.

解决

将openfileDialog的属性restoreDirectory的值设置为true

原文链接:https://www.f2er.com/sqlite/202207.html

猜你在找的Sqlite相关文章