SQLServer as a System Database

From DreamFactory
Jump to: navigation, search
DreamFactoryInstallationDatabasesSQLServer as a System Database

Notes

When connecting to Azure SQL, you'll need to include the hostname in the user credentials (e.g. username@hostname, rather than just username).

New Linux Instructions

Beginning in 2016, Microsoft made the official sqlsrv driver available for Linux. If you are using Ubuntu 16.04 or later, Debian 8 or later, RHEL7/CentOS7 or later you can install this driver. This is highly preferred over the DBLIB/FreeTDS driver (php-sybase.)

Links

Drivers

Windows

Note: Starting in DreamFactory 2.3, drivers and extensions required for PHP 7 will need to be used, as reflected in these instructions.

  • Download and install Microsoft ODBC Driver 11 for SQL Server (if not already installed). Currently this is available here. In 32-bit environments, install the x86 package. In 64-bit environments, install the x64 package.
  • Download and install the appropriate SQL Server Native Client (if not already installed and SQL Server is not hosted on the same machine as DreamFactory). In 32-bit environments, install the x86 package. In 64-bit environments, install the x64 package. Currently the Microsoft SQL Server 2012 Native Client is available here, and the Microsoft SQL Server 2008 R2 Native Client is available here.
  • DreamFactory uses PHP PDO drivers for DB connections. Full documentation on PDO_SQLSRV is available here. You will need to download and extract the Microsoft Drivers for PHP for SQL Server. Currently these are available here. Be sure to download BOTH x86 zip files
  • Copy the DLLs for your version of PHP into your PHP's extensions directory. E.g., for PHP 7, the DLLs are php_pdo_sqlsrv_7_ts.dll and php_sqlsrv_7_ts.dll (which were extracted from the download in the third step). (Rare case: if you are integrating with IIS as your web server, use the non-thread-safe DLLs instead (php_pdo_sqlsrv_7_nts.dll and php_sqlsrv_7_nts.dll).)
  • Enable the copied DLLs in your php.ini file. Using the example DLLs from step #4, you would add the following lines to C:\Bitnami\dreamfactory-2.3.0-1\php\php.ini and save:
    • extension=php_pdo_sqlsrv_7_ts.dll
    • extension=php_sqlsrv_7_ts.dll


Note: If you are using DreamFactory 2.1.0-4 or earlier, you will require drivers and extensions for PHP 5.5 (see below).

  • Enable the copied DLLs in your php.ini file. Using the example DLLs from step #4, you would add the following lines to C:\Bitnami\dreamfactory-2.1.0-4\php\php.ini and save:
    • extension=php_pdo_sqlsrv_55_ts.dll
    • extension=php_sqlsrv_55_ts.dll
  • Restart your web server to apply these PHP configuration changes.

Linux

Install SQLSRV

See the above note: #New_Linux_Instructions You definitely want to install SQLSRV over this DBLIB/FreeTDS Driver, unless your platform isn't supported.

Install DBLIB/FreeTDS

  • In your package manager, install the PHP Sybase package.
  • Ubuntu/Debian example:
    $ sudo apt-get install php5-sybase
  • No other configuration is necessary, unless you intend to use Microsoft SQL Server as your DreamFactory system database.

Using Microsoft SQL Server as the system database with DBLIB/FreeTDS

NOTE: These changes only apply if you are using the dblib/freetds driver to connect to SQL Server. Now that Microsoft has made the sqlsrv driver available on Linux, Mac, and Windows, we highly recommend using it rather than dblib. These instructions are not necessary if you use sqlsrv.

If you intend to use Microsoft SQL Server as the DreamFactory system database, you will need to make a couple of FreeTDS configuration changes. First, locate your freetds.conf file. In a default Debian/Ubuntu/Mint install, this file is in /etc/freetds/freetds.conf. You'll be editing the [global] section of the file. Here's what the default looks like:

[global]
        # TDS protocol version
;       tds version = 4.2
 
        # Whether to write a TDSDUMP file for diagnostic purposes
        # (setting this to /tmp is insecure on a multi-user system)
;       dump file = /tmp/freetds.log
;       debug flags = 0xffff
 
        # Command and connection timeouts
;       timeout = 10
;       connect timeout = 10
 
        # If you get out-of-memory errors, it may mean that your client
        # is trying to allocate a huge buffer for a TEXT field.  
        # Try setting 'text size' to a more reasonable limit 
        text size = 64512

You need to edit/add values for the tds version, text size, and client charset. If any of these lines start with a semi-colon (;) it will need to be removed.

[global]
        tds version = 7.2
 
        text size = 20971520
 
        client charset = UTF-8


Next you will need to set up a locales.conf file. There is an example one included in the freetds examples. Copy it to /etc/freetds/

sudo cp /usr/share/doc/freetds-common/examples/locales.conf /etc/freetds/

Then you need to edit this file with date formatting that matches that of your DreamFactory configuration. Since I use the default DreamFactory configuration, my changes to this file look like this:

[default]
   date format = %Y-%m-%d %H:%M:%S.%z

Last step: you need to restart your php processing service (if you're using one, such as php5-fpm) and your web server process (nginx or apache2.)

Now you can being using Microsoft SQL Server as your system database.