Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add disposal checks to the SQLiteModuleNoop class. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | virtualTables |
Files: | files | file ages | folders |
SHA1: |
62d2f9e5bdf718b785f8d1fb5e7812a5 |
User & Date: | mistachkin 2013-06-08 04:15:14.037 |
Context
2013-06-12
| ||
21:43 | Adjust how the index related input/output structures are represented. check-in: 978cda574b user: mistachkin tags: virtualTables | |
2013-06-08
| ||
04:15 | Add disposal checks to the SQLiteModuleNoop class. check-in: 62d2f9e5bd user: mistachkin tags: virtualTables | |
02:36 | Reorganize native interop definitions into the UnsafeNativeMethods class. Enable compilation for the .NET Compact Framework. check-in: 2a9118d124 user: mistachkin tags: virtualTables | |
Changes
Changes to System.Data.SQLite/SQLiteModuleNoop.cs.
︙ | ︙ | |||
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | public override SQLiteErrorCode Create( SQLiteConnection connection, IntPtr pClientData, string[] argv, ref string error ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Connect( SQLiteConnection connection, IntPtr pClientData, string[] argv, ref string error ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode BestIndex( ref SQLiteIndex index ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Disconnect() { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Destroy() { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Open( ref SQLiteVirtualTableCursor cursor ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Close( SQLiteVirtualTableCursor cursor ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Filter( SQLiteVirtualTableCursor cursor, int idxNum, string idxStr, SQLiteValue[] argv ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Next( SQLiteVirtualTableCursor cursor ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Eof( SQLiteVirtualTableCursor cursor ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Column( SQLiteVirtualTableCursor cursor, SQLiteContext context, int index ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode RowId( SQLiteVirtualTableCursor cursor, ref long rowId ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Update( SQLiteValue[] values, ref long rowId ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Begin() { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Sync() { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Commit() { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Rollback() { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode FindFunction( string zName, ref SQLiteFunction function, object[] args ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Rename( string zNew ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Savepoint( int iSavepoint ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Release( int iSavepoint ) { throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode RollbackTo( int iSavepoint ) { throw new NotImplementedException(); } #endregion } } | > > > > > > > > > > > > > > > > > > > > > > | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | public override SQLiteErrorCode Create( SQLiteConnection connection, IntPtr pClientData, string[] argv, ref string error ) { CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Connect( SQLiteConnection connection, 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(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Filter( SQLiteVirtualTableCursor cursor, 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(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode Column( SQLiteVirtualTableCursor cursor, SQLiteContext context, int index ) { CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode RowId( SQLiteVirtualTableCursor cursor, ref long rowId ) { CheckDisposed(); throw new NotImplementedException(); } /////////////////////////////////////////////////////////////////////// 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(); } /////////////////////////////////////////////////////////////////////// public override SQLiteErrorCode FindFunction( 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 } } |