c实现linux下的数据库备份
Linux下c实现的数据库备份,只要修改数据库列表文件的信息即可。
db_list.txt把后缀去掉即可,一个数据库一行。
1. main.c
#include<sys/types.h> #include<sys/wait.h> #include<ctype.h> #include<unistd.h> #include<string.h> #include<stdlib.h> #include<stdio.h> //待备份的数据表文件(一个数据库一行) #define DB_FILE "./db_list" //最多可以备份的数据库数量 #define NUM 20 //一个数据库名字的最长字符数 #define LEN 128 //保存从DB_FILE中读取到的数据库 char *db_list[NUM]; //从DB_FILE文件中读取到的数据库数量 int read_num; //请求内存函数 void malloc_dblist(); //释放内存函数 void free_dblist(); //读取数据库文件 void readDbFile(); int main(int argc, char *argv[]) { pid_t pid; int i; char buf[LEN]; //从文件读取数据库信息 readDbFile(); pid = fork(); if (pid < 0) { fprintf(stderr, "fork error\n"); exit(1); } switch (pid) { case -1: fprintf(stderr, "fork failed\n"); exit(1); case 0: //子进程进行数据库的备份 for (i = 0; i < read_num; i++) { memset(buf, '\0', LEN); sprintf(buf, "%s%s%s%s%s", "mysqldump -uroot ", db_list[i], " > ", db_list[i], ".sql"); system(buf); printf("%d,%s\n", i, buf); } break; } //等待子进程的结束 if (pid > 0) { int stat_val; pid_t child_pid; child_pid = wait(&stat_val); if (!WIFEXITED(stat_val)) { fprintf(stdout, "Child terminated abnormaly\n"); } exit(1); } free_dblist(); exit(0); } void malloc_dblist() { int i = 0; //malloc for db_list for (i = 0; i < NUM; i++) { db_list[i] = malloc(LEN); memset(db_list[i], '\0', LEN); } } void free_dblist() { int i; //free db_list's memory for (i = 0; i < NUM; i++) { free(db_list[i]); } } void readDbFile() { FILE *fp; fp = fopen(DB_FILE, "r"); if (!fp) { fprintf(stderr, "%s not found\n", DB_FILE); } else { malloc_dblist(); read_num = 0; while (fscanf(fp, "%127[^\r\n]\n", db_list[read_num]) == 1) { puts(db_list[read_num]); read_num++; } fclose(fp); } }
2. db_list.txt
admin book
3.
#include<sys/types.h> #include<sys/wait.h> #include<ctype.h> #include<unistd.h> #include<string.h> #include<stdlib.h> #include<stdio.h> //待备份的数据表文件(一个数据库一行) #define DB_FILE "./db_list" //最多可以备份的数据库数量 #define NUM 20 //一个数据库名字的最长字符数 #define LEN 128 //保存从DB_FILE中读取到的数据库 char *db_list[NUM]; //从DB_FILE文件中读取到的数据库数量 int read_num; //请求内存函数 void malloc_dblist(); //释放内存函数 void free_dblist(); //读取数据库文件 void readDbFile(); int main(int argc, char *argv[]) { pid_t pid; int i; char buf[LEN]; //从文件读取数据库信息 readDbFile(); pid = fork(); if (pid < 0) { fprintf(stderr, "fork error\n"); exit(1); } switch (pid) { case -1: fprintf(stderr, "fork failed\n"); exit(1); case 0: //子进程进行数据库的备份 for (i = 0; i < read_num; i++) { memset(buf, '\0', LEN); sprintf(buf, "%s%s%s%s%s", "mysqldump -uroot ", db_list[i], " > ", db_list[i], ".sql"); system(buf); printf("%d,%s\n", i, buf); } break; } //等待子进程的结束 if (pid > 0) { int stat_val; pid_t child_pid; child_pid = wait(&stat_val); if (!WIFEXITED(stat_val)) { fprintf(stdout, "Child terminated abnormaly\n"); } exit(1); } free_dblist(); exit(0); } void malloc_dblist() { int i = 0; //malloc for db_list for (i = 0; i < NUM; i++) { db_list[i] = malloc(LEN); memset(db_list[i], '\0', LEN); } } void free_dblist() { int i; //free db_list's memory for (i = 0; i < NUM; i++) { free(db_list[i]); } } void readDbFile() { FILE *fp; fp = fopen(DB_FILE, "r"); if (!fp) { fprintf(stderr, "%s not found\n", DB_FILE); } else { malloc_dblist(); read_num = 0; while (fscanf(fp, "%127[^\r\n]\n", db_list[read_num]) == 1) { puts(db_list[read_num]); read_num++; } fclose(fp); } }
以上所述就是本文的全部内容了,希望大家能够喜欢。
上一篇:在Visual Studio使用C++开发Metro应用
栏 目:C语言
下一篇:C++实现当前时间动态显示的方法
本文标题:c实现linux下的数据库备份
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/2968.html
您可能感兴趣的文章
- 01-10数据结构课程设计-用栈实现表达式求值的方法详解
- 01-10使用OpenGL实现3D立体显示的程序代码
- 01-10求斐波那契(Fibonacci)数列通项的七种实现方法
- 01-10C语言 解决不用+、-、&#215;、&#247;数字运算符做加法
- 01-10使用C++实现全排列算法的方法详解
- 01-10用C++实现DBSCAN聚类算法
- 01-10深入全排列算法及其实现方法
- 01-10大数(高精度数)模板(分享)
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10用C语言实现单链表的各种操作(一)
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 04-02jquery与jsp,用jquery
- 01-10delphi制作wav文件的方法
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11ajax实现页面的局部加载
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10C#中split用法实例总结
- 01-10SublimeText编译C开发环境设置
- 08-05dedecms(织梦)副栏目数量限制代码修改