summaryrefslogtreecommitdiff
path: root/libpqpp/pq-command.h
diff options
context:
space:
mode:
Diffstat (limited to 'libpqpp/pq-command.h')
-rw-r--r--libpqpp/pq-command.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpqpp/pq-command.h b/libpqpp/pq-command.h
index c2674eb..a26bae8 100644
--- a/libpqpp/pq-command.h
+++ b/libpqpp/pq-command.h
@@ -43,6 +43,7 @@ namespace PQ {
void bindParamF(unsigned int, float) override;
void bindParamS(unsigned int, const Glib::ustring&) override;
+ void bindParamS(unsigned int, const std::string_view&) override;
void bindParamT(unsigned int, const boost::posix_time::time_duration &) override;
void bindParamT(unsigned int, const boost::posix_time::ptime &) override;
@@ -59,7 +60,7 @@ namespace PQ {
void paramsAtLeast(unsigned int);
template<typename ... T>
void paramSet(unsigned int, const char * fmt, const T & ... t);
- void paramSet(unsigned int, const std::string &);
+ void paramSet(unsigned int, const std::string_view &);
std::vector<char *> values;
std::vector<int> lengths;
std::vector<int> formats;