|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Text wont show on page, but nvarchar will
Hi,
we are using sql version 7 we have a table that has a column for large amount of text (like an article) we used text for the datatype and for some reason the text just wont show on the page or in the text box on the edit form. All we get is a 0 on the page, can anyone help with this? I know the code works cause all works great if I just change the datatype to varchar but then I am limited to 8000 chars. which just isnt enough in this case. Any help would be greatly appreciated <% response.write("<b>Thank You</b>") %> ![]() |
|
#2
|
|||
|
|||
|
Try copying the rs("blobfield") text to a local variable right after you get the recordset. Then work with the local variable instead of the recordset value.
You can only read a blob field once from your asp code. |
|
#3
|
|||
|
|||
|
problem solved
Hi,
thanks for the hint, not sure if it works, but I did find a work around on another site, I thought I would share it incase someone else has this problem. The big trick is to put the TEXT column at the end of the sql statement so if your colums are: phone - varchar name - varchar information - text use SELECT phone,name,information I Know it sounds stupid but it is a glitch and I was shocked that it worked too, but it does, ohh the "SELECT *" doesnt work when using TEXT data types, hope this helps someone. Cheers Happy Again |
![]() |
| Viewing: ASP Free Forums > Database > Microsoft SQL Server > Text wont show on page, but nvarchar will |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|