PHP Velho Oeste 2024

Introdução

Estas funções permitem a você acessar um banco de dados do MS SQL Server.

add a note add a note

User Contributed Notes 3 notes

up
4
rjaehnrich at gmail dot com
8 years ago
to use MSSQL-connections on Linux with PHP7 you can use PDO with PDO_DBLIB.

Install driver using this command:
sudo apt-get install php7.0-sybase

then simply connect with this:

<?php
    $dsn
= "dblib:host=" . $host . ":1433;dbname=" . $database;
   
$dblink = new PDO ($dsn, $user, $pass);
?>

I got problems when i used the hostname, so i switched to the IP of the server.

Later I got problems to insert records into MSSQL-table.
This settings helped me out:

<?php
    $dblink
->exec("SET ANSI_WARNINGS ON");
   
$dblink->exec("SET ANSI_PADDING ON");
   
$dblink->exec("SET ANSI_NULLS ON");
   
$dblink->exec("SET QUOTED_IDENTIFIER ON");
   
$dblink->exec("SET CONCAT_NULL_YIELDS_NULL ON");
?>
up
-3
yanko dot costa at gmail dot com
7 years ago
The microsoft SQLSRV driver for linux is functional.

According Microsoft, version 4.0 (for Linux):
    Ubuntu 15.04 (64-bit)
    Ubuntu 16.04 (64-bit)
    Red Hat Enterprise Linux 7 (64-bit)

(https://docs.microsoft.com/en-us/sql/connect/php/system-requirements-for-the-php-sql-driver)

Instalations notes for Linux:
(https://github.com/Microsoft/msphpsql)
up
-71
alvaro at demogracia dot com
14 years ago
SQLSRV is not exactly a "driver": it's a completely different PHP extension to access SQL Server databases and it has its own syntax and features. It's a Windows-only library developed and maintained by Microsoft and it's not related to the built-in SQL Server extension described here.

(Whatever, it's quite feature-rich and it's easy to learn.)
To Top