使用c#模拟mysql压缩功能

发布于 2025-01-08 14:57:03 字数 263 浏览 0 评论 0原文

我想将一些字节数据插入到 mysql blob 列中。 数据很大,所以我想以压缩的方式存储它。

我正在使用 Entity Framework 3.5SP1 使用最新的 mysql .net 连接器将数据插入到 mysql 数据库中。有没有办法使用实体框架将 blob 插入 mysql 数据库(例如插入 testtable (blobcolumn) 值 (compress('aaa')))或模拟 在c#中压缩mysql的函数然后将结果插入数据库?

谢谢

I'd like to insert some byte data into a mysql blob column.
The data is large so I want to store it in a compressed way.

I'm using Entity Framework 3.5SP1 to insert the data into the mysql database using the latest mysql .net connector. Is there a way to either use the entitiy framework to insert a blob into the mysql database (like insert into testtable (blobcolumn) values (compress('aaa'))) or to emulate the compress function of mysql in c# and then insert the result in the database?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挖个坑埋了你 2025-01-15 14:57:03

指定 'UseCompression' 选项连接字符串以启用数据包压缩。

Specify a 'UseCompression' option in the connection string to enable compression of packets.

梦晓ヶ微光ヅ倾城 2025-01-15 14:57:03

请在下面找到我使用 Ionic zip 的实现。
希望有帮助!

using System; using System.IO; using Ionic.Zlib; using System.Text; namespace Qobuz { public static class MySqlCompressHelper { public static byte[] MySqlCompress(this string str, CompressionLevel level = CompressionLevel.BestCompression) { return UTF8Encoding.UTF8.GetBytes(str).MySqlCompress(level); } public static byte[] MySqlCompress(this byte[] buffer, CompressionLevel level = CompressionLevel.BestCompression) { using (var output = new MemoryStream()) { output.Write(BitConverter.GetBytes((int)buffer.Length), 0, 4); using (var compressor = new ZlibStream(output, CompressionMode.Compress, level)) { compressor.Write(buffer, 0, buffer.Length); } return output.ToArray(); } } public static string MySqlUncompressString(this byte[] buffer) { return UTF8Encoding.UTF8.GetString(buffer.MySqlUncompressBuffer()); } public static byte[] MySqlUncompressBuffer(this byte[] buffer) { using (var output = new MemoryStream()) { using (var decompressor = new ZlibStream(output, CompressionMode.Decompress)) { decompressor.Write(buffer, 4, buffer.Length - 4); } return output.ToArray(); } } } }

Please find below my implementation using Ionic zip .
Hope that helps!

using System; using System.IO; using Ionic.Zlib; using System.Text; namespace Qobuz { public static class MySqlCompressHelper { public static byte[] MySqlCompress(this string str, CompressionLevel level = CompressionLevel.BestCompression) { return UTF8Encoding.UTF8.GetBytes(str).MySqlCompress(level); } public static byte[] MySqlCompress(this byte[] buffer, CompressionLevel level = CompressionLevel.BestCompression) { using (var output = new MemoryStream()) { output.Write(BitConverter.GetBytes((int)buffer.Length), 0, 4); using (var compressor = new ZlibStream(output, CompressionMode.Compress, level)) { compressor.Write(buffer, 0, buffer.Length); } return output.ToArray(); } } public static string MySqlUncompressString(this byte[] buffer) { return UTF8Encoding.UTF8.GetString(buffer.MySqlUncompressBuffer()); } public static byte[] MySqlUncompressBuffer(this byte[] buffer) { using (var output = new MemoryStream()) { using (var decompressor = new ZlibStream(output, CompressionMode.Decompress)) { decompressor.Write(buffer, 4, buffer.Length - 4); } return output.ToArray(); } } } }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文