I have develop a small program that access an Access Database, in the table there are fields which are Memo Fields.
I store the field in a String variable, when retrieving the data out of the memo fields with texts of more than 255 chars the result that I'm having is that the variable contains only 255 chars the rest are truncated.
Do you have experienced this problem? If so what I'm doing wrong.
That's right. Memo can have longer values, but they are not working correctly with GetDatabaseString(). I had some problems in the past (I used PB 3.94) and I solved the problem, by splitting the strings into a few 255 char fields and put them together into one string, after receiving data from database.
If you use MySQL, you would not have this problems, I think. So it sounds to me, that it has something to do with Access.
I dont have any problems with MEMO type and long strings. could you please give an example of your problem? It is maybe intressting for other DB app coders.