Ulf writes ..

>I try to update some rows in my access db and I get no error 
>but the update 
>is not successful
>
>$SQL="update itu\
>      set Country = 'Zimbabwe (Republic of)'\
>      WHERE Prefix like '263*'";

I'm no Access expert, but in other SQLs the wildcard character is the %
not the *. So shouldn't the WHERE clause be:

  WHERE Prefix like '263%'

??

-- 
  Jason King
_______________________________________________
Perl-Win32-Admin mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to