Firebird ADO.NET Provider SDK Documentation - v1.7

FbCommandBuilder.GetInsertCommand Method 

Gets the automatically generated FbCommand object required to perform insertions at the data source.

[Visual Basic]
Public Function GetInsertCommand() As FbCommand
[C#]
public FbCommand GetInsertCommand();

Return Value

The automatically generated FbCommand object required to perform insertions.

Remarks

You can use the GetInsertCommand method for informational or troubleshooting purposes because it returns the FbCommand object to be executed. You can also use GetInsertCommand as the basis of a modified command.

After the SQL statement is first generated, you must explicitly call 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 Update or GetInsertCommand.

See Also

FbCommandBuilder Class | FirebirdSql.Data.Firebird Namespace