Driver Specific Notes
MSSQL
You may need to change some PHP ini settings. In particular, the first two settings set the text size to maximum which should get around issues with truncated BLOB/CLOB data. The third rectifies an issue with losing the seconds part of a DATETIME column.
ini_set('mssql.textsize', 2147483647);
ini_set('mssql.textlimit', 2147483647);
ini_set('mssql.datetimeconvert', 0);
We do not set these by default (anymore) because they do not apply to cases where MSSQL is being used w/ FreeTDS.
