I have a table, within a MS SQL server database, with a varchar set to 8000 characters. I have written a query to return the field in a result set and print it to a web document using PHP. In Query Analyzer, after setting the result field length option to 8000, I'm able to return the full field. However, when I run the same query in PHP, where I realy want to use the query, and print the results to a web document, the field only returns 255 characters and not the full length of the field.
I added a field in my query to return the length of the field in question and it returns the correct length, however the result set only returns 255 characters of the field.
Is there a limit on the number of characters that can be returned in a query called from within PHP?
tia...mike
I added a field in my query to return the length of the field in question and it returns the correct length, however the result set only returns 255 characters of the field.
Is there a limit on the number of characters that can be returned in a query called from within PHP?
tia...mike