|
Gets a set of connection values that are used to make connections to an FDO provider that permits multiple connections.
.NET Syntax
virtual MgStringCollection GetConnectionPropertyValues(string providerName, string propertyName, string partialConnString);
|
Java Syntax
virtual MgStringCollection GetConnectionPropertyValues(String providerName, String propertyName, String partialConnString);
|
PHP Syntax
virtual MgStringCollection GetConnectionPropertyValues(string providerName, string propertyName, string partialConnString);
|
- Parameters:
-
| providerName | (String/string) The name of the Fdo feature provider. Permissible values are obtained by calling the MgFeatureService::GetFeatureProviders Method . |
| propertyName | (String/string) The name of the enumerable property for which values need to be retrieved. Connection property names are contained in the output of the MgFeatureService::GetFeatureProviders method. The value of the ConnectionProperty element's Enumerable attribute must be true. |
| partialConnString | (String/string) A partial connection string, which is sufficient to connect to a provider. |
- Returns:
- Returns an MgStringCollection or NULL, if nothing is found.
Examples (PHP)
$datastores = $featureService->GetConnectionPropertyValues("Autodesk.Oracle", "DataStore", "Service=MapGuideService;Username=MapGuideUser;Password=test;DataStore=");
- Exceptions:
-
|