- 论坛徽章:
- 0
|
如何将一个模糊条件串转化成ORACLE的SQL条件?
呵呵~~~搞定了
- #include <iostream>;
- #include <string>;
- #include <vector>;
- using namespace std;
- string itoa(int iVal)
- {
- char temp[20];
- sprintf(temp, "%d", iVal);
- return string(temp);
- }
- struct CSection
- {
- string strVal;
- int iBegin;
- int iEnd;
- int iTotal;
- int iFlag;
- };
- void gen_Sql(const string& strFieldName, const string& strIn, string& strSql)
- {
- vector<CSection>; vSection;
- CSection cSection;
- int begin = 0, idx, flag = 0;
- while( begin < strIn.size() )
- {
- int start, val, end, stop;
- string strTmp;
- idx = strIn.find("*", begin);
- if(idx == string::npos)
- {
- idx = strIn.size();
- if(flag) flag = 2;
- }
- strTmp = strIn.substr(begin, idx - begin);
- stop = 0;
- while(stop < strTmp.size())
- {
- for(start=stop; start < strTmp.size() && strTmp[start] == '?'; start++);
- for(val=start; val < strTmp.size() && strTmp[val] != '?'; val++);
- for(end=val; end < strTmp.size() && strTmp[end] == '?'; end++);
- cSection.strVal = strTmp.substr(start, val - start);
- cSection.iBegin = start - stop;
- cSection.iEnd = end - val;
- cSection.iTotal = end - stop;
- cSection.iFlag = flag;
- vSection.push_back(cSection);
- stop = end;
- }
- begin = idx + 1;
- flag = 1;
- }
- int iPreTotal = 0;
- vector<CSection>;::iterator itr;
- for(itr = vSection.begin(); itr != vSection.end(); ++itr)
- {
- itr->;iBegin += iPreTotal;
- iPreTotal += itr->;iTotal;
- }
- iPreTotal = 0;
- vector<CSection>;::reverse_iterator ritr;
- for(ritr = vSection.rbegin(); ritr != vSection.rend(); ++ritr)
- {
- ritr->;iEnd += iPreTotal;
- iPreTotal += ritr->;iTotal;
- }
- if(vSection.size() >; 0)
- {
- bool add_flag = false;
- for(itr = vSection.begin(); itr != vSection.end(); ++itr)
- {
- if(itr->;strVal == "") continue;
- if(add_flag)
- strSql += " and ";
- else
- add_flag = true;
- if(itr->;iFlag == 0)
- strSql += " substr(" + strFieldName + ", " + itoa(itr->;iBegin + 1) + "," + itoa(itr->;strVal.size()) + ")= '" + itr->;strVal + "'";
- else if(itr->;iFlag == 1)
- strSql += " substr(" + strFieldName + ", " + itoa(itr->;iBegin + 1) + ", LENGTH(" + strFieldName + ")-" + itoa(itr->;iBegin + itr->;iEnd) + ")" + " like '%" + itr->;strVal + "%'";
- else
- strSql += " substr(" + strFieldName + ", LENGTH(" + strFieldName + ") -(" + itoa(itr->;iEnd + itr->;strVal.size() - 1) + ")," + itoa(itr->;strVal.size()) + ")= '" + itr->;strVal + "'";
- }
- }
- }
- int main(int argc, char *argv[])
- {
- string strSql;
- gen_Sql("field", argv[1], strSql);
- cout << strSql << endl;
- }
复制代码 |
|