12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Collections.Specialized;
- using System.Text;
- using FastReport.Data;
- namespace FastReport.FastQueryBuilder
- {
- internal class DataBase
- {
- private Query tableList = new Query();
- public DataConnectionBase dataBase;
- private static int CompareTable(Table x, Table y)
- {
- return x.Name.CompareTo(y.Name);
- }
- public DataBase(DataConnectionBase db)
- {
- dataBase = db;
- try
- {
- dataBase.CreateAllTables(false);
- }
- catch
- {
- }
- foreach (TableDataSource tds in dataBase.Tables)
- {
- Table tbl = new Table(tds);
- tbl.Name = tbl.Name;
- tableList.tableList.Add(tbl);
- }
- tableList.tableList.Sort(CompareTable);
- }
- public string GetQuotationChars()
- {
- return dataBase.GetQuotationChars();
- }
- public List<Table> GetTableList()
- {
- return tableList.tableList;
- }
- }
- }
|