Reputation: 339
In my application, I need to store a text in Visual Foxpro database. Actually, the max length of a text allowed in visual FoxPro is 255 characters. But in my application, it is allowing up to 88 characters only. I am connecting to the database using the FoxPro database driver. Version of the driver is VFPOLEDB.1
Upvotes: 1
Views: 445
Reputation: 49
If the application is allowing more than 255 characters then it might be saving the data(which is greater than 88) to another table. Due to which in the application the total data is being displayed. Cross verify all the table related to that particular column.
Upvotes: 4