资源简介
C语言学生成绩管理系统:使用curses函数库和MySQL数据库--源码
代码片段和文件信息
#include “student.h“
void Add_student(MYSQL *connection)
{
int i;
int row = title_ROW + 3;
char temp[50];
int number;
char insert[512];
Stu_info *stu;
stu = malloc(sizeof(Stu_info));
title();
mvprintw(MESSAGE_ROW title_COL - 20 “the number of student with you want to add(q to exit): “);
wgetstr(stdscr temp);
if (strcmp(temp “q“) == 0)
return;
number = atoi(temp);
title();
for (i = 0; i < number; i++) {
mvprintw(MESSAGE_ROW title_COL - 5 “student %d:“ i + 1);
mvprintw(row++ MESSAGE_COL “ stu_id: “);
wgetstr(stdscr temp);
stu->stu_id = atoi(temp);
Read_stu_info(stu);
sprintf(insert “INSERT INTO stu_information(stu_id stu_name stu_sex stu_age chinese math english)\
VALUES(%d ‘%s‘ ‘%s‘ %d %f %f %f)“ stu->stu_id stu->name stu->sex stu->age stu->chinese stu->math stu->english);
if (mysql_query(connection insert)) {
title();
mvprintw(MESSAGE_ROW MESSAGE_COL “add failure: %s\n“ mysql_error(connection));
refresh();
sleep(1);
return;
}else {
mvprintw(MESSAGE_ROW + 10 MESSAGE_COL “add success“);
refresh();
sleep(1);
}
refresh();
row = title_ROW + 3;
title();
}
}
- 上一篇:Oracle数据库教程赵明渊
- 下一篇:最新京东四级地址库
相关资源
- Microsoft SQL Server 2008技术内幕:T-SQL查
- 餐饮管理系统(源代码+报告)
- 健康体检中心网站源代码
- QT用户登录界面源代码
- SQL Server求生秘籍(SQL Server故障排除圣
- 一套源代码完整的开放式Delphi机房管
- 网上商城源代码自带数据库
- 图书管理系统access数据库源代码
- 《Oracle课程设计案例精编》 源代码
- 固定资产管理系统源代码
- DELPHI人力资源库程序源代码
- 商场管理系统源代码带建表sql
- 中小型酒店管理系统的设计与实现源
- 《SQL Server 2014数据库设计开发及应用
- Visual Basic.NET精彩编程百例 李强 源代
- Qt写的学生公寓管理系统源代码
- 企业人员管理系统.zip
- 基于安卓的旅游系统源代码一套
- web课程设计-网页阅读器源代码+数据库
- 医疗管理系统
- 基于SSM的简单的增删改查源代码+SQL新
- 淘淘商城后台manager源代码含课后作业
- [SQL Server实用教程第4版SQL Server 2012版
- 干洗店管理系统.zip
- MySQL实用教程第2版源代码
- 排队叫号机源代码
- 系统登陆注册源代码
- [程序源代码]SQL Server 2008数据库项目案
- 数据库 药品管理系统+源代码
- 基于SSH的网上招聘求职系统的源代码
评论
共有 条评论