Skip to content

SQLiteDatabase.cs class #181

Description

@GoogleCodeExporter
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.com on 16 Dec 2013 at 4:32

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions