diff --git a/include/Version.h b/include/Version.h index be4d23f..18bf38e 100644 --- a/include/Version.h +++ b/include/Version.h @@ -1,5 +1,5 @@ #define MAJOR_VERSION_INT 13 -#define MINOR_VERSION_INT 0 -#define UPDATE_VERSION_INT 0 -#define RELEASE_VERSION_INT 0 +#define MINOR_VERSION_INT 1 +#define UPDATE_VERSION_INT 1 +#define RELEASE_VERSION_INT 0 #define EXTRAINFO "" diff --git a/src/DataView.cpp b/src/DataView.cpp index 7ecfc6b..40efb1a 100644 --- a/src/DataView.cpp +++ b/src/DataView.cpp @@ -1045,6 +1045,9 @@ DataView::AddDataToQuery(MYSQL_ROW data, wyString &query, const wyChar* delimite wyInt32 i, max; wyString colname; + //from .ini file + m_backtick = AppendBackQuotes() == wyTrue ? "`" : ""; + //if valid col is specified then we will add data for that column only if(col >= 0) { @@ -1107,6 +1110,8 @@ DataView::AddDataToQueryJSON(MYSQL_ROW data, wyString &query, const wyChar* deli wyInt32 i, max; wyString colname; + //from .ini file + m_backtick = AppendBackQuotes() == wyTrue ? "`" : ""; //if valid col is specified then we will add data for that column only if(col >= 0)