📄 fastdb.h
字号:
//-< FASTDB.H >------------------------------------------------------*--------*
// FastDB Version 1.0 (c) 1999 GARRET * ? *
// (Main Memory Database Management System) * /\| *
// * / \ *
// Created: 20-Nov-98 K.A. Knizhnik * / [] \ *
// Last update: 10-Dec-98 K.A. Knizhnik * GARRET *
//-------------------------------------------------------------------*--------*
// Main header file
//-------------------------------------------------------------------*--------*
#ifndef __FASTDB_H__
#define __FASTDB_H__
#define FASTDB_MAJOR_VERSION 2
#define FASTDB_MINOR_VERSION 41
#define FASTDB_VERSION (FASTDB_MAJOR_VERSION*100 + FASTDB_MINOR_VERSION)
#include "database.h"
#include "array.h"
#include "query.h"
#include "cursor.h"
#include "datetime.h"
#ifdef THROW_EXCEPTION_ON_ERROR
#include "exception.h"
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -