InsertCommand Property (DbDataTable)
                In This Topic
            
            Gets or sets a SQL statement to insert new records into the data source.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property InsertCommand As DbCommand
             
        
            
            public DbCommand InsertCommand {get; set;}
             
        
             
        
            
            
            Property Value
An 
System.Data.IDbCommand used during an update operation to insert records in the data source that correspond to new rows in the 
System.Data.DataTable.
 
            
            
            
            
            
            Example
Refer to help on types that derive from DbDataTable for samples on usage of this property.
            
            
            
            
            
            See Also