• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching defs:retcode

595     RETCODE retcode;
603 retcode = SQLExtendedFetch(hstmt, fetchType, 0, &cRowsFetched, &rowStatus);
604 if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)
606 if (retcode == SQL_NO_DATA_FOUND)
623 retcode = SQLFetch(hstmt);
624 if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)
626 if (retcode == SQL_NO_DATA_FOUND)
650 RETCODE retcode;
653 retcode = SQLExecDirect(hstmtDelete, (SQLTCHAR FAR *) pSqlStmt.c_str(), SQL_NTS);
655 if (retcode == SQL_SUCCESS ||
656 retcode == SQL_NO_DATA_FOUND ||
657 retcode == SQL_SUCCESS_WITH_INFO)
672 RETCODE retcode;
675 retcode = SQLExecDirect(hstmtUpdate, (SQLTCHAR FAR *) pSqlStmt.c_str(), SQL_NTS);
677 if (retcode == SQL_SUCCESS ||
678 retcode == SQL_NO_DATA_FOUND ||
679 retcode == SQL_SUCCESS_WITH_INFO)
684 else if (retcode == SQL_NEED_DATA)
687 retcode = SQLParamData(hstmtUpdate, &pParmID);
688 while (retcode == SQL_NEED_DATA)
697 retcode = SQLPutData(hstmtUpdate, pParmID, colDefs[i].SzDataObj);
698 if (retcode != SQL_SUCCESS)
706 retcode = SQLParamData(hstmtUpdate, &pParmID);
708 if (retcode == SQL_SUCCESS ||
709 retcode == SQL_NO_DATA_FOUND ||
710 retcode == SQL_SUCCESS_WITH_INFO)
746 int retcode;
747 retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) (queryType == DB_SELECT_STATEMENT ? pSqlStmt.c_str() : sqlStmt.c_str()), SQL_NTS);
748 if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)
1601 RETCODE retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS);
1602 if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)
1641 RETCODE retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS);
1642 if (retcode != SQL_SUCCESS)
1722 // retcode is not used
1723 wxODBC_ERRORS retcode;
1727 retcode = (wxODBC_ERRORS)pDb->DB_STATUS;
1810 RETCODE retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS);
1811 if (retcode != SQL_SUCCESS)
1861 RETCODE retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS);
1862 if (retcode != SQL_SUCCESS)
1945 RETCODE retcode;
1946 retcode = SQLExecute(hstmtInsert);
1947 if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO &&
1948 retcode != SQL_NEED_DATA)
1961 if (retcode == SQL_NEED_DATA)
1964 retcode = SQLParamData(hstmtInsert, &pParmID);
1965 while (retcode == SQL_NEED_DATA)
1974 retcode = SQLPutData(hstmtInsert, pParmID, colDefs[i].SzDataObj);
1975 if (retcode != SQL_SUCCESS)
1984 retcode = SQLParamData(hstmtInsert, &pParmID);
1985 if (retcode != SQL_SUCCESS &&
1986 retcode != SQL_SUCCESS_WITH_INFO)