I'm running Natty:
Attempting to get pgAdmin III running. So I went to the pgAdmin download section for Ubuntu... but did not see Natty instructions.
So I downloaded the Natty pgAdmin III .deb from Launchpad
This fired up Ubuntu's Software Center. I installed. Everything worked.
I opened up pgAdmin III and connected to my local postGIS database successfully.
Now! I'm following along in the text PostGIS in Action and it tells me to execute:
SELECT postgis_full_version();
This of course gives the error, as per title:
ERROR: function postgis_full_version() does not exist
LINE 1: SELECT postgis_full_version();
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
********** Error **********
SQL state: 42883
Character: 8
Update: Furthermore, I ran the exact query in phpPgAdmin and got:
SQL error:
ERROR: function postgis_full_version() does not exist
LINE 1: SELECT postgis_full_version();
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
In statement:
SELECT postgis_full_version();
This is why I've placed this in the Ubuntu SE - Similar results from phpPgAdmin and pgAdmin III suggest it's not an issue with the respective GUI, but rather...the OS?
Scoured Google, can't seem to find anything related...
Thanks in advance.