I'm trying to manage data in a SQL table using a VFP 9 form and I was planning to use a CursorAdapter to handle the data heavy lifting. I ran into a problem where one of the columns in the SQL table has a data type of REAL and has data that goes out several decimal places. This would be a number you might see in this column 0.00014504. The CA or for that matter a RV both see this as B(2) which is Double with a precision of 2. The problem with this is that on the numbers like above, I get 0.00 which is no good. I have tried to change the precision in the CA but it continues to give the the same result as if the precision does not have any effect. Anyone run into this before and have any thoughts? Am I missing something?
Ed
Ed