Beispiel #1
0
 private void Dispose(bool disposing)
 {
     if (this.Statement != IntPtr.Zero)
     {
         try
         {
             SQLite3.Finalize(this.Statement);
         }
         finally
         {
             this.Statement  = IntPtr.Zero;
             this.Connection = null;
         }
     }
 }
Beispiel #2
0
 void Finalize(IntPtr stmt)
 {
     SQLite3.Finalize(stmt);
 }