Azavea.Open.DAO.SQL.SqlDaDdlLayer.CreateSequence C# (CSharp) Method

CreateSequence() public method

Sequences are things that automatically generate unique, usually incrementing, numbers. Some data sources may not support sequences, in which case this should throw a NotSupportedException. If the data source supports sequences, but support for creating them is not yet implemented, this should throw a NotImplementedException.
public CreateSequence ( string name ) : void
name string Name of the new sequence to create.
return void
        public virtual void CreateSequence(string name)
        {
            SqlConnectionUtilities.XSafeCommand(_connDesc, "CREATE SEQUENCE " + name, null);
        }