Re: [sqlite] INSERT is not committing from c#

2010-06-15 Thread Simon Slavin
On 15 Jun 2010, at 3:07pm, nmartin wrote: > I have a C# from which I am trying to perform a COMMIT. The INSERT does not > throw an error but no data is inserted. What makes you think that no data is inserted ? If you quit your program after those instructions and examine the database with the

[sqlite] INSERT is not committing from c#

2010-06-15 Thread nmartin
I have a C# from which I am trying to perform a COMMIT. The INSERT does not throw an error but no data is inserted. I have tried a couple ways of COMMITTING: try { SQLiteTransaction liteTransaction = Connection.BeginTransaction(); SQLiteCommand command = new SQLite