Re: [PHP] text field truncation with sql server

2007-07-18 Thread Zoltán Németh
2007. 07. 17, kedd keltezéssel 19.48-kor Richard Lynch ezt írta: I lied. The URL *was* a typo. http;//php.net/ another typo ;) http://php.net/ greets Zoltán Németh Sheesh. Sorry folks! On Sun, July 15, 2007 5:02 pm, Bruce Cowin wrote: Thanks Richard for pointing me in the

Re: [PHP] text field truncation with sql server

2007-07-17 Thread Richard Lynch
Probably a heredoc would be easiest for what you've got. http://php.net/ The URL is not a typo. Though your email client may mangle it... :-) On Sun, July 15, 2007 5:02 pm, Bruce Cowin wrote: Thanks Richard for pointing me in the right direction. Yes, it is mssql I'm using. And changing the

Re: [PHP] text field truncation with sql server

2007-07-17 Thread Richard Lynch
I lied. The URL *was* a typo. http;//php.net/ Sheesh. Sorry folks! On Sun, July 15, 2007 5:02 pm, Bruce Cowin wrote: Thanks Richard for pointing me in the right direction. Yes, it is mssql I'm using. And changing the mssql.textlimit and mssql.textsize in the php.ini file fixed my

Re: [PHP] text field truncation with sql server

2007-07-15 Thread Bruce Cowin
Thanks Richard for pointing me in the right direction. Yes, it is mssql I'm using. And changing the mssql.textlimit and mssql.textsize in the php.ini file fixed my problem. You suggested not using all those echo statements. What do you suggest I use instead? Thanks again! Regards,

Re: [PHP] text field truncation with sql server

2007-07-13 Thread Richard Lynch
What is the 3981st character? Does your database driver, whatever it is, which you've told us is not PDO, have any kind of limit in the buffer size of query data back/forth? What driver ARE you using? I see mssql in the code, so assume that's it, right?... Does it happen on every record at

[PHP] text field truncation with sql server

2007-07-12 Thread Bruce Cowin
I have a simple page that displays a record from the sql server database. One of the fields is a text field and keeps getting truncated at 3980 characters. I searched and saw someone had reported this as a PDO bug so I'm not using PDO anymore, but I'm still getting the truncation. Anyone