fastdb.h

来自「一个不错的fastdb使用例子」· C头文件 代码 · 共 30 行

H
30
字号
//-< 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 87
#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"
#include "container.h"

#ifdef THROW_EXCEPTION_ON_ERROR
#include "exception.h"
#endif

#endif

⌨️ 快捷键说明

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