mysql c++ 插入id_MySQL如何用C++通过函数把变量录入到数据库中-问答-阿里云开发者社区-阿里云...

本文介绍了一个使用C++向MySQL数据库中插入数据的例子。通过一个循环结构,展示了如何从用户输入获取数据并将其插入到指定的数据库表中。需要注意的是,示例中的SQL语句需要进行适当修改以匹配正确的变量。
摘要由CSDN通过智能技术生成

以下是关键代码

/*

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)");

现在问题就是这句怎么改

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值