aboutsummaryrefslogtreecommitdiff
path: root/sqlite/types/traits.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite/types/traits.hxx')
-rw-r--r--sqlite/types/traits.hxx39
1 files changed, 1 insertions, 38 deletions
diff --git a/sqlite/types/traits.hxx b/sqlite/types/traits.hxx
index 70b7b26..486e608 100644
--- a/sqlite/types/traits.hxx
+++ b/sqlite/types/traits.hxx
@@ -10,50 +10,13 @@
#include <odb/sqlite/traits.hxx>
-#include "test.hxx" // buffer, string_ptr
+#include "test.hxx" // string_ptr
namespace odb
{
namespace sqlite
{
template <>
- class value_traits<buffer, id_blob>
- {
- public:
- typedef buffer value_type;
- typedef buffer query_type;
- typedef details::buffer image_type;
-
- static void
- set_value (buffer& v,
- const details::buffer& b,
- std::size_t n,
- bool is_null)
- {
- if (!is_null)
- v.assign (b.data (), n);
- else
- v.assign (0, 0);
- }
-
- static void
- set_image (details::buffer& b,
- std::size_t& n,
- bool& is_null,
- const buffer& v)
- {
- is_null = false;
- n = v.size ();
-
- if (n > b.capacity ())
- b.capacity (n);
-
- if (n != 0)
- std::memcpy (b.data (), v.data (), n);
- }
- };
-
- template <>
class value_traits<string_ptr, id_text>
{
public: