Skip to content
Snippets Groups Projects
Select Git revision
  • 7.x-2.6
  • 4.2.x default
  • 3243983-using-9.3.x-does
  • 4.3.x
  • 4.2.x-insert-update
  • 4.2.x-deprecated_query
  • 7.x-3.x
  • 7.x-2.x
  • 3.1.x
  • 4.0.x
  • 4.1.x
  • 3.0.x
  • 8.x-2.x
  • 8.x-1.x
  • 7.x-1.x
  • previous/4.2.x/2021-10-20
  • 4.2.1
  • 4.2.0
  • 4.1.3
  • 7.x-2.7
  • 4.1.2
  • 3.0.2
  • 4.0.3
  • 3.1.3
  • 4.0.2
  • 3.1.2
  • 8.x-2.17
  • 8.x-2.16
  • 4.0.1
  • 3.1.1
  • 3.0.1
  • 4.1.1
  • 4.0.0
  • 4.1.0
34 results

sqlsrv-3243983

  • Clone with SSH
  • Clone with HTTPS
  • Forked from project / sqlsrv
    194 commits behind, 121 commits ahead of the upstream repository.
    # SQL Server driver for Drupal 7
    
    See http://drupal.org/project/sqlsrv for installation instructions.
    
    System Requirements
    
    ODBC 11 (https://www.microsoft.com/en-us/download/details.aspx?id=36434)
    Wincache >= 1.3.7.4 (http://sourceforge.net/projects/wincache/)
    PDO >= 3.2.0.0 (http://www.microsoft.com/en-us/download/details.aspx?id=20098)
    PHP >= 5.4
    MS SQL Server >= 2012
    
    # WincacheDrupal Dependency
    
    The driver needs the Wincache PHP extension.
    
    To properly leverage performance gains of the driver, you need to run it
    in combination with the WincacheDrupal module:
    
    https://www.drupal.org/project/wincachedrupal
    
    Proper setup of the WincacheDrupal module is not trivial, and requires to manually
    modify the settings.php file.
    
    Se the README.txt in the WincacheDrupal module. The *important* lines are:
    
    // Register the new cache backend
    $conf['cache_backends'][] = 'sites/all/modules/wincachedrupal/drupal_win_cache.inc';
    // This is the cache binary of the SQL Server driver
    $conf['cache_class_fastcache'] = 'DrupalWinCache';
    // We rely on memory locks to make this work
    $conf['lock_inc'] = 'sites/all/modules/wincachedrupal/wincache-lock.inc';
    
    If this is not properly setup, the SQL Server Driver will detect the situation
    and disable the custom caching backend.