Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Mulitple base table view
Message
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Mulitple base table view
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01200459
Message ID:
01200459
Views:
60
Is there any known issues or problems with creating view and using them to display info in a grid or multiple controls such as following:
SELECT Orders.o_orderid, Orders.o_i_instid, Orders.o_p_productid,;
  Orders.o_v_vendorid, Orders.o_orderno, Orders.o_orddte, Orders.o_ordcomp,;
  Orders.o_qty, Orders.o_unitprice, Orders.o_orderedby,;
  Institutions.i_instid, Institutions.i_instname, Vendors.v_id,;
  Vendors.v_name, Products.p_productid, Products.p_productname,;
  Products.p_qtyperunit, Products.p_unitprice, Products.p_unitsinstock,;
  Products.p_unitsonorder, Products.p_reorderlevel,;
  Products.p_warehouseno, Products.p_modifieddate, Products.p_memo,;
  Products.p_desc;
 FROM ;
     warehouse!orders ;
    INNER JOIN warehouse!institutions ;
   ON  Orders.o_i_instid = Institutions.i_instname ;
    INNER JOIN warehouse!vendors ;
   ON  Orders.o_v_vendorid = Vendors.v_id ;
    INNER JOIN warehouse!products ;
   ON  Orders.o_p_productid = Products.p_productid
I did a drag and drop from this view above onto my form and it wouldn't put any of the fields.

thanks
Nick
Next
Reply
Map
View

Click here to load this message in the networking platform