vote up 0 vote down star

I have a csv file from which I have to populate different tables in database I am using Microsoft.Jet.OleDb.4.0 to convert csv file to data table from where I proceed forward

the problem is when I do this a value such as "0261" is stored as 261, the leading zero is dropped, is there a way to prevent it???

Thanks in advance...

flag

3 Answers

vote up 0 vote down

If you store the value as a number, then there is no way to prevent it. All you can do is format the number in a report with leading zeros.

Another option is to store the number as four letter string (char(4)).

link|flag
the data is not confined to a four letter string it may be as large as 10 digit – Utkarsh Nov 6 at 8:59
In that case, there is nothing you can do. Numbers in a database are always stored without leading zeros. – Aaron Digulla Nov 6 at 9:17
Or you can use varchar(256) :) – Aaron Digulla Nov 6 at 9:18
I found a solution just now I enclosed the number with double quotes after that it preserved 0s as it is now a string but the problem is it should be done where csv is genereated on which I dont have any control :( – Utkarsh Nov 6 at 9:21
vote up 0 vote down check

Didn't find answer to preserve zeros as number.....I think thats not possible but asked the team generating csv to save the value as string.

Thanks for your response Aaron it helped.

link|flag
If his answer helped, wouldn't it be better to accept his answer? – Svish Nov 11 at 18:32
I used other ways to find my way through... – Utkarsh Nov 27 at 10:31
vote up 1 vote down

Try this site. http://kbcsv.codeplex.com/.

This will be easier to use and will give you your datatable.

link|flag

Your Answer

Get an OpenID
or

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