Plz Provide C# Code for ds Problem:
I hv one table in Ms-access
Datbase name : sac.mdb
Table name : Wavelength
Structure of wavelength table:
***********************************************
ID wavelength P1_Ref P2_Ref
1 325 0.01234 0.02317
2 326 0.00123 0.07612
- --- ------- -------
- --- ------- -------
752 1075 0.07654 0.001543
***********************************************
This is the structure of my wavelength table....
From Wavelength 325 to 1075....
and i have text File with structure:
********************************************
wavelength p3_Ref
325 0.00012
326 0.00123
327 0.00134
--- -------
--- -------
1075 0.00654
********************************************
Now i need C# Code to Import this text file in to Wavelength table and give Output as follows:
************************************************************
ID wavelength P1_Ref P2_Ref P3_Ref
1 325 0.01234 0.02317 0.00012
2 326 0.00123 0.07612 0.00123
- --- ------- ------- ------
- --- ------- ------- ------
752 1075 0.07654 0.001543 0.00654
************************************************************
Plz Help me, Try to solve my Problem as soon as possible...
Its Urgent...
|