What steps will reproduce the problem?
When not providing a name for a SqliteParameter, it throws an exception on
binding because the check is simply for "name != null" on line 220 of
SqliteCommand.cs.
However, the "Sqlite3.sqlite3_bind_parameter_name" returns an empty string
rather than null.
I would propose the check be "if ( !String.IsNullOrEmpty(name) )".
What version of the product are you using? On what operating system?
This is using the latest checkout of the repository.
Original issue reported on code.google.com by adamhewi...@gmail.com on 6 Jun 2011 at 4:37
Original issue reported on code.google.com by
adamhewi...@gmail.com
on 6 Jun 2011 at 4:37