OpenDCL Forums

OpenDCL => Runtime/AutoLISP => Topic started by: Peter2 on January 30, 2017, 02:20:56 AM

Title: Limitations for Grid and CSV?
Post by: Peter2 on January 30, 2017, 02:20:56 AM
I want to develop a Grid which reads and writes a CSV-files; the entire size will be approx.

- 500 lines / rows
- 15 columns
- most fields filled with date and strings up to 20 chars

- but 1 field shall contain some strings with totally some hundreds of chars

Are there some know limitations or some bad experience with a data volume like this?

Peter
Title: Re: Limitations for Grid and CSV?
Post by: Fred Tomke on February 02, 2017, 12:09:22 PM
Hi, yes, in my experiences I had to reduce the text to 255 chars.
Fred
Title: Re: Limitations for Grid and CSV?
Post by: Fred Tomke on February 02, 2017, 12:11:40 PM
Stop, that was for ListView content.
I backtrack my answer.
Fred
Title: Re: Limitations for Grid and CSV?
Post by: marcoheuer on February 02, 2017, 10:40:55 PM
hello peter,
your requirements should not be a problem.

i myself have a file viewer dialog, inter alia, for database files.
the content (of tables) of these files is displayed in a grid.
number of rows: > 1000
number of columns: > 20
string length in cells: in some cases > 2000 (memo fields in db)

best regards
marco
Title: Re: Limitations for Grid and CSV?
Post by: Peter2 on February 02, 2017, 11:37:54 PM
Thanks to Marco and Fred!