Hi all,
I've got a problem with retrieving objects from Oracle table from LONG type column. Inside I have only text but a long one ex. 10 000 characters.
Problem is that recordset takes only first 100 characters from this field!
I've tried to use getChunk but unfortunately it didn't help.
I think that the problem is somewhere in Recordset because when I'm trying to get size of this field I always receive 100 :-(
below is fragment of my code:
<%
set conn = server.createobject("adodb.connection")
Conn.Open Application("ConnectStr")
Set rs = Server.CreateObject("adodb.recordset")
sql = "SELECT ID, name, description " &_
"from MyTable where ID=1"
rs.Open sql, conn, 3, 3
size=rs.Fields("description").ActualSize
desc=rs.Fields("description").GetChunk(size)
%>
<br><%=desc%>
Could someone help me, please?
I would be very grateful!
Toudi.