dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteCommandBuilder Class / DeriveParameters Method
The SQLiteCommand referencing the SQL statement for which the parameter information is to be derived. The derived parameters will be populated into the SQLiteCommand.Parameters collection of this command.

In This Topic
DeriveParameters Method
In This Topic
Populates the specified SQLiteCommand object's SQLiteCommand.Parameters collection with parameter information for the SQL statement specified in the CommandText.
Syntax
'Declaration
 
Public Shared Sub DeriveParameters( _
   ByVal command As SQLiteCommand _
) 
 

Parameters

command
The SQLiteCommand referencing the SQL statement for which the parameter information is to be derived. The derived parameters will be populated into the SQLiteCommand.Parameters collection of this command.
Remarks
DeriveParameters overwrites any existing parameter information for the SQLiteCommand.

DeriveParameters requires an extra call to the data server to obtain the information. If the parameter information is known in advance, it is more efficient to populate the parameters collection by setting the information explicitly.

See Also