Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Adjust some doc comments to be more accurate. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a6cae4efbf456b8c054a4dd6880cb026 |
User & Date: | mistachkin 2017-10-17 08:39:02.262 |
Context
2017-10-17
| ||
08:41 | First attempt to address some test issues seen on Mono. check-in: a7124e2dad user: mistachkin tags: trunk | |
08:39 | Adjust some doc comments to be more accurate. check-in: a6cae4efbf user: mistachkin tags: trunk | |
08:38 | When building the interop assembly for POSIX, be sure to include support for the 'sqlite_stmt' table. check-in: ec839bf09e user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteSession.cs.
︙ | ︙ | |||
2923 2924 2925 2926 2927 2928 2929 | session, ApplyTableFilter(callback, clientData), IntPtr.Zero); } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and return, via <paramref name="rawData" />, the | | | 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 | session, ApplyTableFilter(callback, clientData), IntPtr.Zero); } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and return, via <paramref name="rawData" />, the /// set of changes represented by this session instance. /// </summary> /// <param name="rawData"> /// Upon success, this will contain the raw byte data for all the /// changes in this session instance. /// </param> public void CreateChangeSet( ref byte[] rawData |
︙ | ︙ | |||
2964 2965 2966 2967 2968 2969 2970 | } } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and write, via <paramref name="stream" />, the | | | 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 | } } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and write, via <paramref name="stream" />, the /// set of changes represented by this session instance. /// </summary> /// <param name="stream"> /// Upon success, the raw byte data for all the changes in this session /// instance will be written to this <see cref="Stream" />. /// </param> public void CreateChangeSet( Stream stream |
︙ | ︙ | |||
2999 3000 3001 3002 3003 3004 3005 | throw new SQLiteException(rc, "sqlite3session_changeset_strm"); } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and return, via <paramref name="rawData" />, the | | < | 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 | throw new SQLiteException(rc, "sqlite3session_changeset_strm"); } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and return, via <paramref name="rawData" />, the /// set of changes represented by this session instance as a patch set. /// </summary> /// <param name="rawData"> /// Upon success, this will contain the raw byte data for all the /// changes in this session instance. /// </param> public void CreatePatchSet( ref byte[] rawData |
︙ | ︙ | |||
3041 3042 3043 3044 3045 3046 3047 | } } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and write, via <paramref name="stream" />, the | | < | 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 | } } /////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to create and write, via <paramref name="stream" />, the /// set of changes represented by this session instance as a patch set. /// </summary> /// <param name="stream"> /// Upon success, the raw byte data for all the changes in this session /// instance will be written to this <see cref="Stream" />. /// </param> public void CreatePatchSet( Stream stream |
︙ | ︙ |