up vote 0 down vote favorite
share [g+] share [fb]

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...

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

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|improve this answer
the data is not confined to a four letter string it may be as large as 10 digit – Utkarsh Nov 6 '09 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 '09 at 9:17
Or you can use varchar(256) :) – Aaron Digulla Nov 6 '09 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 '09 at 9:21
feedback

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

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

link|improve this answer
feedback

It's not possible to preserve zeros as numbers using OleDb, so I wrote my own class to avoid using OleDb and preserve zeros.

link|improve this answer
If his answer helped, wouldn't it be better to accept his answer? – Svish Nov 11 '09 at 18:32
feedback

Your Answer

 
or
required, but never shown

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