You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using FLocal.Core.DB;
|
|
|
|
namespace FLocal.Common.actions {
|
|
public class InsertChange : AbstractChange {
|
|
|
|
private int? id;
|
|
|
|
private Dictionary<string, AbstractFieldValue> data;
|
|
|
|
public InsertChange(ISqlObjectTableSpec tableSpec, Dictionary<string, AbstractFieldValue> data)
|
|
: base(tableSpec, from kvp in data select kvp.Value) {
|
|
this.id = null;
|
|
this.data = data;
|
|
}
|
|
|
|
public override int? getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public override void Lock(Transaction transaction) {
|
|
Config.instance.mainConnection.lockTable(transaction, this.tableSpec);
|
|
}
|
|
|
|
protected override void doApply(Transaction transaction) {
|
|
Dictionary<string, string> processedData = new Dictionary<string,string>();
|
|
foreach(KeyValuePair<string, AbstractFieldValue> kvp in this.data) {
|
|
processedData[kvp.Key] = kvp.Value.getStringRepresentation();
|
|
}
|
|
this.id = int.Parse(Config.instance.mainConnection.insert(
|
|
transaction,
|
|
this.tableSpec,
|
|
processedData
|
|
));
|
|
if(processedData.ContainsKey(this.tableSpec.idName)) {
|
|
this.id = int.Parse(processedData[this.tableSpec.idName]);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|