ActiveReports Developer 7
CommandTimeout Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.Data Namespace > SqlDBDataSource Class : CommandTimeout Property

Glossary Item Box

Sets or returns the amount of time to wait while executing a command before terminating the attempt and generating an error.

Syntax

Visual Basic (Declaration) 
Public Property CommandTimeout As System.Integer
C# 
public System.int CommandTimeout {get; set;}

Example

C#Copy Code
Private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs)
{
    this.ds.ConnectionString = @"Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AdventureWorks2000;Data Source=TESTING";
    this.ds.CommandTimeout = 30;
    System.IO.StringReader sr = new System.IO.StringReader(new System.IO.StreamReader("..\\..\\sqlString.txt").ReadToEnd());
    this.ds.SQL = sr.ReadToEnd();
    sr.Close();
}
Visual BasicCopy Code
Private Sub SectionReport1_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
    Me.ds.CommandTimeout = 30
    Me.ds.ConnectionString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AdventureWorks2000;Data Source=TESTING"
    Dim sr As New System.IO.StringReader(New System.IO.StreamReader("..\\..\\sqlString.txt").ReadToEnd())
    Me.ds.SQL = sr.ReadToEnd
End Sub

See Also