vote up 0 vote down star

Hi,

I'm needing to import an Excel spreadsheet into my program and have the following code:

string connectionString = String.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=""Excel 8.0;IMEX=1;HDR=NO;""", MyExcelFile.xls);

command.CommandText = "SELECT * FROM [Sheet1$]";

(Note, code above isn't real code but should let you see what I'm doing)

I'm getting the file imported, only problem is any columns in the Excel sheet which are over 255 characters are being truncated.

Is there any way around this happening?

I read somewhere that if you make sure there is a long line of text in the column within the first 8 rows, then it will be treated as a memo field and therefore not truncated but that didn't seem to work.

Any ideas?

Graeme

flag

56% accept rate

3 Answers

vote up 1 vote down check

Probably your problem has an easier solution, but as a last resort, try to save your Excel file as a CSV text file, then process it using the regular file and string manipulation classes instead of the JET engine.

link|flag
Ended up doing it this way - now I open the Excel file through C#, save it to CSV and then parse that. Thanks all – Graeme Oct 5 at 13:28
vote up 0 vote down

Bumped into this one a few times. Fortunatly there's a registry hack to fix, described on MSDN here: http://support.microsoft.com/kb/189897

Effectively, Excel only looks at the first eight rows of data to determine how long columns should be. 255 is the default if the length is 255 chars or less. The MSDN article I've referenced above explains how to add a registry key "TypeGuessRows" that tells Excel how many rows to scan to determine column lengths.

link|flag
Yeah, this is the thing I was meaning in my original post - checked my registry and the TypeGuessRows value is 8. I intentionally put in a value 500 chars long in row 2 of each column which might have large data but this didn't seem to make any difference... – Graeme Oct 5 at 10:55
vote up 0 vote down

It is usually best to import into an existing table. It is not too difficult to create a suitable table via code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.