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

📄 api_module.h

📁 用C++实现的MINI SQL服务器 支持标准的常用SQL查询语句
💻 H
字号:
//////////////////////////////////////////////////////////
///----------------------------------------------------///
///       Module: API_Module                           ///
///       Produced by: XXX                          ///
///       Description: Produced to deal with the       ///
///                    functions between Interpreter,  ///
///                    Record_Manager and Index_Manager///
///       date: 2004/12/29                             ///
///----------------------------------------------------///
//////////////////////////////////////////////////////////

#if !defined(_API_MODULE_H_)
#define _API_MODULE_H_

#include"MiniSQL.h"

void  API_Module(CString SQL);
//显示帮助信息
void Help();
//插入索引节点
void Insert_Index(CString DB_Name,CString Table_Name,index_info & index);
//删除索引节点
void Delete_Index(CString DB_Name,CString Table_Name,index_info & index);
//查找索引节点
void Find_Index(CString DB_Name,CString Table_Name,index_info & index);
//获取条件的索引信息
void Get_Index(CString DB_Name,CString Table_Name,int & start,int & end,int type,index_info & index);

#endif

⌨️ 快捷键说明

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