Sequence

Models a sequence configuration.

Namespace:
Inetdev.Data.DatabaseSchema
Type:
Class
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
No
Inherits from:
System.Object

Constructors

Sequence

Default constructor

Signature:
public Void Sequence()

Sequence

Initializes a new instance of Sequence.

Signature:
public Void Sequence(schema, name)
Parameters
Name Type Summary
schema String Schema
name String Name of the sequence.

Properties

IncrementBy

Increment step.

Signature:
public Int64 IncrementBy { get; set; }

MaxValue

Maximum value of the sequence.

Signature:
public Int64 MaxValue { get; set; }

Name

Sequence name.

Signature:
public String Name { get; set; }

Schema

Schema to which the sequence belongs to.

Signature:
public String Schema { get; set; }

Starts

Value from which the sequence start numerating from.

Signature:
public Int64 Starts { get; set; }

Methods

ToString

Returns a textual representation of the Sequence.

Signature:
public String ToString()