main
1using System;
2using System.Collections.Generic;
3using System.Data;
4
5namespace gorilla.migrations.data
6{
7 public interface DatabaseCommand : IDisposable
8 {
9 IEnumerable<DataRow> run(string sql);
10 void run(SqlFile sql);
11 }
12}