diff options
author | emkael <emkael@tlen.pl> | 2017-07-29 23:38:22 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-07-29 23:38:22 +0200 |
commit | 861ccf77f4a419641bbfb2c667b9602bb8a1146c (patch) | |
tree | 6ce4a40f11b1176fe655ab6c7f57776172163d7c | |
parent | 7e99f04ff067ba16483efa93130a7eb86af2c72d (diff) |
Incorporating table number jump constant into hard-coded value in BWS query
-rw-r--r-- | Aktywator/Bws.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs index 553e91d..9d2ef81 100644 --- a/Aktywator/Bws.cs +++ b/Aktywator/Bws.cs @@ -364,7 +364,7 @@ namespace Aktywator } else { - d = sql.select("SELECT `Section`, `Table`, NSPair, EWPair FROM RoundData WHERE `Table`<=100"); + d = sql.select("SELECT `Section`, `Table`, NSPair, EWPair FROM RoundData WHERE `Table`<=" + SKOK_STOLOW); } while (d.Read()) |