Ulrich Telle
Ulrich Telle
> > Probably a matter of taste. Personally, I would still prefer `wxString::FromDouble()` to be **UI locale dependent**, because this would imply equal behaviour on **all** platforms. > > No,...
Checks regarding availability of cryptographically secure random bytes on Apple platforms has been improved already in commits https://github.com/utelle/SQLite3MultipleCiphers/commit/8d0f02065fad3dacdfbb0bcbe59bd344d5d038bf and https://github.com/utelle/SQLite3MultipleCiphers/commit/0e4224de5339e1c0abe15b1ae89cae45ec8dee27. That is, the next release of _SQLite3 Multiple Ciphers_ should...
> Yes, `CCRandomGenerateBytes` is available on those platforms. I am using that now for all apple targets in [KotlinCrypto/random](https://random.kotlincrypto.org/library/crypto-rand/org.kotlincrypto.random/-crypto-rand/-default/index.html) In the meantime I found this interesting blog post about [Randomness...
I modified the code accordingly (see commit 36cfaa4f0ac52e97984d44807fc7ec8c6df38088), and the next release will include this change. However, it may take a few days until the next release will be done.
[Release 2.2.0](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v2.2.0) fixes the issue. Closing...
> I think there are two options forward here: > > 1. Re-implement the `quote` logic in .NET In principle, it would be possible to use SQLite's function [sqlite3_mprintf](https://sqlite.org/c3ref/mprintf.html) or...
IMHO solving the issue could be easily done by adding the following local method ```C# public static string QuoteSqlLiteral(string input) { if (input == null) return "''"; // Truncate at...
@SamMonoRT: > [SamMonoRT](https://github.com/SamMonoRT) modified the milestones: [10.0.0](https://github.com/dotnet/efcore/milestone/204), [11.0.0](https://github.com/dotnet/efcore/milestone/214) [2 weeks ago](https://github.com/dotnet/efcore/issues/35760#event-19895481065) Obviously, you pushed the resolution of this bug to milestone **11.0.0** - that is, into a distant, unknown future....
> Do you know of a workaround that can be applied in consumer code? > > If we have to wait another 1+ year for this tiny little fix i'd...
> > Use PRAGMA SQL commands instead of the password property > > With connection pooling enabled (which I believe is the default) it may be risky to use this...