Click here to Skip to main content
15,881,875 members
Articles / Desktop Programming / MFC
Article

SQL WHERE - the easy way

Rate me:
Please Sign up or sign in to vote.
4.10/5 (12 votes)
18 Feb 2002Ms-PL2 min read 123.2K   1.5K   34   20
Creating SQL WHERE clauses can be a pain. This class grants relief.

Creating SQL WHERE clauses

When developing C++ code to query SQL databases, one ends up with code which contains lots of ugly and cluttering statements like this:

char buf[256]; 
sprintf(buf, "WHERE (article=%i) AND (subject='%s%')", nArticle, pstrSubject); 
strcat(sql, buf);
// or even worse
strcat(sql, " WHERE (article=");
strcat(sql, _itoa(nArticle, buf, 10));
strcat(sql, ") AND (subject='");
strcat(sql, pstrSubject);
strcat(sql, ")");
// and so on and so forth...

Most of you have seen that sort of thing. I created the CWhere class to simplify creation of WHERE clauses and cleanup code. The resulting code, using the CWhere class, looks like this:

CWhere w(_T("article"), 1234); 
w.Add(_T("subject"), _T("CodeProject"); 
mySQLstring += w.GetWhereClause(); 
// should read "WHERE (article = 1234) AND (subject = 'CodeProject') ";

The class implements various methods to create the final string. Basically it all ends in providing several conversions of various datatypes to strings.
Currently the class contains all functions needed to create the following kind of clauses:

  1. "fieldXY IS NULL"
  2. "fieldXY exp value" where exp is any valid SQL operator (<, >, =,...)
  3. "fieldXY BETWEEN value1 AND value2"

Also, these clauses can be cascaded with AND and OR statements. The class takes care of nice SQL formatting, paranthesis, brackets and spaces. You can immediately use the resulting string for concatenation or other string operations. It contains leading and trailing spaces and all expressions are enclosed in brackets.

The class will provide correct strings for Unicode SQL statements too when the application is compiled using the UNICODE define.

Using the class

Lets start with the most common usage: creating a instance of CWhere with the first expression supplied in the constructor:

CWhere w(_T("article"), 1234);

This will create the variable w already containing "WHERE (article = 1234)". Now lets add another field:

w.Add(_T("subject"), _T("CodeProject");

This will add a " AND (subject = 'CodeProject')" to the variable. Finally, use the WHERE clause and add it to an existing SQL statement created somewhere else:

mySQLstring += w.GetWhereClause(); 
// should contain " WHERE (article = 1234) AND (subject = 'CodeProject') "

If the presence of the keyword WHERE is not needed or not wanted, just use GetWhereClausePlain().

Logical operations AND, OR

To simplify the creation of complex clauses containing AND or OR combinations, the operators &, |, &= and |= are overloaded. You can use them in a very intuitive way to create logical operations with the CWhere class.

CWhere w, article1, article2("article", -1L), subject("subject", pstrSubject), priority("priority", 2);
// logical operation OR
w = article1 | article2;		
// logical operation AND
w &= subject & priority;		

The resulting WHERE clause is: " WHERE ((article IS NULL) OR (article = -1)) AND ((subject = 'CodeProject') AND (priority = 2))"

Compatibility

Tested under Windows XP Pro, with VC6 and MFC. Supports fully UNICODE or MBCS. STL version is up to the reader :-)

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
Portugal Portugal
Software Smith, Blacksmith, Repeat Founder, Austrian, Asgardian.

Comments and Discussions

 
Questionstd::stringstream ?? Pin
Brett Gmoser19-Apr-07 12:34
Brett Gmoser19-Apr-07 12:34 
QuestionLatest Code ??? Pin
bachi19-Feb-04 4:08
bachi19-Feb-04 4:08 
AnswerRe: Latest Code ??? Pin
Andreas Saurwein19-Feb-04 4:17
Andreas Saurwein19-Feb-04 4:17 
Generalsmall help Pin
bachi19-Feb-04 6:13
bachi19-Feb-04 6:13 
Generalhandling differences in sql Pin
Vachooho18-Aug-03 14:12
Vachooho18-Aug-03 14:12 
GeneralRe: handling differences in sql Pin
Andreas Saurwein21-Aug-03 3:17
Andreas Saurwein21-Aug-03 3:17 
QuestionCwhere 2.0 ? Pin
Jonathan de Halleux23-Jul-03 12:24
Jonathan de Halleux23-Jul-03 12:24 
GeneralGoing further Pin
Jonathan de Halleux12-Jul-03 7:13
Jonathan de Halleux12-Jul-03 7:13 
GeneralRe: Going further Pin
Andreas Saurwein16-Jul-03 3:45
Andreas Saurwein16-Jul-03 3:45 
Generalsource coming Pin
Jonathan de Halleux16-Jul-03 4:37
Jonathan de Halleux16-Jul-03 4:37 
GeneralRe: source coming Pin
Andreas Saurwein17-Jul-03 5:10
Andreas Saurwein17-Jul-03 5:10 
Generalpreview Pin
Jonathan de Halleux18-Jul-03 7:59
Jonathan de Halleux18-Jul-03 7:59 
GeneralRe: preview Pin
Andreas Saurwein18-Jul-03 10:19
Andreas Saurwein18-Jul-03 10:19 
GeneralRe: preview Pin
Jonathan de Halleux18-Jul-03 17:26
Jonathan de Halleux18-Jul-03 17:26 
Generaluseful class Pin
Anthony_Yio2-Jan-03 15:10
Anthony_Yio2-Jan-03 15:10 
GeneralA suggestion Pin
Jim Johnson19-Feb-02 22:20
Jim Johnson19-Feb-02 22:20 
GeneralDuplicate... Pin
Jim Johnson19-Feb-02 23:56
Jim Johnson19-Feb-02 23:56 
GeneralRe: Duplicate... Pin
Andreas Saurwein20-Feb-02 6:18
Andreas Saurwein20-Feb-02 6:18 
GeneralThanks, Pin
Brian V Shifrin19-Feb-02 20:22
Brian V Shifrin19-Feb-02 20:22 
GeneralRe: Thanks, Pin
Andreas Saurwein20-Feb-02 6:17
Andreas Saurwein20-Feb-02 6:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.