Kendall Bennett
Kendall Bennett
Code in question is here: https://github.com/kendallb/Rebus.MySqlConnector/blob/master/Rebus.MySqlConnector/MySqlConnector/DataBus/MySqlDataBusStorage.cs#L113
Right, it would be nice to support it just to make it more compatible with other ADO.net connectors like SQL Server, even if under the hood it just does what...
Yeah it's 6 of one, half a dozen of another. When you get a nice exception at least you know stuff is not working and can fix it. In some...
Ok, I think supporting any stream should be implemented to make it really useful. A memory stream itself is not all that useful as all the data will already be...
It’s crazy but I have never had a need for the data table class myself (we use everything via a micro ORM), so it’s not clear to me how you...
Assuming it’s possible to copy the data via the MySQL wire protocol via a 64K buffer and avoid the max packet size issues, I think that’s the best approach. If...
Looks like there has to be a way to support it, as it’s officially supported for the C API? https://dev.mysql.com/doc/c-api/8.0/en/mysql-stmt-send-long-data.html
https://stackoverflow.com/questions/29600738/optimal-way-to-store-blobs-larger-than-max-allowed-packet-in-mysql-innodb
people say it works for Java and PHP, so it must be possible? https://stackoverflow.com/questions/3754238/is-there-any-way-to-insert-a-large-value-in-a-mysql-db-without-changing-max-allo
You can already receive large data as it’s already possible with the connector to read data into a stream.