void InitSendSql() { string resultSql; if (dedupe) { resultSql = string.Format(dedupSql, dedupeTable) + string.Format(sql, Table); } else { resultSql = string.Format(sql, Table); } sendSql = ConnectionHelpers.WrapInNoCount(resultSql); }
void InitSql() { writeSql = ConnectionHelpers.WrapInNoCount(string.Format(writeSqlFormat, table)); readSql = ConnectionHelpers.WrapInNoCount(string.Format(readSqlFormat, table)); }