UpdateImpl Class

The default implementation of Update.

C#
public sealed class UpdateImpl : Update
Inheritance
UpdateImpl
Implements

Constructors

UpdateImpl(Siphon, string, string)

The default implementation of Update.

Methods

Set(string)

Description copied from interface: Update

Gets a new UpdateSet object.

Equals(object) (Inherited from object)
GetHashCode() (Inherited from object)
GetType() (Inherited from object)
MemberwiseClone() (Inherited from object)
ToString() (Inherited from object)

Constructors Detail

UpdateImpl(Siphon, string, string)

The default implementation of Update.

C#
public UpdateImpl(Siphon siphon, string updateStatement, string alias)

Parameters

siphon
Siphon

The siphon to be used in the update operation.

updateStatement
string

The SQL update statement.

alias
string

The alias for the table in the update statement.

Methods Detail

Set(string)

Description copied from interface: Update

Gets a new UpdateSet object.

C#
public UpdateSet Set(string expr)

Parameters

expr
string

Returns

Description copied from interface: Update

The new UpdateSet object.

Implements