I have an Access database with memo field in it. On my ASP page I create an ADODB recordset and the write the values of all the fields in all the records. When the memo field writes out, it only displays the first 255 characters from the memo field, even though there are as much as 1000 characters stored in the field.
How can I get the recordset to retrieve all the data from the Memo field?
sqlStat = "SELECT Comments from tbl_Main WHERE ID=" & ID & ";"
rs.open sqlStat, dCon
if not rs.eof then
response.write(rs("Comments"))
end if
rs.close
Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.
How can I get the recordset to retrieve all the data from the Memo field?
sqlStat = "SELECT Comments from tbl_Main WHERE ID=" & ID & ";"
rs.open sqlStat, dCon
if not rs.eof then
response.write(rs("Comments"))
end if
rs.close
Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.