Azavea.Open.DAO.SQL.AbstractSqlConnectionDescriptor.MakeSequenceValueQuery C# (CSharp) Method

MakeSequenceValueQuery() public method

Since different databases have different ideas of what a sequence is, this allows the utility class to support sequences across all different DBs.
public MakeSequenceValueQuery ( string sequenceName ) : string
sequenceName string The name of the sequence we're getting an ID from.
return string
        public virtual string MakeSequenceValueQuery(string sequenceName)
        {
            throw new NotImplementedException("Sequences are not supported for this connection: " + this);
        }