IBaseStationDatabaseMaxParameters Property |
Gets the maximum number of parameters that can be passed to the underlying database engine. Note that calls that
accept a variable number of parameters will automatically handle splitting the call into multiple calls on the
database unless otherwise noted.
Namespace: VirtualRadar.Interface.DatabaseAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax int MaxParameters { get; }
ReadOnly Property MaxParameters As Integer
Get
property int MaxParameters {
int get ();
}
abstract MaxParameters : int with get
Property Value
Type:
Int32Remarks
Ideally this would be read from the database engine but, in the case of SQLite, it's not so easy to get at the
maximum number of parameters using just the ADO.NET provider. So this could be a bit arbitrary.
See Also