SQLite has the interesting "feature" of letting you store anything in any field regardless of its data type.
http://www.sqlite.org/different.html#typing
I'm having to read some externally created SQLite files that were created by (ab)using this "feature". They have a field defined as VARCHAR(30) but are using it to store strings up to 100 characters or more. SQLite happily does this without any trimming taking place if you make direct calls to the SQLite DLL to store your data.
I'm currently using DevArt UniDAC 3.70.0.19 which has SQLite support to read these files, however it quite reasonably respects the size of the field as it is defined and so creates a TStringField object with a length of 30 characters. All characters stored beyond this 30 character limit are inaccessible to me.
I'm aware of all the available Delphi solutions for SQLite however can someone tell me which of them if any can handle this "feature"?