Changes between Version 3 and Version 4 of maestro/MaestroAPI/2.1ApiChanges
- Timestamp:
- 04/13/10 08:02:45 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
maestro/MaestroAPI/2.1ApiChanges
v3 v4 28 28 == New ServerConnectionI APIs == 29 29 30 === GetConnectionPropertyValues ===30 === !GetConnectionPropertyValues === 31 31 32 32 Implemented in both HttpServerConnection and LocalNativeConnection … … 44 44 An array (string[]) of possible input values for the given property. 45 45 46 === ExecuteLoadProcedure===46 === !ExecuteSqlQuery === 47 47 48 Implemented in ServerConnectionBase, automatically inherited by HttpServerConnection and LocalNativeConnetion 48 Description: Executes a SQL SELECT query against a given feature source 49 50 Parameters: 51 * featureSourceID: The feature source to query from 52 * sql: The SQL SELECT statement 53 54 Returns: 55 56 A !FeatureSetReader containing the query result. 57 58 Notes: 59 60 Only SQL SELECT statements can be executed, non-query statements (eg. DELETE, UPDATE, INSERT, etc) are not supported. 61 62 === !ExecuteLoadProcedure === 63 64 Implemented in !ServerConnectionBase, automatically inherited by !HttpServerConnection and !LocalNativeConnetion 49 65 50 66 Description: Executes the Load Procedure specified by the resource ID.