Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b64cf102ce2cd7a34e6be834b800bc9a |
User & Date: | mistachkin 2015-10-18 01:51:59.252 |
Context
2015-10-18
| ||
20:28 | Update and improve documentation comments for the native virtual table methods. check-in: 2c6bdf20ea user: mistachkin tags: trunk | |
01:51 | Fix typo. check-in: b64cf102ce user: mistachkin tags: trunk | |
00:18 | Move the ISQLiteNativeModule interface to its own file. check-in: b233d0f72d user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/ISQLiteNativeModule.cs.
︙ | ︙ | |||
1217 1218 1219 1220 1221 1222 1223 | /// The native pointer to the sqlite3_vtab derived structure. /// </param> /// <param name="iSavepoint"> /// This is an integer identifier used to specify a specific saved /// state for the virtual table for it to restore itself back to, which /// should also have the effect of deleting all saved states with an /// integer identifier greater than this one. | < | 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | /// The native pointer to the sqlite3_vtab derived structure. /// </param> /// <param name="iSavepoint"> /// This is an integer identifier used to specify a specific saved /// state for the virtual table for it to restore itself back to, which /// should also have the effect of deleting all saved states with an /// integer identifier greater than this one. /// </param> /// <returns> /// A standard SQLite return code. /// </returns> SQLiteErrorCode xRollbackTo( IntPtr pVtab, int iSavepoint |
︙ | ︙ |