Problem: sql = select address from mytable were name like 'T%'
returns address ok except where the address is like 'Cr James & Dennis Street'. This value is returned truncated to 'Cr James'
My database is a mssql server. I use the PHP ODBC driver with the following connection string:
$db = odbc_pconnect("Driver={SQL Server Native Client 10.0};
Server=" . $SERVER . ";Database=". $Database. ";", $UID, $PWD);