21 #include "../common/Logger.h" 
   22 #include "../common/PlatformUtils.h" 
   23 #include "../common/Translator.h" 
   24 #include "../dataaccess/datasource/DataSourceCapabilities.h" 
   25 #include "../dataaccess/datasource/DataSourceFactory.h" 
   26 #include "../dataaccess/datasource/DataSourceManager.h" 
   27 #include "../dataaccess/query/BinaryOpEncoder.h" 
   28 #include "../dataaccess/query/FunctionEncoder.h" 
   29 #include "../dataaccess/query/SQLDialect.h" 
   30 #include "../dataaccess/query/SQLFunctionEncoder.h" 
   31 #include "../dataaccess/query/TemplateEncoder.h" 
   32 #include "../dataaccess/query/UnaryOpEncoder.h" 
   33 #include "../dataaccess/serialization/xml/Serializer.h" 
   40 #include <boost/filesystem.hpp> 
   43   : te::plugin::Plugin(pluginInfo)
 
   85   m_initialized = 
false;
 
#define TE_LOG_TRACE(msg)
Use this tag in order to log a message to a specified logger with the TRACE level. 
 
static te::da::DataSourceCapabilities * sm_capabilities
The query dialect supported by ADO driver. 
 
#define ADO_DRIVER_IDENTIFIER
The ADO driver identifier string. 
 
TECOMMONEXPORT std::string FindInTerraLibPath(const std::string &p)
Returns the path relative to a directory or file in the context of TerraLib. 
 
void shutdown()
This method will be called by TerraLib to shutdown plugin's functionality. 
 
It represents the SQL query dialect accepted by a given data source. 
 
A class that represents the known capabilities of a specific data source, i.e. this class informs all...
 
#define TE_TR(message)
It marks a string in order to get translated. 
 
void startup()
This method will be called by TerraLib to startup some plugin's functionality. 
 
TEDATAACCESSEXPORT void Read(const std::string &dialectFileName, te::da::DataSourceCapabilities &capabilities, te::da::SQLDialect &dialect)
 
A utility class to initialize and terminate TerraLib ADO driver support. 
 
#define PLUGIN_CALL_BACK_IMPL(PLUGIN_CLASS_NAME)
This macro should be used by C++ plugins in order to declare the exportable/callable DLL function...
 
This is the factory for ADO data sources. 
 
static DataSourceManager & getInstance()
It returns a reference to the singleton instance. 
 
te::da::DataSource * Build()
 
static te::da::SQLDialect * sm_queryDialect
The query dialect supported by ADO driver. 
 
Implementation of the data source class for the ADO driver. 
 
static void add(const std::string &dsType, FactoryFnctType f)
 
The basic information about a plugin. 
 
static void remove(const std::string &dsType)
 
Module(const te::plugin::PluginInfo &pluginInfo)
It creates a new C++ module. 
 
An static class with global definitions.