I'm setting up a Recordset to an Oracle connection.
And in my VBA code I'm doing:
With rs
.AddNew
.Fields("OPENHOURS") = 4.7
.Update ' stores the new record
End With
if I set my OPENHOURS field to any value with a decimal then I get this error in MS Access: "WRITE CONFLICT"
if I set my OPENHOURS field to any value without a decimal then everything is fine.
The datatype of the oracle field is set to Double.
Any ideas?
Thanks,
Rod
And in my VBA code I'm doing:
With rs
.AddNew
.Fields("OPENHOURS") = 4.7
.Update ' stores the new record
End With
if I set my OPENHOURS field to any value with a decimal then I get this error in MS Access: "WRITE CONFLICT"
if I set my OPENHOURS field to any value without a decimal then everything is fine.
The datatype of the oracle field is set to Double.
Any ideas?
Thanks,
Rod