C# Class Mono.Data.Sqlite.UpdateEventArgs

Passed during an Update callback, these event arguments detail the type of update operation being performed on the given connection.
Inheritance: System.EventArgs
显示文件 Open project: kumpera/mono

Public Properties

Property Type Description
Database string
Event UpdateEventType
RowId System.Int64
Table string

Private Methods

Method Description
UpdateEventArgs ( string database, string table, UpdateEventType eventType, System.Int64 rowid ) : System

Property Details

Database public_oe property

The name of the database being updated (usually "main" but can be any attached or temporary database)
public string Database
return string

Event public_oe property

The type of update being performed (insert/update/delete)
public UpdateEventType Event
return UpdateEventType

RowId public_oe property

The RowId affected by this update.
public Int64,System RowId
return System.Int64

Table public_oe property

The name of the table being updated
public string Table
return string