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 数据库中的数据。我担心的是,如果我的客户只是双击批处理文件而不先安装 sqlite3,这个批处理文件会运行吗?
我会将 sqlite3.exe 包含在与批处理文件和数据库相同的文件夹中。
谢谢。
SQLite 是一个嵌入式数据库,这意味着使用它的典型和推荐方式是将其编译到程序中。
该sqlite3.exe程序没有任何依赖关系,无需在任何机器上安装即可运行。
sqlite3.exe