26 #ifndef __TERRALIB_DATAACCESS_INTERNAL_SQLDIALECT_H    27 #define __TERRALIB_DATAACCESS_INTERNAL_SQLDIALECT_H    30 #include "../Config.h"    37 #include <boost/noncopyable.hpp>    44     class SQLFunctionEncoder;
    75         void insert(
const std::string& funcName,
    92         std::vector<std::string> getRegisteredNames() 
const;
   102 #endif  // __TERRALIB_DATAACCESS_INTERNAL_SQLDIALECT_H A base class for encoders of SQL function expressions. 
 
It represents the SQL query dialect accepted by a given data source. 
 
SQLDialect()
Default constructor. 
 
mydialect insert("+", new te::da::BinaryOpEncoder("+"))
 
std::map< std::string, SQLFunctionEncoder * > m_regFunctions
A map from the TerraLib general name to a given SQL formatter. 
 
#define TEDATAACCESSEXPORT
You can use this macro in order to export/import classes and functions from this module.