11 std::cout <<
"The informed dataset is NULL!" << std::endl;
20 std::cout <<
"DATASET: " << datasetName;
23 std::cout << std::endl <<
"ITEM NUMBER: " << item++ <<
" =======================" << std::endl;
30 std::cout << std::endl;
virtual bool moveNext()=0
It moves the internal pointer to the next item of the collection.
Examples on how to access/manipulate DataSources in TerraLib.
virtual std::string getAsString(std::size_t i, int precision=0) const
Method for retrieving a data value as a string plain representation.
A dataset is the unit of information manipulated by the data access module of TerraLib.
virtual bool moveBeforeFirst()=0
It moves the internal pointer to a position before the first item in the collection.
virtual bool isNull(std::size_t i) const =0
It checks if the attribute value is NULL.
virtual std::size_t getNumProperties() const =0
It returns the number of properties that composes an item of the dataset.
virtual std::string getPropertyName(std::size_t i) const =0
It returns the property name at position pos.
void PrintDataSet(std::string datasetName, te::da::DataSet *dataset)
It prints the data in a given dataset.