tpcdb.mco

来自「extremedb-solaris」· MCO 代码 · 共 61 行

MCO
61
字号
/******************************************************************* *                                                                 * *  tpcdb.mco                                                      * *                                                                 * *  This file is a part of the eXtremeDB source code               * *  Copyright (c) 2001-2006 McObject LLC                           *  *  All Rights Reserved                                            * *                                                                 * *******************************************************************/#define int1      signed<1>#define int2      signed<2>#define int4      signed<4>#define int8      signed<8>#define uint8     unsigned<8>#define uint4     unsigned<4>#define uint2     unsigned<2>#define uint1     unsigned<1>declare database tpcdb;class branches {      int4      Bid;      int4      Bbalance;      char<88>  filler;      list;      hash<Bid> Bpk[1];};class tellers {      int4      Tid;      int4      Bid;      int4      Tbalance;      char<84>  filler;      list;      hash<Tid> Tpk[10];};class accounts {      int4      Aid;      int4      Bid;      int4      Abalance;      char<84>  filler;      list;      hash<Aid> Apk[100000];};class account_history {      int4      Tid;      int4      Bid;      int4      Aid;      int4      delta;      time      htime;      char<22>  filler;      list;};

⌨️ 快捷键说明

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