This morning i was committing several items to a svn repository. During the commit operation my operating system crashed and now all svn commands (Including clean up) ends up wi
I got this error too, and I don't want to download sqlite. And finally I solve this by :
then I can update and commit without error!
'svn cleanup' worked for me. You might need to run this as Administrator.
In case someone else is also facing this issue he can use below options.
go to SVN -> cleanup (GUI) and select below 3 options.
It will definitely work.
Run svn cleanup
against your working copy (show us the result if it errors our)
or
Checkout a fresh working copy using svn checkout
command and copy your changes from the broken wc to this one. Run commit again via the new working copy.
I have seen a lot of threads and answer to the same question. What I saw most is "Run Cleanup" to the top level of the directory. But I have tried it most and Still I got the error. So What I did is to resolve it to the completion.
Install sqllite (32 bit binary for windows). Put the exe in the folder where the top level .svn directory resides.
sqlite .svn/wc.db “select * from work_queue”;
delete from work_queue;
Execute these three statements and after this run cleanup. It will run without any hassel.
Insure that your working directory is not opened in any IDE.
If opened, close that and then do svn clean-up.