Index: System.Data.SQLite/SQLiteModuleNoop.cs ================================================================== --- System.Data.SQLite/SQLiteModuleNoop.cs +++ System.Data.SQLite/SQLiteModuleNoop.cs @@ -56,10 +56,11 @@ IntPtr pClientData, string[] argv, ref string error ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// @@ -68,51 +69,57 @@ IntPtr pClientData, string[] argv, ref string error ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode BestIndex( ref SQLiteIndex index ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Disconnect() { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Destroy() { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Open( ref SQLiteVirtualTableCursor cursor ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Close( SQLiteVirtualTableCursor cursor ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// @@ -121,28 +128,31 @@ int idxNum, string idxStr, SQLiteValue[] argv ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Next( SQLiteVirtualTableCursor cursor ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Eof( SQLiteVirtualTableCursor cursor ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// @@ -150,10 +160,11 @@ SQLiteVirtualTableCursor cursor, SQLiteContext context, int index ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// @@ -160,10 +171,11 @@ public override SQLiteErrorCode RowId( SQLiteVirtualTableCursor cursor, ref long rowId ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// @@ -170,38 +182,43 @@ public override SQLiteErrorCode Update( SQLiteValue[] values, ref long rowId ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Begin() { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Sync() { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Commit() { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Rollback() { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// @@ -209,46 +226,51 @@ string zName, ref SQLiteFunction function, object[] args ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Rename( string zNew ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Savepoint( int iSavepoint ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Release( int iSavepoint ) { + CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode RollbackTo( int iSavepoint ) { + CheckDisposed(); throw new NotImplementedException(); } #endregion } }