VTK
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
home
demarle
Source
VTK
release
8.2
build
Utilities
Doxygen
dox
IO
ODBC
vtkODBCInternals.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkODBCInternals.h
5
6
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7
All rights reserved.
8
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10
This software is distributed WITHOUT ANY WARRANTY; without even
11
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12
PURPOSE. See the above copyright notice for more information.
13
14
=========================================================================*/
15
31
#ifndef vtkODBCInternals_h
32
#define vtkODBCInternals_h
33
34
#include <sql.h>
35
36
class
vtkODBCInternals
{
37
friend
class
vtkODBCDatabase
;
38
friend
class
vtkODBCQuery
;
39
40
public
:
41
vtkODBCInternals
()
42
: Environment(0), Connection(0)
43
{
44
};
45
46
private
:
47
SQLHANDLE Environment;
48
SQLHANDLE Connection;
49
};
50
51
#endif
52
// VTK-HeaderTest-Exclude: vtkODBCInternals.h
vtkODBCInternals
Simple class to hide ODBC structures.
Definition:
vtkODBCInternals.h:36
vtkODBCDatabase
maintain an ODBC connection to a SQL database
Definition:
vtkODBCDatabase.h:86
vtkODBCInternals::vtkODBCInternals
vtkODBCInternals()
Definition:
vtkODBCInternals.h:41
vtkODBCQuery
vtkSQLQuery implementation for ODBC connections to databases
Definition:
vtkODBCQuery.h:48
Generated by
1.8.11