Changes between Version 3 and Version 4 of FdoPostGISNotes
- Timestamp:
- 09/11/07 09:15:08 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FdoPostGISNotes
v3 v4 1 = = FDO PostGIS Provider Notes ==1 = FDO PostGIS Provider Notes = 2 2 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. 3 This 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. 6 4 7 5 If you are using the PostGIS provider, please be aware of these limitations: … … 11 9 * If you add a table in !MapGuide which does not contain a primary key, no columns will show up in the properties list 12 10 * 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 13 34 14 35