Table field limits
Posted: Tue Apr 16, 2013 6:15 pm
I use a table field to store information. In my application, it was chosen to quickly save and recall the data in a neat structure, from a programmer's view, not a database view.
For example, to save:- (shown for the benefit of fellow Nubies)
To recall:-
I started out with this use of a Table Field, as an experiment while developing the application, and have been surprised at how it copes with all the data it has been forced to hold.
My next stage in development might well break it and I need some advice on the limits of text a cell can hold and also, the limit of text in the whole table.
Does anyone know this or how the table works when holding text?
For example, to save:- (shown for the benefit of fellow Nubies)
Code: Select all
put field "Table 1" into url ("File:" & field "FilePath")
Code: Select all
put field "FilePath"into recalledfile
put "file:" & recalledfile into recalledfile
put url recalledfile into Field "TempTable1"
My next stage in development might well break it and I need some advice on the limits of text a cell can hold and also, the limit of text in the whole table.
Does anyone know this or how the table works when holding text?