RowidInfo
This property specifies whether or not ROWID information is part of change notification events fired whenever data changes on the database.
                  
Declaration
// C#
public OracleRowidInfo RowidInfo {get; set;};
 Property Value
An OracleRowidInfo enumeration type that determines the inclusion of ROWID in the change notification event.
                  
Remarks
There are three OracleRowidInfo enumeration types that are valid for this property:
                  
- 
                        DefaultincludesROWIDinformation in the change notification event only ifOracleCommand.AddRowidproperty is set to true or ifROWIDis in the select list of the query that is registered for change notification.
- 
                        IncludeincludesROWIDinformation regardless of whether or notROWIDis in the select-list for the query.
- 
                        ExcludeexcludesROWIDinformation regardless of whether or notROWIDis in the select-list.
For change notification registrations that involve stored procedure executions, change notification events related to the REF CURSOR contain ROWID information only if RowidInfo property is set to OracleRowidInfo.Include.