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.
我正在使用内存中的 SQLite 数据库来存储部分配置以用于复制/粘贴。我需要能够抓取内存以将其流式传输到剪贴板并将其读回。有谁知道如何抓取内存?
SQLite 没有机制来获取内存数据库的实际内存。
您可以使用备份 API将数据库复制到一个临时文件,但首先创建一个基于文件的数据库可能是一个更好的主意。
或者,可以编写自己的VFS,将数据存储在 RAM 中而不是文件中。但是,这可能比您想要花费更多的精力。