yiskang / csharp-sqlite

Automatically exported from code.google.com/p/csharp-sqlite
Other
0 stars 0 forks source link

Current version won't compile for SL #123

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
1.- main_c.cs line 2232: 

String.Compare("localhost", zUri.Substring(7,9),true) not supported in SL. 
Changed to:

String.Compare("localhost", zUri.Substring(7,9), 
StringComparison.InvariantCultureIgnoreCase)

2.- os_win_c.cs line 2860. Changed to

error = (int)ERROR_NOT_SUPPORTED;

Original issue reported on code.google.com by rmbru...@gmail.com on 8 Jul 2011 at 2:24

GoogleCodeExporter commented 8 years ago
Additionally, the compilation constant for Silverlight is SQLITE_SILVERLIGTH in 
some configurations (Debug) and just SILVERLIGHT in Release. (for 
SQLiteClient.SL and Ersatz.Silverlight.

Original comment by rmbru...@gmail.com on 8 Jul 2011 at 2:45

GoogleCodeExporter commented 8 years ago
This issue was closed by revision 9f7331de6345.

Original comment by noah.hart@gmail.com on 8 Jul 2011 at 4:09