Searched refs:pSqlStmt (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Ddbtable.h106 bool execDelete(const wxString &pSqlStmt);
107 bool execUpdate(const wxString &pSqlStmt);
108 bool query(int queryType, bool forUpdate, bool distinct, const wxString &pSqlStmt=wxEmptyString);
235 bool Update(const wxString &pSqlStmt);
241 bool QueryBySqlStmt(const wxString &pSqlStmt);
258 void BuildSelectStmt(wxString &pSqlStmt, int typeOfSelect, bool distinct);
259 void BuildSelectStmt(wxChar *pSqlStmt, int typeOfSelect, bool distinct);
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, in
272 GetSelectStmt(char *pSqlStmt, int typeOfSelect, bool distinct) argument
274 GetDeleteStmt(char *pSqlStmt, int typeOfDel, const char *pWhereClause = NULL) argument
276 GetUpdateStmt(char *pSqlStmt, int typeOfUpdate, const char *pWhereClause = NULL) argument
[all...]
H A Ddb.h667 bool CreateView(const wxString &viewName, const wxString &colList, const wxString &pSqlStmt, bool attemptDrop=true);
669 bool ExecSql(const wxString &pSqlStmt);
670 bool ExecSql(const wxString &pSqlStmt, wxDbColInf** columns, short& numcols);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Ddbtable.cpp648 bool wxDbTable::execDelete(const wxString &pSqlStmt) argument
653 retcode = SQLExecDirect(hstmtDelete, (SQLTCHAR FAR *) pSqlStmt.c_str(), SQL_NTS);
670 bool wxDbTable::execUpdate(const wxString &pSqlStmt) argument
675 retcode = SQLExecDirect(hstmtUpdate, (SQLTCHAR FAR *) pSqlStmt.c_str(), SQL_NTS);
724 bool wxDbTable::query(int queryType, bool forUpdate, bool distinct, const wxString &pSqlStmt) argument
747 retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) (queryType == DB_SELECT_STATEMENT ? pSqlStmt.c_str() : sqlStmt.c_str()), SQL_NTS);
909 bool wxDbTable::QueryBySqlStmt(const wxString &pSqlStmt) argument
911 pDb->WriteSqlLog(pSqlStmt);
913 return(query(DB_SELECT_STATEMENT, false, false, pSqlStmt));
993 void wxDbTable::BuildDeleteStmt(wxString &pSqlStmt, in argument
1056 BuildDeleteStmt(wxChar *pSqlStmt, int typeOfDel, const wxString &pWhereClause) argument
1065 BuildSelectStmt(wxString &pSqlStmt, int typeOfSelect, bool distinct) argument
1190 BuildSelectStmt(wxChar *pSqlStmt, int typeOfSelect, bool distinct) argument
1199 BuildUpdateStmt(wxString &pSqlStmt, int typeOfUpdate, const wxString &pWhereClause) argument
1268 BuildUpdateStmt(wxChar *pSqlStmt, int typeOfUpdate, const wxString &pWhereClause) argument
2027 Update(const wxString &pSqlStmt) argument
[all...]
H A Ddb.cpp2170 const wxString &pSqlStmt, bool attemptDrop)
2190 sqlStmt += pSqlStmt;
2249 bool wxDb::ExecSql(const wxString &pSqlStmt) argument
2255 retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) pSqlStmt.c_str(), SQL_NTS);
2271 bool wxDb::ExecSql(const wxString &pSqlStmt, wxDbColInf** columns, short& numcols) argument
2274 if (!ExecSql(pSqlStmt))
2169 CreateView(const wxString &viewName, const wxString &colList, const wxString &pSqlStmt, bool attemptDrop) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Ddb.tex543 \param{const wxString \&}{ colList}, \param{const wxString \&}{pSqlStmt}}
558 \docparam{pSqlStmt}{Pointer to the select statement portion of the CREATE
650 if (SQLExecDirect(hstmt, (UCHAR FAR *) pSqlStmt, SQL_NTS) != SQL_SUCCESS)
731 \func{bool}{ExecSql}{\param{const wxString \&}{pSqlStmt}}
733 \func{bool}{ExecSql}{\param{const wxString \&}{pSqlStmt}, \param{wxDbColInf **}{columns}, \param{short \&}{numcols}}
741 \docparam{pSqlStmt}{Pointer to the SQL statement to be executed.}
1020 if (SQLExecDirect(hstmt, (UCHAR FAR *) pSqlStmt, SQL_NTS) != SQL_SUCCESS)
2159 \func{void}{BuildDeleteStmt}{\param{wxString \&}{pSqlStmt},
2167 \docparam{pSqlStmt}{Pointer to buffer for the SQL statement retrieved. To be
2187 \func{void}{BuildSelectStmt}{\param{wxString \&}{pSqlStmt},
[all...]

Completed in 90 milliseconds