Failed to run the WC DB work queue associated with 错误的解决

步骤:

1、”文件夹选项"中,显示所有隐藏的文件夹及文件,操作后,能看到隐藏的.svn文件夹下的wc.db文件了
Failed to run the WC DB work queue associated with 错误的解决_第1张图片
2、到官网下载 sqlite
如果是Windows系统,下载Precompiled Binaries for Windows 下红框中版本
Failed to run the WC DB work queue associated with 错误的解决_第2张图片
3、用sqlite打开wc.db

#打开记录数据库
sqlite3 .svn/wc.db
select * from work_queue;

可以看到存在问题的文件夹
4、输入delete from work_queue,然后执行;再用select * from work_queue查询,就查询不到结果了;
5、成功!

你可能感兴趣的:(系统,数据库,svn,win)