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