Hello all,
In one of my tables, BLOB datatype is used for one of the field. Large amount of data is stored in it.
I need help for the following query.
While retriving / displaying the data, one has to scroll down to read entire contents of the record.
I want to split the contents on multiple pages, by simply dividing (say every 2000 characters) on each page. Also there will be "prev" / "next" navigation.
Can anybody help me out, in getting this solution?
e.g.
Presently it shows "these are 5000 characters from the BLOB field type".
I want to make it as :
page 1 : "these are first 2000 characters".
page 2 : "here are next 2000 characters".
page 3 : " this is the remaining text from the field."
PREV NEXT
Thanks in advance.