Ejemplo n.º 1
0
 public DataTable GetTableData(DbTable table, DbConnectionInfo connectionInfo)
 {
     var sql = $"Select * from {table.Name}";
     var qm = new QueryModel();
     var result = qm.Execute(sql, connectionInfo);
     return result.DataTable ;
 }
Ejemplo n.º 2
0
 public DbTableEventArgs(DbTable dbTable)
 {
     Table = dbTable;
 }
Ejemplo n.º 3
0
 public DataTable GetTableData(DbTable table, DbConnectionInfo connectionInfo)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 public QueryResult GetTableData(DbTable table, DbConnectionInfo connectionInfo)
 {
       var sql = $"Select * from {table.Name}";
       return Query.Execute(sql, connectionInfo);
   }