I know column #59 has some special characters,but i don't want to
modify the characters,so how can i handle
this error in mobilink(by download script ,download store procedure
act)?????
You may want to look at explicitly converting that column in your
download script. Look at CONVERT and CAST. For example: CAST( column
as binary )
I'm in a similar situation - though my script downloads the data fine,
my application reading the SQLAny DB does not get all the chars when I
read it in as a string. So, I'm trying other ways using the above.