コード例 #1
0
ファイル: ExportData.cs プロジェクト: Data-Online/OLR
 public ExportDataToCSV(BaseTable tbl, WhereClause wc, OrderBy orderBy, String header)
     : base(header)
 {
     data = new DataForExport(tbl, wc, orderBy, null);
 }
コード例 #2
0
ファイル: ExportData.cs プロジェクト: Data-Online/OLR
        }                               //don't use this one!

        public ExportDataToExcel(BaseTable tbl, WhereClause wc, OrderBy orderBy)
            : base()
        {
            data = new DataForExport(tbl, wc, orderBy, null);
        }
コード例 #3
0
ファイル: ExportData.cs プロジェクト: Data-Online/OLR
 public ExportDataToCSV(BaseTable tbl, WhereClause wc, OrderBy orderBy, BaseColumn[] columns, String header)
     : base(header)
 {
     data = new DataForExport(tbl, wc, orderBy, columns);
 }