Hi Guys,
I just made a ODBC connection from MS Access (2007) to PostGre server, however i came across some strange error "Operation must be updateable Query" for an simple Update statement. I have table called Geo it has a column Zone having values North,South,Wes t & East.
Table: Geo
Zone
North
East
West
South
i want to update these values with 1,2,3 & 4 like
Update Geo set Zone=1 where Zone='North'
It's not working showing the same error.
I have created table in postGre under a schema Public and later linked it to Access thru ODBC connection.
I just made a ODBC connection from MS Access (2007) to PostGre server, however i came across some strange error "Operation must be updateable Query" for an simple Update statement. I have table called Geo it has a column Zone having values North,South,Wes t & East.
Table: Geo
Zone
North
East
West
South
i want to update these values with 1,2,3 & 4 like
Update Geo set Zone=1 where Zone='North'
It's not working showing the same error.
I have created table in postGre under a schema Public and later linked it to Access thru ODBC connection.
Comment