#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include "TString.h"
#include "TDbiStatement.hxx"
#include "TDbiTableMetaData.hxx"
#include <TSK_DBI_Log.hxx>
#include <MsgFormat.h>
#include "UtilString.hxx"
Go to the source code of this file.
Functions | |
ClassImp (TDbiStatement) TDbiStatement |
ClassImp | ( | TDbiStatement | ) |
Definition at line 21 of file TDbiStatement.cxx.
References SK_DBI_Trace.
00031 : ctors, dtor, operators then in alphabetical order. 00032 00033 //..................................................................... 00034 00035 TDbiStatement::TDbiStatement(TDbiConnection& conDb) : 00036 fConDb(conDb) 00037 { 00038 // 00039 // 00040 // Purpose: Constructor 00041 // 00042 // Arguments: None. 00043 // 00044 // Return: 00045 // 00046 // conDb in The connection associated with the statement. 00047 // 00048 00049 00050 SK_DBI_Trace( "Creating TDbiStatement" << " "); 00051 fConDb.ConnectStatement(); 00052 00053 }