Click or drag to resize
Editor Constructor (Database, String, String)
Create a new Editor instance

Namespace:  DataTables
Assembly:  DataTables (in DataTables.dll) Version: 1.6.5.0 (1.6.5.0)
Syntax
C#
public Editor(
	Database db = null,
	string table = null,
	string pkey = null
)

Parameters

db (Optional)
Type: DataTablesDatabase
An instance of the DataTables Database class that we can use for the DB connection. Can also be set with the
Db()
method.
table (Optional)
Type: SystemString
The table name in the database to read and write information from and to. Can also be set with the
Table()
method.
pkey (Optional)
Type: SystemString
Primary key column name in the table given. Can also be set with the
PKey()
method.
See Also