Added a Timeout property to the FolderConfig
Added Command Timeout to each query that did not have a specified timeout
This commit is contained in:
@@ -262,6 +262,25 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region SQL
|
||||
[Category("SQL")]
|
||||
[DisplayName("Timeout")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
[Description("SQL Timeout")]
|
||||
public string Timeout
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["SQL", "Timeout"];// get the saved value
|
||||
return s;
|
||||
}
|
||||
set
|
||||
{
|
||||
_Xp["SQL", "Timeout"] = value;
|
||||
OnPropertyChanged("Timeout");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
//#region ColorCategory // From veproms.ini
|
||||
//// ** Note that not all possibilities from 16-bit will be added here, until
|
||||
//// ** it is determined how these will be used
|
||||
|
Reference in New Issue
Block a user