|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-06-05 02:21 UTC] baloo at cinemasie dot com
I have installed PHP on a Windows 2000 Server with IIS 5.0. I try to access to another server with Sql Server 2000. Everything works fine, except that I can't open any database whose name includes a "-" (with the "mssql_select_db" function). I thought it could be a problem with SQLServer, but some other applications don't have any problem with those databases. PHP is configured to work with ISS with the following parameter: cgi.force_redirect = 0 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 00:00:02 2025 UTC |
$s= @mssql_connect("192.10.2.5", "bmssa", "bmssa_pwd") or die ("Serveur non joignable"); $d=@mssql_select_db("AxTebubio_30_tests", $s) or die ("Base impossible ? ouvrir"); => always gives "BASE IMPOSSIBLE A OUVRIR" ("impossible to open the database")