From f268aec98176049136bceb2741f3615841e5c516 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 23 Dec 2015 23:15:18 +0000 Subject: MySQL files prefixed with my- --- libmysqlpp/column.h | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 libmysqlpp/column.h (limited to 'libmysqlpp/column.h') diff --git a/libmysqlpp/column.h b/libmysqlpp/column.h deleted file mode 100644 index 38f4f39..0000000 --- a/libmysqlpp/column.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef MY_COLUMN_H -#define MY_COLUMN_H - -#include -#include - -namespace MySQL { - class SelectCommand; - class ColumnBase : public DB::Column { - public: - ColumnBase(const char * name, unsigned int field); - - bool isNull() const; - void rebind(DB::Command *, unsigned int) const; - protected: - my_bool is_null; - long unsigned int length; - friend class SelectCommand; - }; - class StringColumn : public ColumnBase { - public: - StringColumn(const char * name, unsigned int field, MYSQL_BIND * b, unsigned int len); - ~StringColumn(); - void apply(DB::HandleField &) const; - char * value; - long unsigned int length; - }; - class NullColumn : public ColumnBase { - public: - NullColumn(const char * name, unsigned int field, MYSQL_BIND * b); - void apply(DB::HandleField &) const; - }; - template class Column : public ColumnBase { - public: - Column(const char * name, unsigned int field, MYSQL_BIND * b); - void apply(DB::HandleField & h) const; - T value; - }; -} - -#endif - -- cgit v1.2.3