Ben bu davranışına bir açıklama bulmak (SQL Server 2008 + PHP 5.2.14) olamaz
-Bu kod parçası Tamam çalışır:
$query=' select id from News..news where id="727" ';
$conn=mssql_connect("myDDBBServer","user","password");
$idQuery=mssql_query($query);
$row=mssql_fetch_array($idQuery);
echo $row[0]
O id int yazılı sütun olduğunu söylemek zorundayım, bu yüzden kopyalamak ve sql sunucu sorgu konsolunda bu sorguyu yapıştırmak varsa, aşağıdaki hatayı alıyorum: "sütun adı '727 'geçerli değil".
I have no idea why is working via mssql_query, it seems like the php_mssql driver is removing those double quotes... I´m sure it has to do with php_mssql driver and not some other php.ini property, because if i execute that query using the php_sqlsrv driver i get the same error as through the sql server query console ("column name not valid").
Herhangi bir yardım mutluluk duyacağız.