Index: System.Data.SQLite/SQLiteConnection.cs ================================================================== --- System.Data.SQLite/SQLiteConnection.cs +++ System.Data.SQLite/SQLiteConnection.cs @@ -2384,11 +2384,13 @@ int length = array.Length; for (int index = 0; index < length; index++) #if NET_COMPACT_20 - result.Append(UnsafeNativeMethods.StringFormat("{0:x2}", array[index])); + result.Append(UnsafeNativeMethods.StringFormat( + CultureInfo.InvariantCulture, + "{0:x2}", array[index])); #else result.AppendFormat("{0:x2}", array[index]); #endif return result.ToString();