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

MakeModulusClause() public method

Returns a modulus sql string, something like "columnName % value", except that the syntax is DB-specific. Throws NotImplementedException if not yet supported for a particular type of connection.
public MakeModulusClause ( string columnName ) : SqlClauseWithValue
columnName string The column used in the clause.
return SqlClauseWithValue
        public virtual SqlClauseWithValue MakeModulusClause(string columnName)
        {
            throw new NotImplementedException("Modulus is not supported for this connection: " + this);
        }