command.h
来自「fastdb-241源码」· C头文件 代码 · 共 51 行
H
51 行
// -*- Mode: C++ -*- ----------------------------------------
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /usr/local/devel/GiST/libGiST/BTree/command.h,v 1.1.1.1 1996/08/06 23:47:19 jmh Exp $
//
// command.h
// Test Program: Command Parser .h
//
// ----------------------------------------------------------
#ifndef COMMAND_H
#define COMMAND_H
#include "GiSTdb.h"
class Record {
public:
int value;
TYPE_DESCRIPTOR((FIELD(value)));
};
void CommandCreate(const char *method,
const char *table);
void CommandDrop(const char *table);
void CommandOpen(const char *method, const char *table);
void CommandClose(const char *table);
void CommandSelect(const char *table,
const GiSTpredicate& pred);
void CommandDelete(const char *table,
const GiSTpredicate& pred);
void CommandInsert(const char *table,
const BTkey& key,
int ptr);
void CommandDump(const char *table, GiSTpage page);
void CommandQuit();
void CommandDebug();
void CommandHelp();
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?