I am attempting to save data to a SQL column that is type "Text".
I am using your SQLQuery component.
All datatypes are saved as expected EXCEPT "text"
I have tried the following:
fsqlquery.edit;
... (other non-text fields)
fsqlquery.FieldByName('notes').Value := fnotes;
or fsqlquery.FieldByName('notes').AsString := fnotes;
or fsqlquery.FieldByName('notes').AsWideString := fnotes;
fsqlquery.post;
I receive NO ERRORs - all data is saved EXCEPT text column 'Notes' which remains null after posting the data.
Can I post data to a "Text" column using FileByName('') ? If so, how?