Hi all,
I am reading excel sheet values from
jdbc.
I read the data in the columns using the command
ResultSet.getString(1);
this returns me the data correctly when ever I keep uniform
data in the excel sheet
like either numbers or characters.
But it is returning me null when data is mixed with numbers and characters alternatively.
for example if the first column of my excel sheet has the data
Cols(1)
abc
222
222
fga
243
266
Its giving error as [Microsoft][ODBC Excel Driver] Numeric field overflow.
Please please help me if any one knows the solutions.
My
java code:
-Vishwanath