public void Append(CqlCommand cqlCommand) { if (cqlCommand.GetTable().GetTableType() == TableType.Counter) _batchType = "COUNTER "; _batchScript.Append(cqlCommand.ToString()); _batchScript.AppendLine(";"); }
public override void Append(CqlCommand cqlCommand) { if (cqlCommand.GetTable().GetTableType() == TableType.Counter) _batchType = BatchType.Counter; _batchScript.Append(cqlCommand); _batchScript.AppendLine(";"); }
public override void Append(CqlCommand cqlCommand) { if (cqlCommand.GetTable().GetTableType() == TableType.Counter) { _batchType = BatchType.Counter; } _batchScript.Add(cqlCommand); }
public override void Append(CqlCommand cqlCommand) { if (cqlCommand.GetTable().GetTableType() == TableType.Counter) { _batchType = BatchType.Counter; } _batchScript.Append(cqlCommand); _batchScript.AppendLine(";"); }
public void Append(CqlCommand cqlCommand) { if (cqlCommand.GetTable().GetTableType() == TableType.Counter) { _batchType = "COUNTER "; } _batchScript.Append(cqlCommand.ToString()); _batchScript.AppendLine(";"); }