Structured Storage Property

ADO and SQL Server

ADO and SQL Server

Structured Storage Property

The Structured Storage property returns a bitmask specifying which OLE DB interfaces the recordset supports on storage objects.

Applies To
Connection Object
Syntax

object.Properties("Structured Storage")

Parts

object

Expression that evaluates to an object in the Applies To list.

Returns

A combination of zero or more of the following settings:

Constant Description
DBPROPVAL_SS_ISEQUENTIALSTREAM The provider supports the OLE DB ISequentialStream interface.
DBPROPVAL_SS_ISTREAM The provider supports the OLE DB IStream interface.
DBPROPVAL_SS_ISTORAGE The provider supports the OLE DB IStorage interface.
DBPROPVAL_SS_ILOCKBYTES The provider supports the OLE DB ILockBytes interface.

Data Type

adInteger

Modifiable

Read-only

OLE DB Property

DBPROP_STRUCTUREDSTORAGE

Remarks

If a provider can support any of these OLE DB interfaces, it is also required to support ISequentialStream.