This file is indexed.

/usr/include/Poco/Data/ODBC/ODBCMetaColumn.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
//
// ODBCMetaColumn.h
//
// Library: Data/ODBC
// Package: ODBC
// Module:  ODBCMetaColumn
//
// Definition of ODBCMetaColumn.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier:	BSL-1.0
//


#ifndef Data_ODBC_ODBCColumn_INCLUDED
#define Data_ODBC_ODBCColumn_INCLUDED


#include "Poco/Data/ODBC/ODBC.h"
#include "Poco/Data/ODBC/Error.h"
#include "Poco/Data/ODBC/Handle.h"
#include "Poco/Data/ODBC/ODBCException.h"
#include "Poco/Data/MetaColumn.h"
#ifdef POCO_OS_FAMILY_WINDOWS
#include <windows.h>
#endif
#include <sqlext.h>


namespace Poco {
namespace Data {
namespace ODBC {


class ODBC_API ODBCMetaColumn: public MetaColumn
{
public:
	explicit ODBCMetaColumn(const StatementHandle& rStmt, std::size_t position);
		/// Creates the ODBCMetaColumn.
		
	~ODBCMetaColumn();
		/// Destroys the ODBCMetaColumn.

	std::size_t dataLength() const;
		/// A numeric value that is either the maximum or actual character length of a character 
		/// string or binary data type. It is the maximum character length for a fixed-length data type, 
		/// or the actual character length for a variable-length data type. Its value always excludes the 
		/// null-termination byte that ends the character string. 
		/// This information is returned from the SQL_DESC_LENGTH record field of the IRD.

	bool isUnsigned() const;
		/// Returns true if column is unsigned or a non-numeric data type.

private:
	ODBCMetaColumn();

	static const int NAME_BUFFER_LENGTH = 2048;

	struct ColumnDescription
	{
		SQLCHAR name[NAME_BUFFER_LENGTH];
		SQLSMALLINT  nameBufferLength;
		SQLSMALLINT  dataType;
		SQLULEN      size;
		SQLSMALLINT  decimalDigits;
		SQLSMALLINT  isNullable;
	};

	void init();
	void getDescription();

	SQLLEN                 _dataLength;
	const StatementHandle& _rStmt;
	ColumnDescription      _columnDesc;
};


///
/// inlines
///
inline std::size_t ODBCMetaColumn::dataLength() const
{
	return _dataLength;
}


} } } // namespace Poco::Data::ODBC


#endif