System.Data.SQLite

Check-in [d37831904e]
Login

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

Overview
Comment:1.10 bugfixes
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: d37831904ea98ee1c41d767fd12b84e0a557db39
User & Date: rmsimpson 2005-06-10 17:07:45.000
Context
2005-06-10
17:07
1.10 check-in: f66d2eec65 user: rmsimpson tags: sourceforge
17:07
1.10 bugfixes check-in: d37831904e user: rmsimpson tags: sourceforge
2005-06-05
17:54
1.10 notes check-in: 8c7524b80d user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteStatement.cs.
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
      if (n > 0)
      {
        _paramNames = new string[n];
        _paramValues = new SQLiteParameter[n];

        for (x = 0; x < n; x++)
        {
          s = _sql.Bind_ParamName(this, x);
          if (s == null || s == "")
          {
            s = String.Format(";{0}", nCmdStart);
            nCmdStart++;
          }
          _paramNames[x] = s;
          _paramValues[x] = null;







|







65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
      if (n > 0)
      {
        _paramNames = new string[n];
        _paramValues = new SQLiteParameter[n];

        for (x = 0; x < n; x++)
        {
          s = _sql.Bind_ParamName(this, x + 1);
          if (s == null || s == "")
          {
            s = String.Format(";{0}", nCmdStart);
            nCmdStart++;
          }
          _paramNames[x] = s;
          _paramValues[x] = null;
Changes to bin/System.Data.SQLite.dll.

cannot compute difference between binary files