diff --git a/.gitignore b/.gitignore index ce044810..e4c857d8 100644 --- a/.gitignore +++ b/.gitignore @@ -265,3 +265,6 @@ paket-files/ # CodeRush .cr/ +# NCrunch +*.ncrunchsolution +*.ncrunchproject diff --git a/src/SQLite.cs b/src/SQLite.cs index 343664f6..39d29348 100644 --- a/src/SQLite.cs +++ b/src/SQLite.cs @@ -159,7 +159,7 @@ public enum CreateFlags FullTextSearch4 = 0x200 } - public interface ISQLiteConnection + public interface ISQLiteConnection : IDisposable { Sqlite3DatabaseHandle Handle { get; } string DatabasePath { get; } @@ -215,7 +215,6 @@ CreateTablesResult CreateTables (CreateFlags createFlags = Cr int Delete (object primaryKey, TableMapping map); int DeleteAll (); int DeleteAll (TableMapping map); - void Dispose (); int DropTable (); int DropTable (TableMapping map); void EnableLoadExtension (bool enabled);