You are here

public static function MigrateSourceOracle::options in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/sources/oracle.inc \MigrateSourceOracle::options()

Return an options array for Oracle sources.

Parameters

string $character_set: Character set to use in retrieving data. Defaults to 'UTF8'.

boolean $cache_counts: Indicates whether to cache counts of source records.

File

plugins/sources/oracle.inc, line 58
Define a MigrateSource class for importing from Oracle databases.

Class

MigrateSourceOracle
Implementation of MigrateSource, to handle imports from remote Oracle servers.

Code

public static function options($character_set = 'UTF8', $cache_counts = FALSE) {
  return compact('character_set', 'cache_counts');
}