From: Sandro Santilli Date: Fri, 19 Mar 2004 16:35:49 +0000 (+0000) Subject: Updated AddGeometryColumn() and DropGeometryColumn() descriptions to the schema-aware... X-Git-Tag: pgis_0_8_2~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e0a1a1d8f4393a71ac1a8ff377344d983c09a5a;p=postgis Updated AddGeometryColumn() and DropGeometryColumn() descriptions to the schema-aware versions git-svn-id: http://svn.osgeo.org/postgis/trunk@489 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/postgis.xml b/doc/postgis.xml index bf2f5263c..f4a4c628a 100644 --- a/doc/postgis.xml +++ b/doc/postgis.xml @@ -1689,10 +1689,10 @@ if( geom.getType() = Geometry.POLYGON ) AddGeometryColumn(varchar, varchar, varchar, integer, varchar, integer) - Syntax: AddGeometryColumn(<db_name>, + Syntax: AddGeometryColumn(<schema_name>, <table_name>, <column_name>, <srid>, <type>, <dimension>). Adds a geometry column to an existing table of attributes. - The dbname is the name of the database instance. + The schema_name is the name of the table schema (unused for pre-schema PostgreSQL installations). The srid must be an integer value reference to an entry in the SPATIAL_REF_SYS table. The type must be an uppercase string corresponding to the geometry type, eg, 'POLYGON' @@ -1703,8 +1703,8 @@ if( geom.getType() = Geometry.POLYGON ) DropGeometryColumn(varchar, varchar, varchar) - Syntax: DropGeometryColumn(<db_name>, <table_name>, - <column_name>). Remove a geometry column from a spatial table. + Syntax: DropGeometryColumn(<schema_name>, <table_name>, + <column_name>). Remove a geometry column from a spatial table. Note that schema_name will need to match the f_schema_name field of the table's row in the geometry_columns table.