When I try to insert a string containing more that 300 characters it shows blank page and does not return any PHP error.
I am using ZF 1 - Zend db Adapter with MSSQL server 2012.
$db = Zend_Db_Table::getDefaultAdapter();
$insert = "insert into tbloffer (legal_restrictions) values ('more than 300 character string')";
$stmt = $db->prepare($insert);
$stmt->execute();
my database column datatype is nvarchar(max)
In Place of
Try this one