Using DAO out of VB6:
db.OpenRecordSet("Table1", dbOpenTable, 0, dbPessimistic)
If the third argument is set to 0
, as in the above, what is its effect? 0
is not a listed value for this argument in the documentation.
EDIT: What sort of recordset will be opened if 0
is given as the third argument?