Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我的数据库中有一些 AES 加密字段,如
AES_ENCRYPT(数据,“密钥”)
但是在数据库中,它们现在看起来好像有很多问题标记等
任何想法我做错了什么?
您应该将数据存储在VARBINARYorBLOB列中。通过使用文本列,客户端(有时可能是数据库)正在尝试将二进制非文本数据转换为文本。问号是二进制数据与文本字符不匹配的结果。
VARBINARY
BLOB