Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Table/View does not exist
Message
De
12/01/2000 12:55:55
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00316935
Message ID:
00317095
Vues:
19
Mark,

Thanks for the info. More knowledge I can remember for the future.

I was able to find a way to get multiple numbers.

local invc_nos
STORE "" TO invc_nos

SELECT maintbl
DO WHILE !EOF()
invc_nos = invc_nos + IIF(EMPTY(invc_nos), "",",") + ALLTRIM(STR(maintbl.invc_no))
SKIP
ENDDO

CREATE SQL VIEW invc_ln_view;
CONNECTION myconnect AS;
SELECT invc_ln.invc_ln_no, invc_ln.invc_no;
FROM PROD.invc_ln invc_ln;
WHERE invc_ln.invc_no IN (&invc_nos)

It's rough trying to go from dbf to dbc without any prior knowledge of dbc.
Again, thanks for responding
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform