/usr/include/Poco/Data/ODBC/ConnectionHandle.h is in libpoco-dev 1.8.0.1-1ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | //
// ConnectionHandle.h
//
// Library: Data/ODBC
// Package: ODBC
// Module:  ConnectionHandle
//
// Definition of ConnectionHandle.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier:	BSL-1.0
//
#ifndef Data_ODBC_ConnectionHandle_INCLUDED
#define Data_ODBC_ConnectionHandle_INCLUDED
#include "Poco/Data/ODBC/ODBC.h"
#include "Poco/Data/ODBC/EnvironmentHandle.h"
#ifdef POCO_OS_FAMILY_WINDOWS
#include <windows.h>
#endif
#include <sqltypes.h>
namespace Poco {
namespace Data {
namespace ODBC {
class ODBC_API ConnectionHandle
/// ODBC connection handle class
{
public:
	ConnectionHandle(EnvironmentHandle* pEnvironment = 0);
		/// Creates the ConnectionHandle.
	~ConnectionHandle();
		/// Creates the ConnectionHandle.
	operator const SQLHDBC& () const;
		/// Const conversion operator into reference to native type.
	const SQLHDBC& handle() const;
		/// Returns const reference to handle;
private:
	operator SQLHDBC& ();
		/// Conversion operator into reference to native type.
	SQLHDBC& handle();
		/// Returns reference to handle;
	ConnectionHandle(const ConnectionHandle&);
	const ConnectionHandle& operator=(const ConnectionHandle&);
	const EnvironmentHandle* _pEnvironment;
	SQLHDBC                  _hdbc;
	bool                     _ownsEnvironment;
};
//
// inlines
//
inline ConnectionHandle::operator const SQLHDBC& () const
{
	return handle();
}
inline const SQLHDBC& ConnectionHandle::handle() const
{
	return _hdbc;
}
inline ConnectionHandle::operator SQLHDBC& ()
{
	return handle();
}
inline SQLHDBC& ConnectionHandle::handle()
{
	return _hdbc;
}
} } } // namespace Poco::Data::ODBC
#endif
 |