需要比较 firebird 中的 blob
我需要检查数据库中 blob 的内容(是的,复数,但一次一个问题)。
在一个数据库中,我有大约 900 张尺寸可能不同的图像。我需要检查应用程序中内置的版本控制系统是否确实正确地将图像数据从以前的版本复制到新版本的记录。
如何整体比较值,这样我就不必一次挑选一个记录并使用 FlameRobin 或 Firebird Maestro 打开 blob 并直观地比较这些图像?
感谢您的任何帮助。
I need to check on the contents of blobs in my databases (yes, plural, but one problem at a time).
In one database, I have about 900 images of potentially varying sizes. I need to check to see if the versioning system that's built into our application is actually correctly replicating the image data from the previous version to the new version of a record.
How do I compare values en masse so I don't have to pick through each record one at a time and open up the blob using FlameRobin or Firebird Maestro and visually compare these images?
Thanks for any assistance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过两种方式处理此问题:
You can handle this in two ways:
尝试对每个 bolb 进行哈希(如 md5)并查看它们是否相同。
try to do a hash (like md5) on each bolb and see if they are the same.