Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00030 #ifndef __vtkODBCInternals_h
00031 #define __vtkODBCInternals_h
00032
00033 #include <sql.h>
00034
00035 class vtkODBCInternals {
00036 friend class vtkODBCDatabase;
00037 friend class vtkODBCQuery;
00038
00039 public:
00040 vtkODBCInternals()
00041 : Environment(0), Connection(0)
00042 {
00043 };
00044
00045 private:
00046 SQLHANDLE Environment;
00047 SQLHANDLE Connection;
00048 };
00049
00050 #endif