Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo. Add private CopyNativeModule method for future use. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3a36c221486de0edeab6a4e760a331f4 |
User & Date: | mistachkin 2013-07-03 00:31:28.657 |
Context
2013-07-03
| ||
00:38 | When compiled with SQLITE_STANDARD and TRACK_MEMORY_BYTES, the SQLiteMemory class should track the number of allocations, not sizes in bytes. check-in: d79035292c user: mistachkin tags: trunk | |
00:31 | Fix typo. Add private CopyNativeModule method for future use. check-in: 3a36c22148 user: mistachkin tags: trunk | |
2013-07-02
| ||
07:18 | Re-organize the code region for the private static helper methods of the SQLiteModule class. check-in: 7bc24ee762 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteModule.cs.
︙ | ︙ | |||
5247 5248 5249 5250 5251 5252 5253 | // // HACK: No easy way to determine the size of the native // sqlite_module structure when running on the .NET // Compact Framework; therefore, just base the size // on what we know: // // There is one integer member. | | | 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 | // // HACK: No easy way to determine the size of the native // sqlite_module structure when running on the .NET // Compact Framework; therefore, just base the size // on what we know: // // There is one integer member. // There are 22 function pointer members. // pNativeModule = SQLiteMemory.Allocate( sizeof(int) + (22 * IntPtr.Size)); if (pNativeModule == IntPtr.Zero) throw new OutOfMemoryException("sqlite3_module"); } |
︙ | ︙ | |||
5287 5288 5289 5290 5291 5292 5293 | { nativeModule = new UnsafeNativeMethods.sqlite3_module(); nativeModule.iVersion = DefaultModuleVersion; if (module != null) { nativeModule.xCreate = new UnsafeNativeMethods.xCreate( | | | 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 | { nativeModule = new UnsafeNativeMethods.sqlite3_module(); nativeModule.iVersion = DefaultModuleVersion; if (module != null) { nativeModule.xCreate = new UnsafeNativeMethods.xCreate( module.xCreate); nativeModule.xConnect = new UnsafeNativeMethods.xConnect( module.xConnect); nativeModule.xBestIndex = new UnsafeNativeMethods.xBestIndex( module.xBestIndex); |
︙ | ︙ | |||
5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 | nativeModule.xRollbackTo = new UnsafeNativeMethods.xRollbackTo( xRollbackTo); } return nativeModule; } /////////////////////////////////////////////////////////////////////// #region Static Error Handling Helper Methods /// <summary> /// Arranges for the specified error message to be placed into the /// zErrMsg field of a sqlite3_vtab derived structure, freeing the | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 | nativeModule.xRollbackTo = new UnsafeNativeMethods.xRollbackTo( xRollbackTo); } return nativeModule; } /////////////////////////////////////////////////////////////////////// /// <summary> /// Creates a copy of the specified /// <see cref="UnsafeNativeMethods.sqlite3_module" /> object instance, /// using default implementations for the contained delegates when /// necessary. /// </summary> /// <param name="module"> /// The <see cref="UnsafeNativeMethods.sqlite3_module" /> object /// instance to copy. /// </param> /// <returns> /// The new <see cref="UnsafeNativeMethods.sqlite3_module" /> object /// instance. /// </returns> private UnsafeNativeMethods.sqlite3_module CopyNativeModule( UnsafeNativeMethods.sqlite3_module module ) { UnsafeNativeMethods.sqlite3_module newModule = new UnsafeNativeMethods.sqlite3_module(); newModule.iVersion = module.iVersion; newModule.xCreate = new UnsafeNativeMethods.xCreate( (module.xCreate != null) ? module.xCreate : xCreate); newModule.xConnect = new UnsafeNativeMethods.xConnect( (module.xConnect != null) ? module.xConnect : xConnect); newModule.xBestIndex = new UnsafeNativeMethods.xBestIndex( (module.xBestIndex != null) ? module.xBestIndex : xBestIndex); newModule.xDisconnect = new UnsafeNativeMethods.xDisconnect( (module.xDisconnect != null) ? module.xDisconnect : xDisconnect); newModule.xDestroy = new UnsafeNativeMethods.xDestroy( (module.xDestroy != null) ? module.xDestroy : xDestroy); newModule.xOpen = new UnsafeNativeMethods.xOpen( (module.xOpen != null) ? module.xOpen : xOpen); newModule.xClose = new UnsafeNativeMethods.xClose( (module.xClose != null) ? module.xClose : xClose); newModule.xFilter = new UnsafeNativeMethods.xFilter( (module.xFilter != null) ? module.xFilter : xFilter); newModule.xNext = new UnsafeNativeMethods.xNext( (module.xNext != null) ? module.xNext : xNext); newModule.xEof = new UnsafeNativeMethods.xEof( (module.xEof != null) ? module.xEof : xEof); newModule.xColumn = new UnsafeNativeMethods.xColumn( (module.xColumn != null) ? module.xColumn : xColumn); newModule.xRowId = new UnsafeNativeMethods.xRowId( (module.xRowId != null) ? module.xRowId : xRowId); newModule.xUpdate = new UnsafeNativeMethods.xUpdate( (module.xUpdate != null) ? module.xUpdate : xUpdate); newModule.xBegin = new UnsafeNativeMethods.xBegin( (module.xBegin != null) ? module.xBegin : xBegin); newModule.xSync = new UnsafeNativeMethods.xSync( (module.xSync != null) ? module.xSync : xSync); newModule.xCommit = new UnsafeNativeMethods.xCommit( (module.xCommit != null) ? module.xCommit : xCommit); newModule.xRollback = new UnsafeNativeMethods.xRollback( (module.xRollback != null) ? module.xRollback : xRollback); newModule.xFindFunction = new UnsafeNativeMethods.xFindFunction( (module.xFindFunction != null) ? module.xFindFunction : xFindFunction); newModule.xRename = new UnsafeNativeMethods.xRename( (module.xRename != null) ? module.xRename : xRename); newModule.xSavepoint = new UnsafeNativeMethods.xSavepoint( (module.xSavepoint != null) ? module.xSavepoint : xSavepoint); newModule.xRelease = new UnsafeNativeMethods.xRelease( (module.xRelease != null) ? module.xRelease : xRelease); newModule.xRollbackTo = new UnsafeNativeMethods.xRollbackTo( (module.xRollbackTo != null) ? module.xRollbackTo : xRollbackTo); return newModule; } /////////////////////////////////////////////////////////////////////// #region Static Error Handling Helper Methods /// <summary> /// Arranges for the specified error message to be placed into the /// zErrMsg field of a sqlite3_vtab derived structure, freeing the |
︙ | ︙ |