Changes between Version 3 and Version 4 of FdoPostGISNotes


Ignore:
Timestamp:
Sep 11, 2007, 9:15:08 AM (17 years ago)
Author:
jbirch
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FdoPostGISNotes

    v3 v4  
    1 == FDO PostGIS Provider Notes ==
     1= FDO PostGIS Provider Notes =
    22
    3 This provider is a "work in progress"
    4 
    5 This page is used to track relevent items during development, and will eventually turn into a usage notes page as the provider matures.
     3This provider is a "work in progress", and this page is used to track relevent items during development, and will eventually turn into a usage notes page as the provider matures.
    64
    75If you are using the PostGIS provider, please be aware of these limitations:
     
    119 * If you add a table in !MapGuide which does not contain a primary key, no columns will show up in the properties list
    1210 * You need to run VACUUM ANALYSE on your spatial tables regularly if you want them to work well
     11
     12== Installation ==
     13
     14 * Copy the three DLL files into your fdo/bin directory
     15 * Add the following to your providers.xml file:
     16
     17{{{
     18
     19  <FeatureProvider>
     20    <Name>OSGeo.PostGIS.3.2</Name>
     21    <DisplayName>OSGeo FDO Provider for PostGIS</DisplayName>
     22    <Description>FDO Provider for PostGIS</Description>
     23    <IsManaged>False</IsManaged>
     24    <Version>3.2.0.0</Version>
     25    <FeatureDataObjectsVersion>3.2.0.0</FeatureDataObjectsVersion>
     26    <LibraryPath>.\PostGISProvider.dll</LibraryPath>
     27  </FeatureProvider>
     28
     29}}}
     30
     31 * Ensure that your computer has a version of the Postgresql/bin directory at the beginning of the SYSTEM part of the PATH environment variable, especially for server installations like MapGuide
     32
     33 * Reboot your computer
    1334
    1435