• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

SQL 2000 and ASP - help!!!!

acejj26

Senior member
I just ported all my data from an Access DB to SQL 2000 DB. Most things worked alright except now when I try to retrieve data that is more than 255 characters, it gets truncated when it didn't do so when I was retrieving data from the Access database. Does anyone know a workaround for this?? I could really use the help.
 
sql 6.5 supports large field sizes like you need.

afterward 7.0 and up require the use of blobs, in accordance to the new ansi db standard.

sorry. go back to 6.5 or re-code your apps to use blobs.
 
Back
Top