• 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 refs:wxDbTable

3 // Purpose:     Implementation of the wxDbTable class.
106 /********** wxDbTable::wxDbTable() Constructor **********/
107 wxDbTable::wxDbTable(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns,
112 } // wxDbTable::wxDbTable()
115 /***** DEPRECATED: use wxDbTable::wxDbTable() format above *****/
117 wxDbTable::wxDbTable(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns,
124 } // wxDbTable::wxDbTable()
128 /********** wxDbTable::~wxDbTable() **********/
129 wxDbTable::~wxDbTable()
132 } // wxDbTable::~wxDbTable()
135 bool wxDbTable::initialize(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns,
194 s.Printf(wxT("wxDbTable constructor (%-20s) tableID:[%6lu] pDb:[%p]"),
315 } // wxDbTable::initialize()
318 void wxDbTable::cleanup()
323 s.Printf(wxT("wxDbTable destructor (%-20s) tableID:[%6lu] pDb:[%p]"),
418 } // wxDbTable::cleanup()
424 void wxDbTable::setCbValueForColumn(int columnIndex)
465 /********** wxDbTable::bindParams() **********/
466 bool wxDbTable::bindParams(bool forUpdate)
558 } // wxDbTable::bindParams()
561 /********** wxDbTable::bindInsertParams() **********/
562 bool wxDbTable::bindInsertParams(void)
565 } // wxDbTable::bindInsertParams()
568 /********** wxDbTable::bindUpdateParams() **********/
569 bool wxDbTable::bindUpdateParams(void)
572 } // wxDbTable::bindUpdateParams()
575 /********** wxDbTable::bindCols() **********/
576 bool wxDbTable::bindCols(HSTMT cursor)
589 } // wxDbTable::bindCols()
592 /********** wxDbTable::getRec() **********/
593 bool wxDbTable::getRec(UWORD fetchType)
644 } // wxDbTable::getRec()
647 /********** wxDbTable::execDelete() **********/
648 bool wxDbTable::execDelete(const wxString &pSqlStmt)
666 } // wxDbTable::execDelete()
669 /********** wxDbTable::execUpdate() **********/
670 bool wxDbTable::execUpdate(const wxString &pSqlStmt)
720 } // wxDbTable::execUpdate()
723 /********** wxDbTable::query() **********/
724 bool wxDbTable::query(int queryType, bool forUpdate, bool distinct, const wxString &pSqlStmt)
754 } // wxDbTable::query()
760 /********** wxDbTable::Open() **********/
761 bool wxDbTable::Open(bool checkPrivileges, bool checkTableExists)
831 // the wxDbTable object and the ODBC record.
896 } // wxDbTable::Open()
899 /********** wxDbTable::Query() **********/
900 bool wxDbTable::Query(bool forUpdate, bool distinct)
905 } // wxDbTable::Query()
908 /********** wxDbTable::QueryBySqlStmt() **********/
909 bool wxDbTable::QueryBySqlStmt(const wxString &pSqlStmt)
915 } // wxDbTable::QueryBySqlStmt()
918 /********** wxDbTable::QueryMatching() **********/
919 bool wxDbTable::QueryMatching(bool forUpdate, bool distinct)
924 } // wxDbTable::QueryMatching()
927 /********** wxDbTable::QueryOnKeyFields() **********/
928 bool wxDbTable::QueryOnKeyFields(bool forUpdate, bool distinct)
933 } // wxDbTable::QueryOnKeyFields()
936 /********** wxDbTable::GetPrev() **********/
937 bool wxDbTable::GetPrev(void)
941 wxFAIL_MSG(wxT("GetPrev()::Backward scrolling cursors are not enabled for this instance of wxDbTable"));
947 } // wxDbTable::GetPrev()
950 /********** wxDbTable::operator-- **********/
951 bool wxDbTable::operator--(int)
955 wxFAIL_MSG(wxT("operator--:Backward scrolling cursors are not enabled for this instance of wxDbTable"));
961 } // wxDbTable::operator--
964 /********** wxDbTable::GetFirst() **********/
965 bool wxDbTable::GetFirst(void)
969 wxFAIL_MSG(wxT("GetFirst():Backward scrolling cursors are not enabled for this instance of wxDbTable"));
975 } // wxDbTable::GetFirst()
978 /********** wxDbTable::GetLast() **********/
979 bool wxDbTable::GetLast(void)
983 wxFAIL_MSG(wxT("GetLast()::Backward scrolling cursors are not enabled for this instance of wxDbTable"));
989 } // wxDbTable::GetLast()
992 /********** wxDbTable::BuildDeleteStmt() **********/
993 void wxDbTable::BuildDeleteStmt(wxString &pSqlStmt, int typeOfDel, const wxString &pWhereClause)
1055 /***** DEPRECATED: use wxDbTable::BuildDeleteStmt(wxString &....) form *****/
1056 void wxDbTable::BuildDeleteStmt(wxChar *pSqlStmt, int typeOfDel, const wxString &pWhereClause)
1061 } // wxDbTable::BuildDeleteStmt()
1064 /********** wxDbTable::BuildSelectStmt() **********/
1065 void wxDbTable::BuildSelectStmt(wxString &pSqlStmt, int typeOfSelect, bool distinct)
1186 } // wxDbTable::BuildSelectStmt()
1189 /***** DEPRECATED: use wxDbTable::BuildSelectStmt(wxString &....) form *****/
1190 void wxDbTable::BuildSelectStmt(wxChar *pSqlStmt, int typeOfSelect, bool distinct)
1195 } // wxDbTable::BuildSelectStmt()
1198 /********** wxDbTable::BuildUpdateStmt() **********/
1199 void wxDbTable::BuildUpdateStmt(wxString &pSqlStmt, int typeOfUpdate, const wxString &pWhereClause)
1267 /***** DEPRECATED: use wxDbTable::BuildUpdateStmt(wxString &....) form *****/
1268 void wxDbTable::BuildUpdateStmt(wxChar *pSqlStmt, int typeOfUpdate, const wxString &pWhereClause)
1276 /********** wxDbTable::BuildWhereClause() **********/
1277 void wxDbTable::BuildWhereClause(wxString &pWhereClause, int typeOfWhere,
1351 strMsg.Printf(wxT("wxDbTable::bindParams(): Unknown column type for colDefs %d colName %s"),
1360 } // wxDbTable::BuildWhereClause()
1363 /***** DEPRECATED: use wxDbTable::BuildWhereClause(wxString &....) form *****/
1364 void wxDbTable::BuildWhereClause(wxChar *pWhereClause, int typeOfWhere,
1370 } // wxDbTable::BuildWhereClause()
1373 /********** wxDbTable::GetRowNum() **********/
1374 UWORD wxDbTable::GetRowNum(void)
1387 } // wxDbTable::GetRowNum()
1390 /********** wxDbTable::CloseCursor() **********/
1391 bool wxDbTable::CloseCursor(HSTMT cursor)
1399 } // wxDbTable::CloseCursor()
1402 /********** wxDbTable::CreateTable() **********/
1403 bool wxDbTable::CreateTable(bool attemptDrop)
1619 } // wxDbTable::CreateTable()
1622 /********** wxDbTable::DropTable() **********/
1623 bool wxDbTable::DropTable()
1671 } // wxDbTable::DropTable()
1674 /********** wxDbTable::CreateIndex() **********/
1675 bool wxDbTable::CreateIndex(const wxString &indexName, bool unique, UWORD numIndexColumns,
1828 } // wxDbTable::CreateIndex()
1831 /********** wxDbTable::DropIndex() **********/
1832 bool wxDbTable::DropIndex(const wxString &indexName)
1896 } // wxDbTable::DropIndex()
1899 /********** wxDbTable::SetOrderByColNums() **********/
1900 bool wxDbTable::SetOrderByColNums(UWORD first, ... )
1932 } // wxDbTable::SetOrderByColNums()
1935 /********** wxDbTable::Insert() **********/
1936 int wxDbTable::Insert(void)
1999 } // wxDbTable::Insert()
2002 /********** wxDbTable::Update() **********/
2003 bool wxDbTable::Update(void)
2023 } // wxDbTable::Update()
2026 /********** wxDbTable::Update(pSqlStmt) **********/
2027 bool wxDbTable::Update(const wxString &pSqlStmt)
2037 } // wxDbTable::Update(pSqlStmt)
2040 /********** wxDbTable::UpdateWhere() **********/
2041 bool wxDbTable::UpdateWhere(const wxString &pWhereClause)
2061 } // wxDbTable::UpdateWhere()
2064 /********** wxDbTable::Delete() **********/
2065 bool wxDbTable::Delete(void)
2082 } // wxDbTable::Delete()
2085 /********** wxDbTable::DeleteWhere() **********/
2086 bool wxDbTable::DeleteWhere(const wxString &pWhereClause)
2103 } // wxDbTable::DeleteWhere()
2106 /********** wxDbTable::DeleteMatching() **********/
2107 bool wxDbTable::DeleteMatching(void)
2124 } // wxDbTable::DeleteMatching()
2127 /********** wxDbTable::IsColNull() **********/
2128 bool wxDbTable::IsColNull(UWORD colNumber) const
2164 } // wxDbTable::IsColNull()
2167 /********** wxDbTable::CanSelectForUpdate() **********/
2168 bool wxDbTable::CanSelectForUpdate(void)
2182 } // wxDbTable::CanSelectForUpdate()
2185 /********** wxDbTable::CanUpdateByROWID() **********/
2186 bool wxDbTable::CanUpdateByROWID(void)
2199 } // wxDbTable::CanUpdateByROWID()
2202 /********** wxDbTable::IsCursorClosedOnCommit() **********/
2203 bool wxDbTable::IsCursorClosedOnCommit(void)
2210 } // wxDbTable::IsCursorClosedOnCommit()
2214 /********** wxDbTable::ClearMemberVar() **********/
2215 void wxDbTable::ClearMemberVar(UWORD colNumber, bool setToNull)
2276 } // wxDbTable::ClearMemberVar()
2279 /********** wxDbTable::ClearMemberVars() **********/
2280 void wxDbTable::ClearMemberVars(bool setToNull)
2288 } // wxDbTable::ClearMemberVars()
2291 /********** wxDbTable::SetQueryTimeout() **********/
2292 bool wxDbTable::SetQueryTimeout(UDWORD nSeconds)
2306 } // wxDbTable::SetQueryTimeout()
2309 /********** wxDbTable::SetColDefs() **********/
2310 bool wxDbTable::SetColDefs(UWORD index, const wxString &fieldName, int dataType, void *pData,
2362 } // wxDbTable::SetColDefs()
2365 /********** wxDbTable::SetColDefs() **********/
2366 wxDbColDataPtr* wxDbTable::SetColDefs(wxDbColInf *pColInfs, UWORD numCols)
2451 } // wxDbTable::SetColDefs()
2454 /********** wxDbTable::SetCursor() **********/
2455 void wxDbTable::SetCursor(HSTMT *hstmtActivate)
2462 } // wxDbTable::SetCursor()
2465 /********** wxDbTable::Count(const wxString &) **********/
2466 ULONG wxDbTable::Count(const wxString &args)
2535 } // wxDbTable::Count()
2538 /********** wxDbTable::Refresh() **********/
2539 bool wxDbTable::Refresh(void)
2603 } // wxDbTable::Refresh()
2606 /********** wxDbTable::SetColNull() **********/
2607 bool wxDbTable::SetColNull(UWORD colNumber, bool set)
2622 } // wxDbTable::SetColNull()
2625 /********** wxDbTable::SetColNull() **********/
2626 bool wxDbTable::SetColNull(const wxString &colName, bool set)
2648 } // wxDbTable::SetColNull()
2651 /********** wxDbTable::GetNewCursor() **********/
2652 HSTMT *wxDbTable::GetNewCursor(bool setCursor, bool bindColumns)
2687 } // wxDbTable::GetNewCursor()
2690 /********** wxDbTable::DeleteCursor() **********/
2691 bool wxDbTable::DeleteCursor(HSTMT *hstmtDel)
2713 } // wxDbTable::DeleteCursor()
2719 void wxDbTable::SetRowMode(const rowmode_t rowmode)
2740 } // wxDbTable::SetRowMode()
2743 wxVariant wxDbTable::GetColumn(const int colNumber) const
2799 } // wxDbTable::GetCol()
2802 void wxDbTable::SetColumn(const int colNumber, const wxVariant val)
2897 } // wxDbTable::SetCol()
2900 GenericKey wxDbTable::GetKey()
2922 } // wxDbTable::GetKey()
2925 void wxDbTable::SetKey(const GenericKey& k)
2943 } // wxDbTable::SetKey()