public static function MigrateSourceMSSQL::options in Migrate 7.2
Same name and namespace in other branches
- 6.2 plugins/sources/mssql.inc \MigrateSourceMSSQL::options()
Return an options array for MS SQL sources.
Parameters
int $batch_size: Number of rows to pull at once (defaults to 500).
boolean $cache_counts: Indicates whether to cache counts of source records.
File
- plugins/
sources/ sqlsrv.inc, line 58 - Define a MigrateSource for importing from Microsoft SQL Server databases.
Class
- MigrateSourceMSSQL
- Implementation of MigrateSource, to handle imports from remote MS SQL Server db servers.
Code
public static function options($batch_size, $cache_counts) {
return compact('batch_size', 'cache_counts');
}