在设计时访问位于 LOCALAPPDATA 中的 SQLite 数据库
我在 Delphi 10.3.2 Pro 中使用 FireDac,并希望在设计时将 SQLite 数据库的位置设置为 %LOCALAPPDATA%。我该如何做到这一点,或者只能通过运行时的代码来做到这一点?这是已经尝试过的图像。我收到“[FireDac] [Phys] [SQLite] 错误:无法打开数据库”。
I am using FireDac in Delphi 10.3.2 Pro and would like to set the location for a SQLite database to %LOCALAPPDATA% at design time. How can I do this, or is it only possible to do this through code at runtime? Here is an image of what have already tried. I get "[FireDac] [Phys] [SQLite] ERROR: Unable to open database".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
%LOCALAPPDATA%
的值仅在运行时有意义。您需要将其解析为实际路径,然后使用该路径指定要打开的数据库文件。The value of
%LOCALAPPDATA%
is only meaningful at runtime. You need to resolve it to an actual path, and then use that path to specify the database file to open.