Thanks Chris,
The IDE didn't crash this time but when I convert it to string I get ÿþ{
We're switching from Oracle to Sql server
We have richtext in a varbinary(max) field. I need to get that out of the database and put it in a richtext control so the user can read it
When using oracle we selected the blob into a blob variable then convert it to a string with no issue
Now that we are in sql server it seems the text is being cut off for anything longer than 65535 chars. At first I thought it was the string conversion in PowerBuilder but have since learned that it's a limitation of SQL server and the only way to get all the text is to cast it as xml. I've confirmed this in Management Studio as well.
Casting it to xml causes the IDE to crash.
That's why my RTE solutions always worked as I *never* used ODBC - only native DB drivers.
Also, way better performance & DML functionality using native drivers as well. Food for thought.
Regards ... Chris