Bradley Grainger
Bradley Grainger
> The queries concerned are quite different, Thanks for the details. > Is there any easy way to dump the variable “originalData”? Not from MySqlConnector. You would need to run...
> It feels like it is some problem on the DB server side, where the prepared statement on the server side breaks due to a “hiccup”. I agree. It would...
This limitation was introduced by https://github.com/mysql-net/MySqlConnector/commit/feea06b7a6b499dc21299cdabaf62bafbaa7b0cc to fix https://github.com/mysql-net/MySqlConnector/issues/780. MySQL Server 8.0 increased the default value of `max_allowed_packet` to 64MiB (up from 4MiB in 5.7) so this constant may be...
> TBC I don't believe this is a Dev Drive problem, but rather a problem when redirecting your nuget packages location to another location via a symlink. If you mount...
I have the same problem (with a ASP.NET Core WebAPI project, not Azure Functions): ``` fail: Aspire.Hosting.Dcp.dcpctrl.ExecutableReconciler[0] run session could not be started: IDE returned a response indicating failure {"Executable":...
I didn't know (till now) that MySql.Data had this "back door". It's a clever hack, but I need to consider the backwards-compatibility issues with adopting it into MySqlConnector now: quoting...
MySqlConnector follows the best practices for assembly versioning from https://learn.microsoft.com/en-us/dotnet/standard/library-guidance/versioning#assembly-version: > ✔️ CONSIDER only including a major version in the AssemblyVersion. In fact, MySqlConnector doesn't even set `AssemblyVersionAttribute` but lets...
Can you provide a self-contained example that reproduces the problem? A `NullReferenceException` in MySqlConnector is most typically indicative of broken internal invariants, usually caused by multithreaded misuse. See https://mysqlconnector.net/troubleshooting/connection-reuse/ and...
Related: https://github.com/mysql-net/MySqlConnector/issues/1427#issuecomment-1872985495
> Sometimes there is a null reference during Dispose: ``` at MySqlConnector.MySqlDataReader.DisposeAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 612 at System.Data.Common.DbDataReader.Dispose(Boolean disposing) at MySqlConnector.MySqlDataReader.Dispose(Boolean disposing) in /_/src/MySqlConnector/MySqlDataReader.cs:line 443 at Dapper.SqlMapper.QueryAsync[T](IDbConnection cnn,...