Hi,
in an mssql database a field varchar(1024) is defined, and there are rows with field contents more than 300 bytes.
When I read it under php with an mssql select statement, I get only the leftmost 255 Bytes.
Example:
$sql1 = "SELECT RequisitionDesc FROM tSL_RequisitionDesc WHERE RequisitionCode = '02/220 - RMA' AND TextModuleTypeCodeID = 1541;";
$s_query = mssql_query($sql1);
if ( $s_result = mssql_fetch_row($s_query) )...results in
.... strlen($s_result) == 255 even though the 1st row's RequisitionDesc contains "#Unterstรผtzung der Anwendungsberatung bei ... " (356 Bytes).
Does anybody know this effect? What must I do to get the full field contents? Is there any configuration to be done?
Regards and thanks: Hermann