唐伯虎 发表于 2021-7-30 19:17:51

c++ 使用sql文件操作mysql数据库

CString GetModulePath()
{
    TCHAR strFileName;
    CString strPath;
    GetModuleFileName(NULL, strFileName, sizeof(strFileName));
    strPath = (CString)strFileName;
    if (strPath.Find(_T("~")) >= 0)
    {
        memset(strFileName, 0, 1024);
        GetLongPathName(strPath, strFileName, MAX_PATH);
        strPath.Format(_T("%s"), strFileName);
    }
    strPath = strPath.Left(strPath.ReverseFind('\\') + 1);
    return strPath;
}
void mysql_command_run()
{
    USES_CONVERSION;
//运行新建数据库sql文件
    CString strnewSQL;
    strnewSQL.Format(L"%s%s", GetModulePath(), L"test.sql");
CString strNewSqlPath;
    strNewSqlPath.Format(L"%s%s%s", L"mysql-5.5.62-winx64\\bin\\mysql", L" -uroot -proot -DtestDB<", strnewSQL);
    string strsql(W2A(strNewSqlPath));
    system(strsql.c_str());
}
使用这段代码直接使用sql文件操作mysql数据库,缺点是路径中不可以有空格。


文档来源:51CTO技术博客https://blog.51cto.com/u_10486491/3215400
页: [1]
查看完整版本: c++ 使用sql文件操作mysql数据库