From 1df33cc9d9a7804c78788d5717435ede44855ca0 Mon Sep 17 00:00:00 2001 From: randomdan Date: Fri, 11 Jun 2010 09:03:42 +0000 Subject: Use Glib::ustring in libodbcpp for data and std::string for non-data Add support for parameters in SqlViews Uses parameters to implement category browse and search --- libodbcpp/bind.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'libodbcpp/bind.h') diff --git a/libodbcpp/bind.h b/libodbcpp/bind.h index 4465466..7dfbf34 100644 --- a/libodbcpp/bind.h +++ b/libodbcpp/bind.h @@ -9,14 +9,11 @@ namespace ODBC { public: BindBase(); virtual ~BindBase() {} - SQLINTEGER length() const; - SQLUINTEGER size() const; - bool isNull() const; - private: - SQLUINTEGER bindSize; // Allocated memory + protected: SQLINTEGER bindLen; // Used memory friend class Param; friend class Column; + friend class Command; }; template class Bind { -- cgit v1.2.3