public function MigrateSourceSQL::getNextRow in Migrate 6.2
Same name and namespace in other branches
- 7.2 plugins/sources/sql.inc \MigrateSourceSQL::getNextRow()
Implementation of MigrateSource::getNextRow().
Return value
object
File
- plugins/
sources/ sql.inc, line 333 - Define a MigrateSource for importing from Drupal connections
Class
- MigrateSourceSQL
- Implementation of MigrateSource, to handle imports from Drupal connections.
Code
public function getNextRow() {
return $this->result
->fetchObject();
}