Discussion:
DSN for MS SQL Server Express 2005
Tomás Corrales Lemoine
2013-11-23 20:21:54 UTC
Permalink
Greetings all,

Please, I'm trying to connect to a MS SQL Server Express 2005 using PDO for
ODBC, but I need the DSN string. I tried with:

$dsn = 'odbc:DRIVER={SQL
Server};HOSTNAME=CCTPV608\SQLEXPRESS;DATABASE=db_ibripos';

but it doesn't work.

Thanks!!!

Tomas
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
m***@behnke.biz
2013-11-23 22:36:06 UTC
Permalink
Have you tried this

http://php.net/manual/de/ref.pdo-dblib.php#66917
Post by Tomás Corrales Lemoine
Greetings all,
Please, I'm trying to connect to a MS SQL Server Express 2005 using PDO for
$dsn = 'odbc:DRIVER={SQL
Server};HOSTNAME=CCTPV608\SQLEXPRESS;DATABASE=db_ibripos';
but it doesn't work.
Thanks!!!
Tomas
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
Marco Behnke
Dipl. Informatiker (FH), SAE Audio Engineer Diploma
Zend Certified Engineer PHP 5.3

Tel.: 0174 / 9722336
e-Mail: ***@behnke.biz

Softwaretechnik Behnke
Heinrich-Heine-Str. 7D
21218 Seevetal

http://www.behnke.biz
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Tomás Corrales Lemoine
2013-11-24 03:03:11 UTC
Permalink
Thanks, Marco. I found it:

$dsn = 'odbc:Driver=SQL Server;Server= CCTPV608\SQLEXPRESS;Database=db_ibripos';

Tomas


-----Mensaje original-----
De: ***@behnke.biz [mailto:***@behnke.biz]
Enviado el: Sábado, 23 de Noviembre de 2013 5:36 pm
Para: php-***@lists.php.net; Tomás Corrales Lemoine
Asunto: Re: [PHP] DSN for MS SQL Server Express 2005

Have you tried this

http://php.net/manual/de/ref.pdo-dblib.php#66917
Post by Tomás Corrales Lemoine
Greetings all,
Please, I'm trying to connect to a MS SQL Server Express 2005 using
$dsn = 'odbc:DRIVER={SQL
Server};HOSTNAME=CCTPV608\SQLEXPRESS;DATABASE=db_ibripos';
but it doesn't work.
Thanks!!!
Tomas
--
http://www.php.net/unsub.php
--
Marco Behnke
Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5.3

Tel.: 0174 / 9722336
e-Mail: ***@behnke.biz

Softwaretechnik Behnke
Heinrich-Heine-Str. 7D
21218 Seevetal

http://www.behnke.biz

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Loading...