Am getting the 'conversion overflows' error while running the stored procedure. In stored procedure one column is having 30 decimal places. Due to this am getting this error. But, i have only read only access to stored procedure. i cant modify it. So i need to solve this problem in code.
Please help me......
In data adapter filling am getting this error.
Please help me......
Code:
Dim objCMD As New SqlCommand Dim objDA As New SqlDataAdapter Dim objDS As DataSet With objCMD .Connection = sqlCon .Parameters.AddRange(sqlParam) .CommandType = CommandType.StoredProcedure .CommandText = "stored procedure name" End With objDA.SelectCommand = objCMD objDS = New DataSet objDA.Fill(objDS)