Searched refs:wxDbTable (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtable.tex1 \section{\class{wxDbTable}}\label{wxDbTable}
3 A wxDbTable instance provides re-usable access to rows of data in
18 \helpref{wxDbTable}{wxDbTable}
22 \membersection{wxDbTable::wxDbTable}\label{wxDbTableconstr}
24 \func{}{wxDbTable}{\void}
H A Ddb.tex194 \helpref{wxDbTable::IsCursorClosedOnCommit}{wxdbtableiscursorclosedoncommit})
266 \helpref{wxDbTable}{wxdbtable}, \helpref{wxDbTableInf}{wxdbtableinf},
282 finished using the connections and all wxDbTable instances that use any of
473 Any wxDbTable instances which use this connection must be deleted before
482 // Delete any remaining wxDbTable objects allocated with new
509 connection. For example, if three different wxDbTable instances used the
511 wxDbTable instances commits any pending transactions on all three wxDbTable
533 \helpref{wxDbTable::IsCursorClosedOnCommit}{wxdbtableiscursorclosedoncommit}
848 by this function, including those used by any wxDbTable instance
[all...]
H A Dtdb.tex4 and \helpref{wxDbTable}{wxdbtable} and their associated functions. These are
8 \subsection{wxDb/wxDbTable wxODBC Overview}\label{wxodbcoverview}
10 Classes: \helpref{wxDb}{wxdb}, \helpref{wxDbTable}{wxdbtable}
75 Datasource connections can have a virtually unlimited number of wxDbTable
107 \helpref{wxDbTable::GetPrev}{wxdbtablegetprev},
108 \helpref{wxDbTable::GetFirst}{wxdbtablegetfirst}, and
109 \helpref{wxDbTable::GetLast}{wxdbtablegetlast}). If the datasource or the
186 \helpref{wxDbTable::GetNewCursor}{wxdbtablegetnewcursor} function. One example
210 not on the wxDbTable instances. This means that if more than one table
517 simpler, the wxDbTable clas
[all...]
H A Dlibs.tex123 \helpref{wxGrid}{wxgrid} and \helpref{wxDbTable}{wxdbtable}.
H A Ddatabase.tex22 \helpref{wxDb}{wxdb}, \helpref{wxDbTable}{wxdbtable}
H A Dtchanges.tex143 \item wxDbTable::wxDbTable with wxChar* deprecated, same with wxString\& instead.
H A Drecrdset.tex8 wxDB/wxDbTable classes
H A Dcategory.tex690 \twocolitem{\helpref{wxDbTable}{wxdbtable}}{Provides access to a database table}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Ddbgrid.h3 // Purpose: Displays a wxDbTable in a wxGrid.
101 wxDbGridCellAttrProvider(wxDbTable *tab, wxDbGridColInfoBase* ColInfo);
106 virtual void AssignDbTable(wxDbTable *tab);
108 wxDbTable *m_data;
116 wxDbGridTableBase(wxDbTable *tab, wxDbGridColInfo *ColInfo,
149 virtual bool AssignDbTable(wxDbTable *tab, int count = wxUSE_QUERY, bool takeOwnership=true);
165 wxDbTable *m_data;
H A Ddbtable.h3 // Purpose: Declaration of the wxDbTable class.
39 // The wxDbTable constructor will dynamically allocate as many of
41 // from wxDbTable must initialize these column definitions in it's
43 // wxDbTable class which allows it to create a table in the data
85 class WXDLLIMPEXP_ODBC wxDbTable class
115 wxString from; // Allows for joins in a wxDbTable::Query(). Format: ",tbl,tbl..."
149 char *from; // Allows for joins in a wxDbTable::Query(). Format: ",tbl,tbl..."
179 wxDbTable(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns,
185 wxDbTable(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns,
191 virtual ~wxDbTable();
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/db/
H A Dlistdb.h25 class Clookup : public wxDbTable
37 class Clookup2 : public wxDbTable
H A Ddbtest.h94 // The Ccontact class derives from wxDbTable, so we have access to all
99 class Ccontact : public wxDbTable, public CstructContact
109 // Calls wxDbTable::SetColDefs() once for each column that is
129 // Contains all the index definitions and calls to wxDbTable::CreateIndex()
220 // To allow each table object (those derived from wxDbTable) to be
244 // Pointer to the wxDbTable instance that is used to manipulate
493 wxDbTable *dbTable; // generic wxDbTable object for attaching to the table to query
H A Dlistdb.cpp33 in this module, interfacing with the methods defined in wxDbTable.
130 : wxDbTable(pDb, tblName, 1, (const wxString &)wxEmptyString, !wxDB_QUERY_ONLY,
142 : wxDbTable(pDb, tblName, (UWORD)(1 + (wxStrlen(colName2) > 0)), (const wxString &)wxEmptyString,
H A Ddbtest.cpp19 some of the simple uses of the database classes wxDb and wxDbTable.
41 //#include "wx/dbtable.h" /* Has the wxDbTable object from which all data objects will inherit their data table functionality */
1029 Ccontact::Ccontact (wxDb *pwxDb) : wxDbTable(pwxDb ? pwxDb : wxDbGetConnection(wxGetApp().DbConnectInf),
1089 * Handles setting up all the connections for the interface from the wxDbTable
1662 // The wxString "whereStr" is not a member of the wxDbTable object, it is a member variable
1664 // length string, and then after the string is built, the wxDbTable member variable "where" is
2831 if (!dbTable) // wxDbTable object needs to be created and opened
2833 dbTable = new wxDbTable(pDB, masterTableName, 0, (const wxString &)wxEmptyString,
2838 wxMessageBox(wxT("Memory allocation failed creating a wxDbTable object."),wxT("Error..."),wxOK | wxICON_EXCLAMATION);
3378 Contact->SetRowMode(wxDbTable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Ddbtable.cpp3 // Purpose: Implementation of the wxDbTable class.
106 /********** wxDbTable::wxDbTable() Constructor **********/
107 wxDbTable::wxDbTable(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns, function in class:wxDbTable
112 } // wxDbTable::wxDbTable()
115 /***** DEPRECATED: use wxDbTable::wxDbTable() format above *****/
117 wxDbTable function in class:wxDbTable
[all...]
H A Ddbgrid.cpp3 // Purpose: Displays a wxDbTable in a wxGrid.
41 wxDbGridCellAttrProvider::wxDbGridCellAttrProvider(wxDbTable *tab, wxDbGridColInfoBase* ColInfo)
119 void wxDbGridCellAttrProvider::AssignDbTable(wxDbTable *tab)
124 wxDbGridTableBase::wxDbGridTableBase(wxDbTable *tab, wxDbGridColInfo* ColInfo,
202 bool wxDbGridTableBase::AssignDbTable(wxDbTable *tab, int count, bool takeOwnership)
661 m_data->SetRowMode(wxDbTable::WX_ROW_MODE_QUERY);
678 m_data->SetRowMode(wxDbTable::WX_ROW_MODE_INDIVIDUAL);
707 case wxDbTable::UpdatePending:
710 case wxDbTable::InsertPending:

Completed in 75 milliseconds