I have something like this...
Set rs = ....
rs.Addnew
...
rs.price = 48 --->the type of price field in SQL is DECIMAL(18,4)
...
rs.Update
Just after the update I look at the new row in SQL and in the price
column the value now is 480000.0000.
Why is it adding 4 zeroes in the integer part?