Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
SQL Update
Message
De
07/09/2005 16:12:02
 
 
À
07/09/2005 15:42:02
Fred Wood
Madera Systems Consulting
Mill Valley, Californie, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Divers
Thread ID:
01047453
Message ID:
01047489
Vues:
11
>Well that certainly works - thanks, but I still do not understand why the original code did not work.

m.carloc = ThisForm.carousel + ;
PADL(LTRIM(STR(ThisForm.bin, 2, 0)), 2, "0") + ;
PADL(LTRIM(STR(ThisForm.shelf, 2, 0)), 2, "0") + ;
ThisForm.loc

lc_update = [carloc = ?m.carloc]
lc_item = ThisForm.citem

*-- Update ICITEM table
lcSQL = [UPDATE icitem SET ] + lc_update + [ WHERE item = ] + lc_item
lnRetVal = SQLEXEC(ln_connection, lcSQL)


Given that Sergey's code worked (doesn't it always)
I THINK the equivalent would have been
lcSQL = [UPDATE icitem SET ] + lc_update + [ WHERE item = '] + lc_item  + [']
or possibly
lcSQL = [UPDATE icitem SET ] + lc_update + [ WHERE item = ?lc_item]
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform