I use jRDC2.2 with MS SQL server 2012, I have column with type nvarchar(max) when I try to get data, I receive (RuntimeException) java.lang.RuntimeException: Cannot serialize object:
I debugged ExecuteQuery2 in jRDC, this line
returns 2005 if column type is nvarchar(max) or 12 if column type is sized to n number of chars say 2000, nvarchar(2000)
I set col size to 4000 to solve this problem for now, but I still need to fix it in jRDC cause I will face this problem with the rest of other tables!
I debugged ExecuteQuery2 in jRDC, this line
B4X:
Dim ct As Int = rsmd.RunMethod("getColumnType", Array(i + 1))
I set col size to 4000 to solve this problem for now, but I still need to fix it in jRDC cause I will face this problem with the rest of other tables!