开发者社区> 问答> 正文

如何用C++通过函数把变量录入到数据库MySQL中 ?

以下是关键代码

 /*
        for (int i = 1; i <= n; i++)
        {
            res = mysql_query(&myCont, "INSERT INTO `i` (`id`, `name`, `age`, `subject`, `score`) VALUES ('3', 'C', '12', '英语', '100')");//查询  

        }
        */   //模板
        for (int i = 1; i <= n; i++)
        {
            int id; /*char name[10]*/; int age; /*char subject[10]*/; int score; string name; string subject;

            cout << "intput id:"; cin >> id; cout << endl;
            cout << "input name:"; getline(cin, name);
            cout << "intput sge:"; cin >> age; cout << endl;
            cout << "input subject:"; getline(cin, subject);
            cout << "intput score:"; cin >> score; cout << endl;

            res = mysql_query(&myCont, "INSERT INTO `i` (`id`, `name`, `age`, `subject`, `score`)VALUES (id, 'name', age, 'subject', score)");
            //VALUES('3', 'C', '12', '英语', '100')");//查询  

        }
res = mysql_query(&myCont, "INSERT INTO i (id, name, age, subject, score)VALUES (id, 'name', age, 'subject', score)");

现在问题就是这句怎么改,求大神指导一下。

展开
收起
落地花开啦 2016-02-01 09:30:44 2988 0
1 条回答
写回答
取消 提交回答
  • 喜欢技术,喜欢努力的人

    方法1:用string拼接
    `string str = "NSERT INTO i (id, name, age, subject, score)VALUES ('";
    std::stringstream ss;
    std::string str_id;
    ss<ss>>str_id;
    str = str + str_id;
    `
    方法2:用sprintf格式化写入
    `char str[64] = "NSERT INTO i (id, name, age, subject, score)VALUES ('";
    char buffer[128] = {0};
    int id = 4;
    sprintf(buffer, "%s%d',", str, id);
    `

    2019-07-17 18:36:58
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
2022 DTCC-阿里云一站式数据库上云最佳实践 立即下载
云时代的数据库技术趋势 立即下载
超大型金融机构国产数据库全面迁移成功实践 立即下载

相关镜像