DbDataAdapter Insert Method (String, IDictionary String, Object )NReco.Data Class Library Documentation
Executes INSERT statement generated by specified table name and dictionary values.

Namespace: NReco.Data
Assembly: NReco.Data (in NReco.Data.dll) Version: 1.0.2
Syntax

public int Insert(
	string tableName,
	IDictionary<string, Object> data
)

Parameters

tableName
Type: System String
table name
data
Type: System.Collections.Generic IDictionary String, Object 
dictonary with new record data (column -> value)

Return Value

Type: Int32
Number of inserted data records.
See Also