Searched refs:pWhereClause (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Ddbtable.h236 bool UpdateWhere(const wxString &pWhereClause);
238 bool DeleteWhere(const wxString &pWhereClause);
261 void BuildDeleteStmt(wxString &pSqlStmt, int typeOfDel, const wxString &pWhereClause=wxEmptyString);
262 void BuildDeleteStmt(wxChar *pSqlStmt, int typeOfDel, const wxString &pWhereClause=wxEmptyString);
264 void BuildUpdateStmt(wxString &pSqlStmt, int typeOfUpdate, const wxString &pWhereClause=wxEmptyString);
265 void BuildUpdateStmt(wxChar *pSqlStmt, int typeOfUpdate, const wxString &pWhereClause=wxEmptyString);
267 void BuildWhereClause(wxString &pWhereClause, int typeOfWhere, const wxString &qualTableName=wxEmptyString, bool useLikeComparison=false);
268 void BuildWhereClause(wxChar *pWhereClause, int typeOfWhere, const wxString &qualTableName=wxEmptyString, bool useLikeComparison=false);
274 void GetDeleteStmt(char *pSqlStmt, int typeOfDel, const char *pWhereClause = NULL)
275 { BuildDeleteStmt(pSqlStmt,typeOfDel,pWhereClause); }
278 GetWhereClause(char *pWhereClause, int typeOfWhere, const char *qualTableName = NULL, bool useLikeComparison=false) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Ddbtable.cpp993 void wxDbTable::BuildDeleteStmt(wxString &pSqlStmt, int typeOfDel, const wxString &pWhereClause) argument
1005 if (typeOfDel == DB_DEL_WHERE && (pWhereClause.length() == 0))
1044 pSqlStmt += pWhereClause;
1056 void wxDbTable::BuildDeleteStmt(wxChar *pSqlStmt, int typeOfDel, const wxString &pWhereClause) argument
1059 BuildDeleteStmt(tempSqlStmt, typeOfDel, pWhereClause);
1199 void wxDbTable::BuildUpdateStmt(wxString &pSqlStmt, int typeOfUpdate, const wxString &pWhereClause) argument
1261 pSqlStmt += pWhereClause;
1268 void wxDbTable::BuildUpdateStmt(wxChar *pSqlStmt, int typeOfUpdate, const wxString &pWhereClause) argument
1271 BuildUpdateStmt(tempSqlStmt, typeOfUpdate, pWhereClause);
1277 void wxDbTable::BuildWhereClause(wxString &pWhereClause, in argument
1364 BuildWhereClause(wxChar *pWhereClause, int typeOfWhere, const wxString &qualTableName, bool useLikeComparison) argument
2041 UpdateWhere(const wxString &pWhereClause) argument
2086 DeleteWhere(const wxString &pWhereClause) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Ddb.tex2160 \param{int }{typeOfDel}, \param{const wxString \&}{pWhereClause=""}}
2163 the criteria in the pWhereClause.
2172 \docparam{pWhereClause}{{\it OPTIONAL}. If the typeOfDel is DB\_DEL\_WHERE,
2191 the criteria in the pWhereClause. This function is called internally in the
2222 \param{const wxString \&}{pWhereClause=""}}
2225 the criteria in the pWhereClause.
2245 \docparam{pWhereClause}{{\it OPTIONAL}. If the typeOfUpdate is DB\_UPD\_WHERE,
2261 \func{void}{BuildWhereClause}{\param{wxString \&}{pWhereClause},
2271 \docparam{pWhereClause}{Pointer to storage for the SQL statement retrieved.
2700 \func{bool}{DeleteWhere}{\param{const wxString \&}{pWhereClause}}
[all...]

Completed in 81 milliseconds