From efd292508070835781a0d92448a3661279dfd307 Mon Sep 17 00:00:00 2001 From: randomdan Date: Thu, 13 Nov 2008 14:45:11 +0000 Subject: Lots of little fixes --- libodbcpp/column.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libodbcpp/column.h') diff --git a/libodbcpp/column.h b/libodbcpp/column.h index 9f597c7..87c7edf 100644 --- a/libodbcpp/column.h +++ b/libodbcpp/column.h @@ -1,13 +1,13 @@ #ifndef ODBC_COLUMN_H #define ODBC_COLUMN_H -#include "string.h" +#include "ustring.h" #include "bind.h" namespace ODBC { class Column : public BindBase { public: - Column(String, u_int); + Column(String, unsigned int); virtual ~Column(); void bind(SQLHANDLE, SQLUINTEGER, SQLSMALLINT, void*, size_t); operator int () const; @@ -16,13 +16,13 @@ namespace ODBC { operator unsigned long long () const; operator double () const; operator float () const; - operator const unsigned char * const () const; - operator const char * const () const; + operator const unsigned char * () const; + operator const char * () const; operator std::string () const; operator String () const; operator const struct tm & () const; - const u_int colNo; + const unsigned int colNo; const String name; private: mutable bool fresh; @@ -31,7 +31,7 @@ namespace ODBC { template class _Column : public Bind, public Column { public: - _Column(String, u_int); + _Column(String, unsigned int); ~_Column() {} }; } -- cgit v1.2.3