26 #ifndef __TERRALIB_OGR_INTERNAL_DATASOURCE_H 
   27 #define __TERRALIB_OGR_INTERNAL_DATASOURCE_H 
   31 #include "../dataaccess/datasource/DataSource.h" 
   32 #include "../dataaccess/datasource/DataSourceCapabilities.h" 
   33 #include "../dataaccess/dataset/DataSetType.h" 
   58         std::string getType() 
const;
 
   60         const std::map<std::string, std::string>& getConnectionInfo() 
const;
 
   62         void setConnectionInfo(
const std::map<std::string, std::string>& connInfo);
 
   64         std::auto_ptr<te::da::DataSourceTransactor> getTransactor();
 
   70         bool isOpened() 
const;
 
   78         void createDataSet(
te::da::DataSetType* dt, 
const std::map<std::string, std::string>& options);
 
   82         OGRDataSource* getOGRDataSource();
 
   86         void create(
const std::map<std::string, std::string>& dsInfo);
 
   88         void drop(
const std::map<std::string, std::string>& dsInfo);
 
   90         bool exists(
const std::map<std::string, std::string>& dsInfo);
 
   92         std::vector<std::string> getDataSourceNames(
const std::map<std::string, std::string>& dsInfo);
 
   94         std::vector<std::string> getEncodings(
const std::map<std::string, std::string>& dsInfo);
 
  111 #endif  // __TERRALIB_OGR_INTERNAL_DATASOURCE_H 
std::map< std::string, std::string > m_connectionInfo
Connection information. 
 
A class that represents the known capabilities of a specific data source, i.e. this class informs all...
 
#define TEOGREXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
It represents the SQL query dialect accepted by a given data source. 
 
OGRDataSource * m_ogrDS
A pointer to OGR Data Source. 
 
Configuration flags for the OGR Driver Implementation of TerraLib. 
 
static te::da::SQLDialect * sm_myDialect
OGR SQL dialect. 
 
bool m_isValid
True if this is a valid datasource. 
 
The OGR data source provider. 
 
An abstract class for data providers like a DBMS, Web Services or a regular file. ...
 
A class that models the description of a dataset. 
 
An exception class for the OGR module. 
 
te::da::DataSourceCapabilities m_capabilities
OGR capabilities. 
 
bool m_isInTransaction
Tells if there is a transaction in progress.