added date_type_t, time_type_t and timestamp, ensure allocated postgres resources are released, split repository into basic_repository and repository.

This commit is contained in:
2026-01-06 15:43:20 +01:00
parent f07a360da2
commit 0c6b5a0a93
60 changed files with 1132 additions and 1225 deletions
+3 -2
View File
@@ -12,8 +12,9 @@ void test_parameter_binder::write_value(size_t /*pos*/, const uint64_t &/*x*/) {
void test_parameter_binder::write_value(size_t /*pos*/, const bool &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const float &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const double &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const time &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const date &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const utils::date_type_t &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const utils::time_type_t &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const utils::timestamp &/*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const char * /*x*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const char * /*x*/, size_t /*size*/) {}
void test_parameter_binder::write_value(size_t /*pos*/, const std::string &/*x*/) {}