Exemplo n.º 1
0
 public List <DataTable> handleDatabaseWithRegEx(string filePath)
 {
     return(DataCatchHelper.GetDbDataTableWithRegEx(filePath, Info.DataPath));
 }
Exemplo n.º 2
0
 DataTable handleDatabase(string filePath)
 {
     return(DataCatchHelper.GetDbDataTable(filePath, Info.DataPath));
 }
Exemplo n.º 3
0
 DataTable handleText(string filePath)
 {
     return(DataCatchHelper.GetFileDataTable(filePath, Info.DataPath));
 }
Exemplo n.º 4
0
 DataTable handleXml(string filePath)
 {
     return(DataCatchHelper.GetXmlDataTable(filePath, Info.DataPath));
 }
Exemplo n.º 5
0
 DataTable handleBinary(string filePath)
 {
     return(DataCatchHelper.GetBinaryDataTable(filePath, Info.Chunk));
 }