We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c0d808 commit eb19ec2Copy full SHA for eb19ec2
CppSQLite3.h
@@ -267,6 +267,11 @@ class CppSQLite3Statement
267
void bind(int nParam, const double dwValue);
268
void bind(int nParam, const unsigned char* blobValue, int nLen);
269
void bindNull(int nParam);
270
+
271
+ // Inline overload to support calling with (int, std::string)
272
+ void bind(int nParam, const std::string& value) {
273
+ bind(nParam, value.c_str());
274
+ }
275
276
void reset();
277
0 commit comments