Sample script to set up the CommandTimeout property of the DataReader Source component

Sample script to set up the CommandTimeout property of the DataReader Source component

Sample script to set up the CommandTimeout property of the DataReader Source component.


1
2
3
4
5
6
7
8
9
<DataFlowSetting(New String() {"DataReader Source.Property.CommandTimeout"})> _
Public Property CommandTimeout() As Integer
    Get
        CommandTimeout = m_commandTimeout
    End Get
    Set(ByVal value As Integer)
        m_commandTimeout = value
    End Set
End Property