Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select doesn't produce an array
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Vista
Network:
Windows 2008 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01358484
Message ID:
01358491
Views:
27
Try that again without the typo's

local lnTally
local array laTables(1)

dbc2Convert = "\\tpdfiles\data\dfreeman\tip\data\rta\rta.dbc"
lnTally = GetDBCTableNames(dbc2Convert. @laTables)

for i = 1 to alen(laTables)
? aTables(i)
next

function GetDbCTablesNames( myDBC, taTables )

select objectname as tablename ;
from (myDBC) ;
where objecttype = "Table" ;
into array taTables

return _TALLY
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform