Hibernate Version : 3.2.2 In my application ,i have modelled object with column type as a clob.The clob column contains text data. My requriment is fetch the part of the string from clob column through hibernate api .It should not return the full value.
For Example if the clob column contains
" Hibernate is the best framework , Easy to Learn ....................."
I will give a clob column name as match criteria and i will pass value only "Easy to Learn" .. .for the column. the API should return the true if clob column contains the passed value ,otherwise it should return the string is not available.
Is there any way we can achieve this in hibernate ? Please let me know if you need any more details
To fetch the value from CLOB column in Hibernate ?
|