Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Mulitple base table view
Message
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Mulitple base table view
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
01200459
Message ID:
01200459
Vues:
59
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform