summaryrefslogtreecommitdiff
path: root/libmysqlpp/column.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-23 23:15:18 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-23 23:15:18 +0000
commitf268aec98176049136bceb2741f3615841e5c516 (patch)
tree79b980073c32aa1bb08988d06151d194b4ac104c /libmysqlpp/column.h
parentUse a b2 lib for mysql (diff)
downloadlibdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.tar.bz2
libdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.tar.xz
libdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.zip
MySQL files prefixed with my-
Diffstat (limited to 'libmysqlpp/column.h')
-rw-r--r--libmysqlpp/column.h42
1 files changed, 0 insertions, 42 deletions
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 <column.h>
-#include <mysql.h>
-
-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 T, enum_field_types MT> class Column : public ColumnBase {
- public:
- Column(const char * name, unsigned int field, MYSQL_BIND * b);
- void apply(DB::HandleField & h) const;
- T value;
- };
-}
-
-#endif
-