I'm trying to create an ios app with Delphi xe4 and sqlite.
Reopening ClienDataSet after loading some data I have the message:
Type mismatch for field 'ct_id', expecting: WideMemo actual:LargeInt.
Database: SQLITE:
....
'CREATE TABLE Contacts ('
+ ' ct_id INTEGER NOT NULL PRIMARY KEY,'
+ ' ct_type TEXT,'
....
then I use a TSqlDataset, TDataSetprovider and ClientDataSet to update table:
ClientDataSet.FieldByName('ct_id').AsInteger := 1; ...
TSqlDataset parameters are:
Command type : ctQuery
Command text: 'select * from "Contacts"'
If table is empty I don't have problems.