during inserting values from ASP page to SQL 2000
views:
18answers:
1
+1
A:
You can't convert strings to integers if they are not made entirely from numbers.
So, if you try to convert aaa
to an int, this will fail. If you try to convert the varchar 123
to an int, it will work.
Oded
2010-08-13 07:13:44