Ci sono diversi file di configurazione che devi avere impostato. /etc/odbc.ini
, /etc/odbcinst.ini
e /etc/freetds/freetds.conf
(queste posizioni sono valide per Ubuntu 12.04 e probabilmente corrette per la maggior parte dei *nix).
Dovrai installare unixodbc
e freetds
(non sono sicuro di quali siano i nomi dei pacchetti su CentOS). In Ubuntu questo sarebbe apt-get install unixodbc tdsodbc
.
Per assistenza nell'installazione di questi, guarda questa domanda Impossibile installare FreeTDS tramite Yum Package Manager
/etc/odbc.ini (questo file potrebbe essere vuoto)
# Define a connection to a Microsoft SQL server
# The Description can be whatever we want it to be.
# The Driver value must match what we have defined in /etc/odbcinst.ini
# The Database name must be the name of the database this connection will connect to.
# The ServerName is the name we defined in /etc/freetds/freetds.conf
# The TDS_Version should match what we defined in /etc/freetds/freetds.conf
[mssql]
Description = MSSQL Server
Driver = freetds
Database = XXXXXX
ServerName = MSSQL
TDS_Version = 7.1
/etc/odbcinst.ini
# Define where to find the driver for the Free TDS connections.
# Make sure you use the right driver (32-bit or 64-bit).
[freetds]
Description = MS SQL database access with Free TDS
Driver = /usr/lib/i386-linux-gnu/odbc/libtdsodbc.so
#Driver = /usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so
Setup = /usr/lib/i386-linux-gnu/odbc/libtdsS.so
UsageCount = 1
/etc/freetds/freetds.conf (o puoi trovarlo su /etc/freetds.conf)
# The basics for defining a DSN (Data Source Name)
# [data_source_name]
# host = <hostname or IP address>
# port = <port number to connect to - probably 1433>
# tds version = <TDS version to use - probably 8.0>
# Define a connection to the Microsoft SQL Server
[mssql]
host = XXXXXX
port = 1433
tds version = 7.1
Potrebbe essere necessario modificare la tds version = 7.1
riga sopra a seconda della versione di MSSQL.
Dovrai riavviare Apache dopo aver apportato queste modifiche.
Nel tuo codice PHP creerai il tuo oggetto PDO in questo modo:
$pdo = new PDO("dblib:host=mssql;dbname=$dbname", "$dbuser","$dbpwd");
Tieni presente che il tuo nome utente potrebbe dover essere nel formato:domain\username
.
Inoltre, saprai che ha funzionato se esegui phpinfo()
nella tua pagina e cerca "freetds" che mostrerà una sezione mssql con freetds elencati come la versione della libreria.