I am running this query:
SELECT * FROM fedexflat where salefrom <= 9.37 AND saleto >= 9.37
Against a simple table called fedexflat that has three columns (freight, saleto, salefrom). Each column is varchar size: 255, and I am getting this error both in my ASP page, and when I run it in query analyser:
Microsoft OLE DB Provider for SQL Server error '80040e57'
Arithmetic overflow error converting numeric to data type numeric.
/partsdisplay.asp, line 291
I have searched the net, and I am STUMPED!! Please help!!
Dave
SELECT * FROM fedexflat where salefrom <= 9.37 AND saleto >= 9.37
Against a simple table called fedexflat that has three columns (freight, saleto, salefrom). Each column is varchar size: 255, and I am getting this error both in my ASP page, and when I run it in query analyser:
Microsoft OLE DB Provider for SQL Server error '80040e57'
Arithmetic overflow error converting numeric to data type numeric.
/partsdisplay.asp, line 291
I have searched the net, and I am STUMPED!! Please help!!
Dave