System.Data.SQLite

Check-in [18b915d1eb]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Comments updated
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: 18b915d1eb2ade791b434d006c5a93a6c5ff9297
User & Date: rmsimpson 2005-12-09 19:59:43.000
Context
2005-12-09
19:59
1.0.24.0 check-in: d74c9c5606 user: rmsimpson tags: sourceforge
19:59
Comments updated check-in: 18b915d1eb user: rmsimpson tags: sourceforge
19:59
Modify transactions to allow immediate or deferred writelocks check-in: 2b393018db user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteStatement.cs.
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

    /// <summary>
    /// Initializes the statement and attempts to get all information about parameters in the statement
    /// </summary>
    /// <param name="sqlbase">The base SQLite object</param>
    /// <param name="stmt">The statement</param>
    /// <param name="strCommand">The command text for this statement</param>
    /// <param name="nCmdStart">The index at which to start numbering unnamed parameters</param>
    internal SQLiteStatement(SQLiteBase sqlbase, int stmt, string strCommand, SQLiteStatement previous)
    {
      _unnamedParameters = 0;
      _sql     = sqlbase;
      _sqlite_stmt = stmt;
      _sqlStatement  = strCommand;








|







47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

    /// <summary>
    /// Initializes the statement and attempts to get all information about parameters in the statement
    /// </summary>
    /// <param name="sqlbase">The base SQLite object</param>
    /// <param name="stmt">The statement</param>
    /// <param name="strCommand">The command text for this statement</param>
    /// <param name="previous">The previous command in a multi-statement command</param>
    internal SQLiteStatement(SQLiteBase sqlbase, int stmt, string strCommand, SQLiteStatement previous)
    {
      _unnamedParameters = 0;
      _sql     = sqlbase;
      _sqlite_stmt = stmt;
      _sqlStatement  = strCommand;