• 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:wxDbColInf

363 /********** wxDbColInf Constructor **********/
364 wxDbColInf::wxDbColInf()
367 } // wxDbColInf::wxDbColInf()
370 /********** wxDbColInf Destructor ********/
371 wxDbColInf::~wxDbColInf()
376 } // wxDbColInf::~wxDbColInf()
379 bool wxDbColInf::Initialize()
401 } // wxDbColInf::Initialize()
2271 bool wxDb::ExecSql(const wxString &pSqlStmt, wxDbColInf** columns, short& numcols)
2294 wxDbColInf* pColInf = new wxDbColInf[noCols];
2406 int wxDb::GetKeyFields(const wxString &tableName, wxDbColInf* colInf, UWORD noCols)
2548 wxDbColInf *wxDb::GetColumns(wxChar *tableName[], const wxChar *userID)
2552 * 2) This function returns an array of wxDbColInf structures. If no columns
2557 * wxDbColInf *colInf = pDb->GetColumns(tableList, userID);
2578 wxDbColInf *colInf = 0;
2589 // Pass 2 - Allocate the wxDbColInf array and fill in
2598 // Allocate n wxDbColInf objects to hold the column information
2599 colInf = new wxDbColInf[noCols+1];
2719 wxDbColInf *wxDb::GetColumns(const wxString &tableName, UWORD *numCols, const wxChar *userID)
2723 // columns stored in the returned wxDbColInf is set in '*numCols'
2737 wxDbColInf *colInf = 0;
2748 // Pass 2 - Allocate the wxDbColInf array and fill in
2757 // Allocate n wxDbColInf objects to hold the column information
2758 colInf = new wxDbColInf[noCols+1];
2907 - The first one (wxDbColInf *wxDb::GetColumns(wxChar *tableName[], const
2911 - wxDbColInf *wxDb::GetColumns(const wxString &tableName, int *numCols, const
2922 wxDbColInf *colInf;
2926 wxDbColInf *wxDb::GetColumns(wxChar *tableName[], const wxChar *userID)
2952 wxDbColInf *colInf = new wxDbColInf[noCols+1];
2976 wxDbColInf *wxDb::GetColumns(const wxString &tableName, int *numCols, const wxChar *userID)
2980 // columns stored in the returned wxDbColInf is set in '*numCols'
2993 wxDbColInf *colInf = 0;
3004 // Pass 2 - Allocate the wxDbColInf array and fill in
3013 // Allocate n wxDbColInf objects to hold the column information
3014 colInf = new wxDbColInf[noCols+1];
3224 wxDbColInf tmpColInf = colInf[colNum];