I have a postgresql database. In some tables there are columns of type money
.
I'd like to use MS Access
as a front-end.
But while linking the table in MS Access using postgres odbc driver, the columns of type money all have a value of 0. While trying to update the value an error is shown:
operator does not exist: money = double precision
The datatype in the linked table is NUMBER (FieldSize = DOUBLE)
and it cannot be changed to currency.
I do not want to change the datatype in postgres from money to numeric. (But maybe, I have to?)
Hopefully some one can help.
Thanks.