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