Exemple #1
0
 public void Append(CqlCommand cqlCommand)
 {
     if (cqlCommand.GetTable().GetTableType() == TableType.Counter)
         _batchType = "COUNTER ";
     _batchScript.Append(cqlCommand.ToString());
     _batchScript.AppendLine(";");
 }
Exemple #2
0
 public void Append(CqlCommand cqlCommand)
 {
     if (cqlCommand.GetTable().GetTableType() == TableType.Counter)
     {
         _batchType = "COUNTER ";
     }
     _batchScript.Append(cqlCommand.ToString());
     _batchScript.AppendLine(";");
 }