From: Elena Mamontova <helenh463@gmail.com>
Date: Tue, 16 Aug 2016 12:26:41 +0000 (+0300)
Subject: Ticket 37. st->Prepare(query) and st->Set(7, id) added in the
X-Git-Tag: 2.409~117
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/f971bb53a8b621f48d97e0a54fd88ef6903b99ec

Ticket 37. st->Prepare(query) and st->Set(7, id) added in the
SaveTariff() function.
---

diff --git a/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp b/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp
index b00fd122..3e82e16f 100644
--- a/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp
+++ b/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp
@@ -164,6 +164,7 @@ try
 
     query += " where pk_tariff = ?";
 
+    st->Prepare(query);
     st->Set(1, td.tariffConf.fee);
     st->Set(2, td.tariffConf.free);
     st->Set(3, td.tariffConf.passiveCost);
@@ -174,6 +175,7 @@ try
     if (schemaVersion > 1)
         st->Set(6, TARIFF::ChangePolicyToString(td.tariffConf.changePolicy));
 
+    st->Set(7, id);
     st->Execute();
     st->Close();