Changes between Version 3 and Version 4 of maestro/MaestroAPI/2.1ApiChanges


Ignore:
Timestamp:
Apr 13, 2010, 8:02:45 AM (14 years ago)
Author:
jng
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • maestro/MaestroAPI/2.1ApiChanges

    v3 v4  
    2828== New ServerConnectionI APIs ==
    2929
    30 === GetConnectionPropertyValues ===
     30=== !GetConnectionPropertyValues ===
    3131
    3232Implemented in both HttpServerConnection and LocalNativeConnection
     
    4444An array (string[]) of possible input values for the given property.
    4545
    46 === ExecuteLoadProcedure ===
     46=== !ExecuteSqlQuery ===
    4747
    48 Implemented in ServerConnectionBase, automatically inherited by HttpServerConnection and LocalNativeConnetion
     48Description: Executes a SQL SELECT query against a given feature source
     49
     50Parameters:
     51 * featureSourceID: The feature source to query from
     52 * sql: The SQL SELECT statement
     53
     54Returns:
     55
     56A !FeatureSetReader containing the query result.
     57
     58Notes:
     59
     60Only SQL SELECT statements can be executed, non-query statements (eg. DELETE, UPDATE, INSERT, etc) are not supported.
     61
     62=== !ExecuteLoadProcedure ===
     63
     64Implemented in !ServerConnectionBase, automatically inherited by !HttpServerConnection and !LocalNativeConnetion
    4965
    5066Description: Executes the Load Procedure specified by the resource ID.