[mapserver-commits] r8232 - trunk/docs/input/vector
svn at osgeo.org
svn at osgeo.org
Tue Dec 9 21:26:54 EST 2008
Author: hobu
Date: 2008-12-09 21:26:54 -0500 (Tue, 09 Dec 2008)
New Revision: 8232
Added:
trunk/docs/input/vector/oracle.txt
Removed:
trunk/docs/input/vector/oracle_spatial.txt
Modified:
trunk/docs/input/vector/index.txt
Log:
rename
Modified: trunk/docs/input/vector/index.txt
===================================================================
--- trunk/docs/input/vector/index.txt 2008-12-10 02:21:50 UTC (rev 8231)
+++ trunk/docs/input/vector/index.txt 2008-12-10 02:26:54 UTC (rev 8232)
@@ -67,7 +67,7 @@
pgeo
inline
kml
- oracle_spatial
+ oracle
mysql
ntf
sdts
Copied: trunk/docs/input/vector/oracle.txt (from rev 8229, trunk/docs/input/vector/oracle_spatial.txt)
===================================================================
--- trunk/docs/input/vector/oracle.txt (rev 0)
+++ trunk/docs/input/vector/oracle.txt 2008-12-10 02:26:54 UTC (rev 8232)
@@ -0,0 +1,62 @@
+.. _oci:
+
+*****************************************************************************
+ Oracle Spatial
+*****************************************************************************
+
+MapServer can support Oracle Spatial through OGR. With this method, OGR must
+be compiled with Oracle Spatial support and MapServer must be compiled to use
+OGR. In addition, MapServer also supports Oracle Spatial natively.
+
+
+Map file example using OGR Support
+==================================
+
+::
+
+ LAYER
+ ...
+ CONNECTION "OCI:user/pwd at service"
+ CONNECTIONTYPE OGR
+ DATA "Tablename"
+ ...
+ END
+
+Example:
+
+::
+
+ LAYER
+ ...
+ NAME "Ottawa"
+ CONNECTIONTYPE OGR
+ CONNECTION "OCI:jeff/blah at ora_cities"
+ DATA "CITIES"
+ TYPE POINT
+ ...
+ END
+
+Map file example Using Native Support
+=====================================
+
+::
+
+ LAYER
+ ...
+ CONNECTIONTYPE oraclespatial
+ CONNECTION "user/pwd at service"
+ DATA "GEOMETRY FROM tablename"
+ ...
+ END
+
+Example using Oracle 10g:
+
+::
+
+ LAYER
+ ...
+ CONNECTIONTYPE oraclespatial
+ CONNECTION "jeff/pass at dmsg"
+ DATA "ORA_GEOMETRY FROM (SELECT ORA_GEOMETRY FROM PARK)"
+ ...
+ END
\ No newline at end of file
Deleted: trunk/docs/input/vector/oracle_spatial.txt
===================================================================
--- trunk/docs/input/vector/oracle_spatial.txt 2008-12-10 02:21:50 UTC (rev 8231)
+++ trunk/docs/input/vector/oracle_spatial.txt 2008-12-10 02:26:54 UTC (rev 8232)
@@ -1,62 +0,0 @@
-.. _oci:
-
-*****************************************************************************
- Oracle Spatial
-*****************************************************************************
-
-MapServer can support Oracle Spatial through OGR. With this method, OGR must
-be compiled with Oracle Spatial support and MapServer must be compiled to use
-OGR. In addition, MapServer also supports Oracle Spatial natively.
-
-
-Map file example using OGR Support
-==================================
-
-::
-
- LAYER
- ...
- CONNECTION "OCI:user/pwd at service"
- CONNECTIONTYPE OGR
- DATA "Tablename"
- ...
- END
-
-Example:
-
-::
-
- LAYER
- ...
- NAME "Ottawa"
- CONNECTIONTYPE OGR
- CONNECTION "OCI:jeff/blah at ora_cities"
- DATA "CITIES"
- TYPE POINT
- ...
- END
-
-Map file example Using Native Support
-=====================================
-
-::
-
- LAYER
- ...
- CONNECTIONTYPE oraclespatial
- CONNECTION "user/pwd at service"
- DATA "GEOMETRY FROM tablename"
- ...
- END
-
-Example using Oracle 10g:
-
-::
-
- LAYER
- ...
- CONNECTIONTYPE oraclespatial
- CONNECTION "jeff/pass at dmsg"
- DATA "ORA_GEOMETRY FROM (SELECT ORA_GEOMETRY FROM PARK)"
- ...
- END
\ No newline at end of file
More information about the mapserver-commits
mailing list