Parameters
- useColumnsForParameterNames
- Determines whether names of parameters in command text will be based on columns' names.
You can also use GetInsertCommand() as the basis of a modified command. For example, you might call GetInsertCommand() and modify the CommandTimeout value, and then explicitly set that on the SalesforceDataAdapter.
After the SQL statement is first generated, you must explicitly call Devart.Common.DbCommandBuilderBase.RefreshSchema if it changes the statement in any way. Otherwise, the GetInsertCommand() still will be using information from the previous statement, which might not be correct. The SQL statements are first generated when the application calls either System.Data.Common.DbDataAdapter.Update() or GetInsertCommand().
useColumnsForParameterNames argument determines whether names of paramerters in command text will be like ":p1", ":p2" (if false), or names of columns will be used (if true), like ":mycolumn1", ":myothercolumn".