Share via


Visual Basic: RDO Data Control

Restartable Property

See Also    Example    Applies To

Returns a value that indicates whether an rdoResultset object supports the Requery method, which re-executes the query the rdoResultset is based on.

Syntax

object**.Restartable**

The object placeholder represents an object expression that evaluates to an object in the Applies To list.

Return Values

The Restartable property return values are:

Value Description
True The rdoResultset object supports the Requery method.
False The rdoResultset object doesn't support the Requery method.

Remarks

Check the Restartable property before using the Requery method on an rdoResultset. If the object's Restartable property is set to False, use the OpenResultset method on the underlying rdoQuery to re-execute the query.

You can use the Requery method to update an rdoResultset object's underlying parameter query after the parameter values have been changed.

If the rdoQuery does not contain parameters, the Restartable property is always True.