Re: String Size Limit?

2001-07-10 Thread ryc
Most likely your size limitation is comming from the data type used for 'notes'. Check out the documentation for the size of the text types, mediumtext may be more apropriate for you. ryan > > I'm running into an odd string size limitation. I've traced it down as far > as I can get, and I didn't

RE: String Size Limit?

2001-07-10 Thread sean . odonnell
I hit up against something like this a while ago, but I didnt have time to debug so I used a quick hack to get by. Say you are storing a text article -- | ArticleID | INT | -- |ArticleName | TEXT | -- I just cre

Re: String Size Limit?

2001-07-10 Thread Werner Stuerenburg
> I'm running into an odd string size limitation. I've traced it down as far > as I can get, and I didn't run across anything in the docs or on any > searches I've run so I figured I'd try here. The field in the database is a > TEXT type column. I'm appending to the front of the text field each ti