VTK  9.3.1
vtkODBCInternals.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
3 
19 #ifndef vtkODBCInternals_h
20 #define vtkODBCInternals_h
21 
22 #include <sql.h>
23 
24 VTK_ABI_NAMESPACE_BEGIN
26 {
27  friend class vtkODBCDatabase;
28  friend class vtkODBCQuery;
29 
30 public:
32  : Environment(nullptr)
33  , Connection(nullptr)
34  {
35  }
36 
37 private:
38  SQLHANDLE Environment;
39  SQLHANDLE Connection;
40 };
41 
42 VTK_ABI_NAMESPACE_END
43 #endif
44 // VTK-HeaderTest-Exclude: vtkODBCInternals.h
Simple class to hide ODBC structures.
maintain an ODBC connection to a SQL database
vtkSQLQuery implementation for ODBC connections to databases
Definition: vtkODBCQuery.h:31