21 #include "../common/Logger.h" 
   22 #include "../common/Translator.h" 
   23 #include "../dataaccess/datasource/DataSourceCapabilities.h" 
   24 #include "../dataaccess/datasource/DataSourceFactory.h" 
   25 #include "../dataaccess/datasource/DataSourceManager.h" 
   26 #include "../dataaccess/query/BinaryOpEncoder.h" 
   27 #include "../dataaccess/query/FunctionEncoder.h" 
   28 #include "../dataaccess/query/SQLDialect.h" 
   29 #include "../dataaccess/query/SQLFunctionEncoder.h" 
   30 #include "../dataaccess/query/TemplateEncoder.h" 
   31 #include "../dataaccess/query/UnaryOpEncoder.h" 
   32 #include "../dataaccess/serialization/xml/Serializer.h" 
   39 #include <boost/filesystem.hpp> 
   42   : te::plugin::Plugin(pluginInfo)
 
   62   boost::filesystem::path driverpath(m_pluginInfo.m_folder);
 
   64   boost::filesystem::path capabilitiesFile = driverpath / 
"ado-capabilities.xml";
 
   89   m_initialized = 
false;
 
A utility class to initialize and terminate TerraLib ADO driver support. 
 
static te::da::SQLDialect * sm_queryDialect
The query dialect supported by ADO driver. 
 
The basic information about a plugin. 
 
TEDATAACCESSEXPORT void Read(const std::string &dialectFileName, te::da::DataSourceCapabilities &capabilities, te::da::SQLDialect &dialect)
 
void shutdown()
This method will be called by TerraLib to shutdown plugin's functionality. 
 
te::da::DataSource * Build()
 
A class that represents the known capabilities of a specific data source, i.e. this class informs all...
 
#define TE_ADO_TEXT_DOMAIN
It contains the name of the text domain used in the translation of messages in TerraLib ADO driver im...
 
#define TE_ADO_TEXT_DOMAIN_DIR
It contains the translation catalog directory. 
 
#define TE_LOG_TRACE(msg)
Use this tag in order to log a message to a specified logger with the TRACE level. 
 
This is the factory for ADO data sources. 
 
It represents the SQL query dialect accepted by a given data source. 
 
Module(const te::plugin::PluginInfo &pluginInfo)
It creates a new C++ module. 
 
#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...
 
void startup()
This method will be called by TerraLib to startup some plugin's functionality. 
 
Implementation of the data source class for the ADO driver. 
 
#define ADO_DRIVER_IDENTIFIER
The ADO driver identifier string. 
 
static te::da::DataSourceCapabilities * sm_capabilities
The query dialect supported by ADO driver. 
 
#define TE_ADD_TEXT_DOMAIN(domain, domaindir, codeset)
It adds the given text domain located at domain-dir with the given codeset to the multilingual system...
 
static void remove(const std::string &dsType)
 
An static class with global definitions. 
 
static DataSourceManager & getInstance()
It returns a reference to the singleton instance. 
 
static void add(const std::string &dsType, FactoryFnctType f)
 
#define TR_ADO(message)
It marks a string in order to get translated. This is a special mark used in the DataAccess module of...