From de6be7bbb9a2984a514d4076d77d97b054585d7c Mon Sep 17 00:00:00 2001 From: randomdan Date: Wed, 7 Apr 2010 19:25:52 +0000 Subject: Add a writeToBuf function and use it --- libodbcpp/column.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libodbcpp/column.h') diff --git a/libodbcpp/column.h b/libodbcpp/column.h index acc6904..616ca2d 100644 --- a/libodbcpp/column.h +++ b/libodbcpp/column.h @@ -22,6 +22,8 @@ namespace ODBC { operator String () const; operator const struct tm & () const; virtual void rebind(Command *, unsigned int col) const = 0; + virtual int writeToBuf(char ** buf) const = 0; + virtual int writeToBuf(char ** buf, const char * fmt) const = 0; const unsigned int colNo; const String name; @@ -35,6 +37,8 @@ namespace ODBC { _Column(String, unsigned int); ~_Column() {} void rebind(Command *, unsigned int col) const; + int writeToBuf(char ** buf) const; + int writeToBuf(char ** buf, const char * fmt) const; }; } -- cgit v1.2.3