summaryrefslogtreecommitdiff
path: root/libmysqlpp/column.cpp
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.cpp
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.cpp')
-rw-r--r--libmysqlpp/column.cpp118
1 files changed, 0 insertions, 118 deletions
diff --git a/libmysqlpp/column.cpp b/libmysqlpp/column.cpp
deleted file mode 100644
index 7ff365a..0000000
--- a/libmysqlpp/column.cpp
+++ /dev/null
@@ -1,118 +0,0 @@
-#include "column.h"
-#include "selectcommand.h"
-#include "error.h"
-#include <string.h>
-#include <boost/date_time/gregorian/gregorian_types.hpp>
-
-MySQL::ColumnBase::ColumnBase(const char * name, unsigned int i) :
- DB::Column(name, i)
-{
-}
-
-bool
-MySQL::ColumnBase::isNull() const
-{
- return is_null;
-}
-
-void
-MySQL::ColumnBase::rebind(DB::Command *, unsigned int) const
-{
- throw Error("Not supported");
-}
-
-MySQL::StringColumn::StringColumn(const char * name, unsigned int field, MYSQL_BIND * b, unsigned int len) :
- ColumnBase(name, field),
- value(new char[len])
-{
- b->is_null = &is_null;
- b->buffer_type = MYSQL_TYPE_STRING;
- b->is_unsigned = 0;
- b->buffer = value;
- b->buffer_length = len;
- b->length = &length;
-}
-MySQL::StringColumn::~StringColumn()
-{
- delete[] value;
-}
-void
-MySQL::StringColumn::apply(DB::HandleField & h) const
-{
- if (is_null) {
- h.null();
- }
- else {
- h.string(value, length);
- }
-}
-MySQL::NullColumn::NullColumn(const char * name, unsigned int field, MYSQL_BIND * b) :
- ColumnBase(name, field)
-{
- b->is_null = &is_null;
- b->buffer_type = MYSQL_TYPE_NULL;
- b->buffer = NULL;
- b->buffer_length = 0;
-}
-void
-MySQL::NullColumn::apply(DB::HandleField & h) const
-{
- h.null();
-}
-
-namespace MySQL {
- template <class T, enum_field_types MT> Column<T, MT>::Column(const char * name, unsigned int field, MYSQL_BIND * b) :
- ColumnBase(name, field)
- {
- b->is_null = &is_null;
- b->buffer_type = MT;
- b->is_unsigned = 0;
- b->buffer = &value;
- b->buffer_length = sizeof(T);
- }
-
- template <> void Column<int64_t, MYSQL_TYPE_LONGLONG>::apply(DB::HandleField & h) const
- {
- if (is_null) {
- h.null();
- }
- else {
- h.integer(value);
- }
- }
- template <> void Column<double, MYSQL_TYPE_DOUBLE>::apply(DB::HandleField & h) const
- {
- if (is_null) {
- h.null();
- }
- else {
- h.floatingpoint(value);
- }
- }
- template <> void Column<MYSQL_TIME, MYSQL_TYPE_DATETIME>::apply(DB::HandleField & h) const
- {
- if (is_null) {
- h.null();
- }
- else {
- h.timestamp(boost::posix_time::ptime(
- boost::gregorian::date(value.year, value.month, value.day),
- boost::posix_time::time_duration(value.hour, value.minute, value.second) + boost::posix_time::microseconds(value.second_part)));
- }
- }
- template <> void Column<MYSQL_TIME, MYSQL_TYPE_TIME>::apply(DB::HandleField & h) const
- {
- if (is_null) {
- h.null();
- }
- else {
- h.interval(
- boost::posix_time::time_duration(value.hour, value.minute, value.second) + boost::posix_time::microseconds(value.second_part));
- }
- }
-
- template class Column<int64_t, MYSQL_TYPE_LONGLONG>;
- template class Column<double, MYSQL_TYPE_DOUBLE>;
- template class Column<MYSQL_TIME, MYSQL_TYPE_DATETIME>;
- template class Column<MYSQL_TIME, MYSQL_TYPE_TIME>;
-}