There is a problem in this case
private int ReadNextRow(Vdbe vm, DataTable table)
crashes on default case with a System.ArgumentException
Can't use
table.Columns[i].DataType = null;
columnValues[i] = "";
I replaced it with
table.Columns[i].DataType = typeof(System.Nullable);
columnValues[i] = null;
and problem is now fixed
Original issue reported on code.google.com by
pkedp...@gmail.comon 16 Dec 2013 at 4:32