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

📄 invntory.ddl

📁 db.* (pronounced dee-be star) is an advanced, high performance, small footprint embedded database fo
💻 DDL
字号:
/*----------------------------------------------------------------------   db_QUERY inventory example database----------------------------------------------------------------------*/database invntory {   data file "invntory.d00" contains outlet;   data file "invntory.d01" contains product;   data file "invntory.d02" contains on_hand;   key  file "invntory.k03" contains prod_id;   key  file "invntory.k04" contains loc_id;   record product    {      long             price[3];      long             cost;      unique key short prod_id;      char             prod_desc[40];   }   record outlet    {      short             region;      unique key char   loc_id[4];      char              city[18];      char              state[3];   }   record on_hand    {      long quantity;   }   set distribution    {      order    last;      owner    product;      member   on_hand;   }   set inventory    {      order    last;      owner    outlet;      member   on_hand;   }}

⌨️ 快捷键说明

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