Iconvertible

ntombisizulu

Member
Joined
Jun 1, 2005
Messages
12
Programming Experience
1-3
i got this error [Object must implement IConvertible.] whilst running my web application. what does it mean and why am i getting it. i tried debugging but i have a feeling it is lower lying errors, if you have any idea on how to solve this please help.
i call a procedure and that saves the entered data and when executing this procedure i get this errror.
thanks
 
Chances are you have assigned an object to a variable and the object does not implement the IConvertible interface (or derive from a class that does) and therefore cannot be implicitly converted to the type of the variable. I saw someone else get this error when they assigned a byte array to a database field that was of type string or something. There is no implicit conversion from Byte() to String so when they tried to update an exception was thrown.
 
Back
Top