Ticket Hash: | 8c1650482e39e01446f1907d86577e4ce740d27e | ||
Title: | SQLite3.GetBytes optimization | ||
Status: | Closed | Type: | Code_Defect |
Severity: | Minor | Priority: | Immediate |
Subsystem: | Integration_Via_PInvoke | Resolution: | Fixed |
Last Modified: | 2013-01-01 19:32:05 | ||
Version Found In: |
Description: | ||||
current:
nlen = UnsafeNativeMethods.sqlite3_column_bytes(stmt._sqlite_stmt, index); ptr = UnsafeNativeMethods.sqlite3_column_blob(stmt._sqlite_stmt, index); if (bDest == null) return nlen; need: nlen = UnsafeNativeMethods.sqlite3_column_bytes(stmt._sqlite_stmt, index); if (bDest == null) return nlen; shane added on 2011-05-24 01:40:06 UTC: mistachkin added on 2011-07-07 04:48:39 UTC: |