Quantcast
Channel: Excel Data Reader - Read Excel files in .NET
Viewing all 448 articles
Browse latest View live

Reviewed: 2.1.2.0 (Haz 08, 2017)

$
0
0
Rated 4 Stars (out of 5) - asdasdasdasd asd asd

Created Unassigned: Error for Excel Data Reader [14122]

$
0
0
I am doing a project in C# and I have downloaded excel data reader from codeplex and added it to my project reference. There is no error in naamespace 'using excel;' but 'm getting error where I have written
```
```
IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);
```
```
The errors are quoted below:
> The type or namespace name 'ExcelDataReader' could not be found (are you missing a using directive or an assembly reference?)
> The name 'ExcelReaderFactory' does not exist in the current context

How to deal with these errors?

Created Unassigned: Exceldatareader is not supporting .XLSB file [14123]

$
0
0
Error message "Invalid Signature " throwing up when tried to read .xlsb file. Could you please help me out to for any approach which can be used to read data from .xlsb file using exceldatareader.

Commented Unassigned: Exceldatareader is not supporting .XLSB file [14123]

$
0
0
Error message "Invalid Signature " throwing up when tried to read .xlsb file. Could you please help me out to for any approach which can be used to read data from .xlsb file using exceldatareader.
Comments: ** Comment from web user: PrashanthJain **

How to read .xlsb file using Exceldatareader

New Post: Error reading Excel file

$
0
0
I'm using ExcelDataReader to read my excel file. But when I usu IsFirstRowAsColumnNames and AsDataSet() does not work.

erro message: IExcelDataReader does note contain a definition for 'IsFirstRowAsColumnNames' and no extension method 'IsFirstRowAsColumnNames' accepting a first argument of type 'IExcelDataReader ' could be found.

erro message: IExcelDataReader does note contain a definition for 'AsDataSet' and no extension method 'AsDataSet' accepting a first argument of type 'IExcelDataReader ' could be found.
 FileStream stream = File.Open(filePath, FileMode.Open, FileAccess.Read);
            IExcelDataReader excelReader;
            if (filePath.Contains(".xlsx"))
            {
                excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);
            } 
            else
            {
                excelReader = ExcelReaderFactory.CreateBinaryReader(stream);
            } 

            excelReader.IsFirstRowAsColumnNames = true;
            DataSet result = excelReader.AsDataSet();

            foreach (DataRow item in result.Tables[0].Rows)
            {
                item[1].ToString();
            }

Created Unassigned: File permissions required by ExcelDataReader [14140]

$
0
0
I am have issues using the ExcelDataReader from a webservice. I get an access to the path is denied. Is this a folder permission's error or a file access error?

Does ExcelDataReader require full access permissions to do it's work opening and reading an excel file?

Thanks,
Ed

Created Unassigned: cannot find central directory [14144]

$
0
0
I m facing an issues using this library :

I generated the excel using Table2Jquery Plugin, the file path is correct and tried with both .xls and .xlsx but
an unable to read the excel .

Please help my stuck since last two days.

Reviewed: Latest Source Code (Nov 18, 2017)

$
0
0
Rated 4 Stars (out of 5) - i haven't tried yet

Viewing all 448 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>