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