Set Recordset Type of QueryDef via VBA

2019-03-03 08:10发布

问题:

I can set the Recordset Type of a select query in Access (2002) by opening the query in design view, opening its property sheet, and changing the Recordset Type property to one of three values:

  • Dynaset
  • Dynaset (Inconsistent Updates)
  • Snapshot

I can't figure out how to set the property through VBA, though. Am I missing something obvious?

回答1:

I am not sure about this:

Dim qdf As QueryDef

Set qdf = CurrentDb.CreateQueryDef("test", "select * from atable")
qdf.Properties.Append qdf.CreateProperty("RecordsetType", dbByte, 2)