⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 quit.c

📁 linux 下用c++ 开发的一个小型数据库系统
💻 C
字号:
#include <memory.h>#include <unistd.h>#include <errno.h>#include <stdlib.h>#include <fcntl.h>#include <iostream>#include <stdio.h>#include "page.h"#include "buf.h"#include "catalog.h"#include "utility.h"extern BufMgr *bufMgr;extern RelCatalog *relCat;extern AttrCatalog *attrCat;//// Closes the catalog files in preparation for shutdown.//// No return value.//void UT_Quit(void){  // close relcat and attrcat//  delete relCat;  delete attrCat;  delete relCat ;  // delete bufMgr to flush out all dirty pages  delete bufMgr;  exit(1);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -