Hi,
Is there any associated problems by reusing SQLiteCommand objects by setting its Connection property?
I imagine something like the following:
// In the main thread:
SQLiteConnection connA = ...
SQLiteCommand cmdA = connA.CreateCommand(...);
// In some other thread:
SQLiteConnection connB = connA.Clone();
SQLiteCommand cmdB = cmdA.Clone();
cmdB.Connection = connB;
Thanks in advance.
- Yngve