Content


NTL
Core
db::NotEquals

db::NotEquals


These are utility functions which help to build condition object to be used with queries and query builders representing not equality condition.

The result condition type for each function is specified as a comment below. Due to possible ambiguities (for example, db::NotEquals(L"name", L"John") seems fine but both String and DbValue have constructors accepting const wchar_t* argument and for compiler it is not obvious that the first argument should be interpreted as string and the second one as value so that final condition would be column != value) you have to exactly specify the type of argument. As an alternative you can use db::ne*() functions instead.

DbCondition NotEquals(const String &operand1, const String &operand2); // column1 != column2
DbCondition NotEquals(const String &operand1, const DbValue &operand2); // column != value
DbCondition NotEquals(const DbValue &operand1, const String &operand2); // value != column
DbCondition NotEquals(const DbValue &operand1, const DbValue &operand2); // value1 != value2
DbCondition NotEquals(const String &operand1, DbCondition operand2); // column != expression
DbCondition NotEquals(DbCondition operand1, const String &operand2); // expression != column
DbCondition NotEquals(DbCondition operand1, DbCondition operand2); // expression1 != expression2
DbCondition NotEquals(const DbValue &operand1, DbCondition operand2); // value != expression
DbCondition NotEquals(DbCondition operand1, const DbValue &operand2); // expression != value
Namespace: nitisa::db
Include: Nitisa/Db/DbCondition.h