Closed GoogleCodeExporter closed 8 years ago
There's also a small bug in SqlConnection.cs: the token is converted to lower
case, but the value used for comparison is mixed case (hence it always fails).
Original comment by contact....@gmail.com
on 21 Mar 2011 at 12:44
Attachments:
re: NET_2_0.patch
I'm confused, I've looked at the NET_2_0 patch, and all it does is change the
type of the variable. I've defined NET_2_0 in the conditional compilation
symbols, changed the and it still works without this patch. There must be
something else going on.
What specific error did you get without this patch?
- SqliteCommand cmd = con.CreateCommand();
+ IDbCommand cmd = con.CreateCommand();
Original comment by noah.hart@gmail.com
on 21 Mar 2011 at 1:57
re: fix-datasource.patch
Accepted
Original comment by noah.hart@gmail.com
on 21 Mar 2011 at 2:02
for the NET_2_0 patch:
if you don't define NET_2_0 in the Community.CsharpSqlite.SQLiteClient project,
then two methods are present called CreateCommand(): the implementation for
IDbConnection.CreateCommand which returns IDbCommand and CreateCommand which
returns a SqliteCommand. However, if you define it then only one method is
overriden: CreateDbCommand which returns a DbCommand (CreateCommand() from
DbConnection is used then).
Hence, to make the code work in both modes -- it is best to use the common
interface IDbCommand and IDataReader (otherwise a cast is required).
Original comment by contact....@gmail.com
on 22 Mar 2011 at 3:34
btw, is there a reason why the conditional NET_2_0 is present? Because the code
uses partial classes heavily, and those are only present in .NET 2 and up. if
you want, I can contribute a patch which removes this.
Original comment by contact....@gmail.com
on 22 Mar 2011 at 3:38
OK, that makes sense. Yes a patch would help.
I didn't write the client and I think that the conditional means that only NET
2 is available, and not NET 3
Let me ask the Mono teams
Noah
Original comment by noah.hart@gmail.com
on 22 Mar 2011 at 3:05
Ah, if it was derived from Mono then I'm sure it is for supporting .NET 1.1 --
DbCommand was introduced in .NET 2.0 and Mono supported both.
I'll post a patch which removes the conditional NET_2_0 soon, at least for this
use case.
Original comment by contact....@gmail.com
on 23 Mar 2011 at 3:50
[deleted comment]
added a bundle which includes these changes (apply using hg unbundle):
38083affba0e reformat Community.CsharpSqlite.SQLiteClient to use tabs
d8bc18f2b226 issue 103: remove support for .NET 1.1 (via the NET_2_0
conditional)
243fce1a3284 issue 104: remove conflicting class
3d8072be4d60 issue 103: fix warnings in SqlClient and compilation errors in
TestDriver
I have not changed the usage of NET_2_0 in Community.CsharpSqlite (which
apparently is used to select a different crypto provider).
Original comment by contact....@gmail.com
on 23 Mar 2011 at 5:29
Attachments:
Patches accepted and applied
Original comment by noah.hart@gmail.com
on 23 Mar 2011 at 9:11
Original issue reported on code.google.com by
contact....@gmail.com
on 21 Mar 2011 at 12:31Attachments: