FLOWERDAY John wrote:
>
> If I run either table by itself, it works. However, if I run one table
after the
> other, the first table copies find and then the second table gives me the
exception
> 14. It does not matter in what order I run the two tables, the first one
works, the
> second one throws an exeption. Here is the code for the insertion:
>

Several things about your example are unclear.  First, the SQLiteConnection
class
does not have a constructor that takes a file path; instead, it takes a
connection
string with syntax like "Data Source=<fileName>;...".  Second, the
SQLiteConnection
class does not have an "Insert" method.

My guess is that you are using a different data access library from the
"standard"
System.Data.SQLite.

--
Joe Mistachkin

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to