Here i need to store Geometry path into my table. I have tried following procedure but not getting "Geometry" datatype in PostgreSQL 9.3 version.
Step 1: Downloaded PostGIS from link http://download.osgeo.org/postgis/windows/pg93/
Step 2: Installed PostGIS in PostgreSQL 9.3 and
Step 3: Using in my query:
create table test
(
col1 text null,
col2 text null,
col3 text null,
geopath geometry not null /* Geometry datatype used */
);
ERROR: type "geometry" does not exist
Note: My geometry type can be any type, it may be circle or polygon or line or box.
psqlexecute\dxto check that it indeed is. Or useselect * from pg_extension;from your favourite console.