Count of commas.
| 365 | TSqlString values; |
| 366 | Int_z cnt; // Count of commas. |
| 367 | void addc(const char *name, string sval) { |
| 368 | if (cnt++) { this->append(","); values.append(","); } |
| 369 | this->append(name); |
| 370 | values.appendf("'%s'",sval); |
| 371 | } |
| 372 | void addc(const char *name, unsigned ival) { |
| 373 | if (cnt++) { this->append(","); values.append(","); } |
| 374 | this->append(name); |