Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Wow a VFP Record Object
Message
From
23/09/1999 15:59:11
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00267234
Message ID:
00268201
Views:
33
Hi Mike,

>Possibly. This thread started by talking about whether it was possible to have a non-ADO recordset object in VFP. Is that what your data manager does?

Not really a record set, well, here:

You instanciate your DataManager:

oD = newobject(..)

Then you can open a table:

oD.Open('TableName', 'OptionalAlias', lOoptionalExclusive)

with some other parameters I can't remeber. Now that creates a table object along with a field object for every field in that table. The tbale properties work like:

?oD.Alias.lEOF

?oD.Alias.nRecord

?oD.Alias.Field1.Value

oD.Alias.Field1.Value = 'NewVal'

Also, if you leave off the alias name, it will use the currently select alias.

Interested?
Previous
Reply
Map
View

Click here to load this message in the networking platform