Exemplo n.º 1
0
 public DbTask(string name, FileConnectionManager fileConnection) : this(name) {
     this.FileConnection = fileConnection;
 }
Exemplo n.º 2
0
 public static int ExecuteNonQuery(string name, FileConnectionManager fileConnection) => new SqlTask(name, fileConnection).ExecuteNonQuery();
Exemplo n.º 3
0
 public static void ExecuteReader(string name, FileConnectionManager fileConnection, Action beforeRowReadAction, Action afterRowReadAction, params Action <object>[] actions) =>
 new XmlaTask(name, fileConnection)
 {
     BeforeRowReadAction = beforeRowReadAction, AfterRowReadAction = afterRowReadAction, Actions = actions.ToList()
 }.ExecuteReader();
Exemplo n.º 4
0
 public SqlTask(string name, FileConnectionManager fileConnection) : base(name, fileConnection)
 {
 }
Exemplo n.º 5
0
 public XmlaTask(string name, FileConnectionManager fileConnection) : base(name, fileConnection)
 {
     Init();
 }