You are here

public static function MigrateSourceMSSQL::options in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/sources/sqlsrv.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/mssql.inc, line 57
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');
}