Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Table/View does not exist
Message
From
12/01/2000 12:55:55
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00316935
Message ID:
00317095
Views:
22
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform