SQLiteDataAdapater is dropping characters after a space in the field when filling a datatable (c# winforms).
I.e.
Field
: 100 ml
Select returns
: 100 ml
DataTable column after Fill
: 100
If I add ' marks around the text
: '100 ml'
My workaround for now is to add ' marks and then remove them after the
datatable has been populated.
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

