Install
Works with Drupal: 7.xUsing Composer to manage Drupal site dependencies
Downloads
Download tar.gz
21.85 KB
MD5: cc73db2cebc17fe740900130fa0739aa
SHA-1: 9217bfd48e95a7e58ab2366f44ffea1756c05d4b
SHA-256: b4329ca78ce77f7514d2361d94707dbc3a114aad648363b0b27afe762e5c745a
Download zip
25.75 KB
MD5: 799e3ed23d278d3267ea60618f20fe6c
SHA-1: 6b87ffe24ee6f2ecaedcdab9d67082c819df901c
SHA-256: 69f8587e6665d814107532c063e17db7eee2e51e81a712964704ff207af02b8b
Release notes
A few days after the release of Drupal 7.1/7.2, we are releasing the first stable version of the SQL Server / SQL Azure driver for Drupal.
Installation instructions
IIS and Drupal
Set up your IIS server in the configuration recommended by Drupal (using the URLRewrite module). Drupal 7 now ships with a web.config file, which should make that easy.
PHP driver for SQL Server
Install the PHP SQL Server Driver 2.0 from Microsoft.
Drupal and the SQL Server driver
Uncompress Drupal in the web root. Uncompress this driver as sites/all/modules/sqlsrv, and copy or link the sqlsrv directory found inside it in includes/databases.
Initial database set up
- Create a SQL Server database for Drupal. Both SQL Server (full edition) and SQL Server Express are supported. The database must be created using a unicode case-insensitive collation (for example the default SQL_Latin1_General_CP1_CI_AS).
- Install Drupal has you normally would, selecting
SQL Serverin the database option list. - When you are prompted for the hostname, enter the SQL Server instance, as in
LOCAL\SQLEXPRESS. If you're configuring this in settings.php, it would beLOCAL\\SQLEXPRESS - The "username" is a SQL Server "login" that you must create and map to a SQL Server user.
Changes since 7.x-1.0-rc3
- Sanitize comments after #1105848.
- #1170760: Only remove proper indexes when dropping the related objects.
- Restore the two-step PK creation. Breaks on Azure, but at least does not break on SQL Server.
- #1170760: Recreate the primary key.
- #1170760: Remove check constraints in dropFieldRelatedObjects().
- Implement additional tests for #1170760.