I am executing following sql query on SQL Server 2008 using jTDS API:
SELECT a , b , c FROM [db].[dbo].[table] where d = 1;
And data type for these three fields are as follows:
a -- nvarchar(255)
b -- nvarchar(255)
c -- nvarchar(max)
When I execute query using Java, the string values for a and b are plain text, but for c I am getting following value:
net.sourceforge.jtds.jdbc.ClobImpl@2b34fb
It seems it is stored as object, how can I convert it to normal string ?