Maybe I have not explained well.
I mean delete links, not the URL of the script used
Update database of movies
Re: Update database of movies
Then Conor's earlier response using the SQL backend is what you want to use.
Re: Update database of movies
Don´t work for me in Lion.Conor wrote:If all the links share something in common that you can identify them by you would be able to remove them all with the SQL. As usual create a backup of your Database.dvdpd file, as you can render the database unreadable with an SQL command. The file is located by default in your home folder at ~/Library/ Application Support/DVDpedia/Database.dvdpd.
Then with Terminal you can run the following commands (removes all the links that have any folder "Images" as part of the path):I would recommend caution with the above command as it can remove all your links, should there be a mistake in the "where" part. I personally would do delete items and links by hand to be sure what I am removing. However, if you have thousands of links the above would be quite useful.Code: Select all
sqlite3 ~/Library/Application\ Support/DVDpedia/Database.dvdpd DELETE from zlink where zurl like "%/Images/%"; .exit
Updates you can run as usual from within the program under the get more info in the advance menu or with the gear button on the lower right of the edit window.
Some suggestion?
Thanks in advance.
Re: Update database of movies
Hi Carpanta,
Should work just as well on Lion as the previous versions of OS X. If you email me your Database.dvdpd file compressed I can test it out in Lion with the same links that your using to see if there anything that I might be overlooking.
Should work just as well on Lion as the previous versions of OS X. If you email me your Database.dvdpd file compressed I can test it out in Lion with the same links that your using to see if there anything that I might be overlooking.
Re: Update database of movies
Thanks Connor, when I have finished my list I send to you.
Re: Update database of movies
Hello Connor, is possible erase all the links? I have links a another webs also and I want to clean this field.
What must to writte in sql sentence instead images?
I want to erase all the info contents in LINKS.
Thanks in advance
What must to writte in sql sentence instead images?
I want to erase all the info contents in LINKS.
Thanks in advance
Re: Update database of movies
Code: Select all
sqlite3 ~/Library/Application\ Support/DVDpedia/Database.dvdpd
DELETE from zlink;
.exit
Code: Select all
sqlite3 ~/Library/Application\ Support/DVDpedia/Database.dvdpd
DELETE from zlink;
.exit
Re: Update database of movies
Thanks a lot, all is ok.