Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.10 null statement bugfix |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
0c88de7edc819567973a3dc0ecdf9043 |
User & Date: | rmsimpson 2005-06-05 17:46:43.000 |
Context
2005-06-05
| ||
17:54 | 1.10 notes check-in: 8c7524b80d user: rmsimpson tags: sourceforge | |
17:46 | 1.10 null statement bugfix check-in: 0c88de7edc user: rmsimpson tags: sourceforge | |
2005-05-25
| ||
22:23 | no message check-in: f151bb6326 user: rmsimpson tags: sourceforge | |
Changes
Changes to System.Data.SQLite/AssemblyInfo.cs.
︙ | ︙ | |||
24 25 26 27 28 29 30 | // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: | | | 24 25 26 27 28 29 30 31 | // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: [assembly: AssemblyVersion("1.0.10.*")] |
Changes to System.Data.SQLite/SQLite3.cs.
︙ | ︙ | |||
180 181 182 183 184 185 186 | byte[] b = ToUTF8(strSql); int n = UnsafeNativeMethods.sqlite3_prepare_interop(_sql, b, b.Length - 1, out stmt, out ptr, out len); if (n > 0) throw new SQLiteException(n, SQLiteLastError()); strRemain = ToString(ptr, len); | > | | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | byte[] b = ToUTF8(strSql); int n = UnsafeNativeMethods.sqlite3_prepare_interop(_sql, b, b.Length - 1, out stmt, out ptr, out len); if (n > 0) throw new SQLiteException(n, SQLiteLastError()); strRemain = ToString(ptr, len); SQLiteStatement cmd = null; if (stmt > 0) cmd = new SQLiteStatement(this, stmt, strSql.Substring(0, strSql.Length - strRemain.Length), ref nParamStart); return cmd; } internal override void Bind_Double(SQLiteStatement stmt, int index, double value) { int n = UnsafeNativeMethods.sqlite3_bind_double_interop(stmt._sqlite_stmt, index, ref value); |
︙ | ︙ |
Changes to bin/System.Data.SQLite.dll.
cannot compute difference between binary files