PDA

Click to See Complete Forum and Search --> : DAO VS ADO


bboht
Aug 17th, 2000, 12:51 PM
In ADO recordsets have a property called .DefinedSize which returns the defined size of a field in a table. Does DAO have something equivalent to this?

parksie
Aug 17th, 2000, 01:01 PM
Try Recordset.Fields(Index).FieldSize

I believe this will work for DAO.

JHausmann
Aug 17th, 2000, 01:05 PM
Originally posted by parksie
Try Recordset.Fields(Index).FieldSize

I believe this will work for DAO.

I believe it's size, not fieldsize:

Recordset.Fields(index).size but it looks as though either will work.

[Edited by JHausmann on 08-17-2000 at 02:08 PM]

parksie
Aug 17th, 2000, 01:33 PM
Hmm. More Microsoft redundancy? There must be *some* difference between them.