I don't know Pascal, C, C++, or Java, but I know MS-SQL and am reading a book to learn PHP. So I looked at the IMDB script and came up with this from what I gleaned from it.
I wanted a script that would check off those items that do not have descriptions so that I only have to deal with them when connecting to IMDB instead of the entire huge list. So, this is what I have come up with. It seems to work, but I would appreciate critique as I might be missing something.
Also, is it worth even putting up for others to use? If so, what do I need to do?
Thanks!
Dobermann
Code: Select all
(***************************************************
Ant Movie Catalog importation script
www.antp.be/software/moviecatalog/
[Infos]
Authors=Charity Slepcevic
Title=CheckNoDesc.ifs
Description=Check off those items that do not have descriptions
Site=
Language=EN
Version=1.0
Requires=3.5.1
Comments=
License=
GetInfo=0
[Options]
***************************************************)
program CheckNoDesc;
begin
if GetField(fieldDescription) = '' then
begin
SetField(fieldChecked, 'True');
end;
end.