PDA

View Full Version : User-Defined Keyword Modification


armsys
04-01-2009, 05:51 PM
Is it possible to modify the user-defined keyword instead of deleting the old one and creating a new one?
Armstrong

kinook
04-02-2009, 07:27 AM
You can search on the keyword, select all search results, then go to the Keywords dialog and delete/uncheck the old keyword, and add the new keyword.

You could also use SQLite (http://www.kinook.com/Forum/showthread.php?threadid=2825):

BEGIN;
UPDATE UserKeyword SET Keyword='newword' WHERE Keyword LIKE 'oldword';
UPDATE ItemKeyword SET Keyword='newword' WHERE Keyword LIKE 'oldword' AND AttributeID=1;
COMMIT;

armsys
04-02-2009, 09:46 AM
Kinook,
Thanks a lot.
Armstrong