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

MakeBitwiseAndClause() public method

Returns a 'bitwise and' 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 MakeBitwiseAndClause ( string columnName ) : SqlClauseWithValue
columnName string The column used in the clause.
return SqlClauseWithValue
        public virtual SqlClauseWithValue MakeBitwiseAndClause(string columnName)
        {
            throw new NotImplementedException("Bitwise and is not supported for this connection: " + this);
        }