summaryrefslogtreecommitdiff
path: root/libmysqlpp/column.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmysqlpp/column.h')
-rw-r--r--libmysqlpp/column.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/libmysqlpp/column.h b/libmysqlpp/column.h
new file mode 100644
index 0000000..6146f53
--- /dev/null
+++ b/libmysqlpp/column.h
@@ -0,0 +1,42 @@
+#ifndef MY_COLUMN_H
+#define MY_COLUMN_H
+
+#include "../libdbpp/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
+