Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP6 to VFP8, is a straight conversion possible?
Message
 
 
To
18/12/2002 10:51:16
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00734050
Message ID:
00734122
Views:
33
Run following code in VFP7 and VFP8.
CREATE CURSOR crsTest ( ;
	field1 C(10), ;
	field2 C(10), ;
	field3 C(10))
	
INSERT INTO crsTest VALUES("A", "B", "1")	
INSERT INTO crsTest VALUES("A", "B", "2")	
INSERT INTO crsTest VALUES("A", "B", "3")	

INSERT INTO crsTest VALUES("A", "F", "4")	
INSERT INTO crsTest VALUES("A", "F", "5")	
INSERT INTO crsTest VALUES("A", "F", "6")	


SELECT field1, field2, field3, COUNT(*) ;
  FROM crsTest ;
  GROUP BY 1,2
It runs ok in VFP7 but gives an error in VFP8.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform