Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Searching memo fields
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00334887
Message ID:
00334890
Vues:
27
SEEK() won't work, unless you have an index like:
INDEX ON "My string" $ MyMemo TAG MyTag
Which is not likely, since the string is hard coded and you would need an index for each string you want to search. The following will work, but may be slow on a large table, since Rushmore can't kick in:
LOCATE FOR "My string" $ MyMemo

IF Found()
   ...
ENDIF
HTH
>I would lke to search for a specified character string in a memo field, can I use a standard SEEK(), or do I need to use something else?
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform