Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Why don't my browse and query match?
Message
 
To
03/06/2004 10:45:07
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00909567
Message ID:
00909569
Views:
7
Carolin by default After SQL SELECT VFP creates a READ ONLY cursor, so if you want to change it you must add:
SELECT product_id_pk, ;
      .f. as Assigned, ;
      product_cde as prodcode, ;
      description_txt as descrip ;
FROM te_products ;
INTO CURSOR edit_products READWRITE
If you use VFP 8.0

or if you use earlier versions:
SELECT product_id_pk, ;
.f. as Assigned, ;
product_cde as prodcode, ;
description_txt as descrip ;
FROM te_products ;
INTO CURSOR edit_products
SELECT ed_products
USE (DBF("ed_products")) AGAIN IN 0 ALIAS edit_products
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform