Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Wow a VFP Record Object
Message
De
23/09/1999 15:59:11
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00267234
Message ID:
00268201
Vues:
31
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?
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform