Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Brow problem
Message
 
 
To
24/06/2005 00:30:58
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Environment versions
Visual FoxPro:
VFP 6 SP5
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01026161
Message ID:
01026164
Views:
17
In VFP an open table is referenced by an alias of the workarea where it's open. An alias can only start with a letter or underscore and can include Letters, digits and underscores. In case when table name follow that requirement, VFP uses it as an alias. Otherwise it generates its own alias. You can see it by running following code
CREATE TABLE abc (sno n(3))
? ALIAS()
CREATE TABLE 123 (sno n(3))
? ALIAS()
I would recomend that you use table names that follow VFP names requirements.


>
>When I run following line of codes, then it works fine
>
>CLOSE ALL
>CREATE TABLE abc (sno n(3))
>insert into abc values(10)
>
>select abc
>brow
>
>But When I run following codes, then it generates this error message
>No tables is open in the current work area
>
>CLOSE ALL
>CREATE TABLE 123 (sno n(3))
>insert into 123 values(10)
>
>select 123
>brow
>
>What done when I replace table name 123 instead of abc?
>Please help
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform