作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个关于 mariadb 的简单问题,我将 sql 从 mysql 转换为 mariadb
但是我在mariadb中不存在这个函数make_scrambled_password时遇到问题,请帮助我,这是代码c++
std::string mysql_hash_password(const char* tmp_pwd)
{
char hash_buf[2*SHA1_HASH_SIZE + 2] = "";
make_scrambled_password(hash_buf, tmp_pwd);
return hash_buf;
}
如何在C++代码中编辑它以使其与mariadb兼容 ……………………
最佳答案
使用该函数到mariadb
std::string mysql_hash_password(const char* tmp_pwd)
{
char hash_buf[2*SHA1_HASH_SIZE + 2] = "";
ma_make_scrambled_password(hash_buf, tmp_pwd);
return hash_buf;
}
关于mysql 中的 c++ 函数 make_scrambled_password 到 mariadb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49247294/
我是一名优秀的程序员,十分优秀!