Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lazarus: DBGrid showing "(MEMO)" as the value of string fields in SQLite 3

I'm trying to write a simple SQLite 3 application using Lazarus and the SQLdb components.

I have managed to connect to the database and populate a TDBGrid. Problem is that all the columns that are text fields display the value "(MEMO)" rather then the string in the DB.

like image 972
HandyGandy Avatar asked Jan 26 '11 19:01

HandyGandy


1 Answers

I have found a simple solution:

The property dgDisplayMemoText from the DBGrid must be enabled.

like image 179
Jay W. Avatar answered Oct 01 '22 19:10

Jay W.