When I try to pull a number from a form and put it into a money field of my DB I get this error. The form is a text field and the text I entered is 33.00. I've tried other number and no of those work either
. Help!
INSERT INTO dbo.payments (username, payment) VALUES ('AFD', '33')
Microsoft OLE DB Provider for SQL Server error '80040e07'
Disallowed implicit conversion from data type varchar to data type money, table 'AMS.dbo.payments', column 'payment'. Use the CONVERT function to run this query.
/admin/addpayment.asp, line 56
I'm kinda still a Newb and need some help. I can post any other info needed but I need to get this working by Thur.
INSERT INTO dbo.payments (username, payment) VALUES ('AFD', '33')
Microsoft OLE DB Provider for SQL Server error '80040e07'
Disallowed implicit conversion from data type varchar to data type money, table 'AMS.dbo.payments', column 'payment'. Use the CONVERT function to run this query.
/admin/addpayment.asp, line 56
I'm kinda still a Newb and need some help. I can post any other info needed but I need to get this working by Thur.